Package com.azure.core.management
Enum AzureEnvironment.Endpoint
- java.lang.Object
-
- java.lang.Enum<AzureEnvironment.Endpoint>
-
- com.azure.core.management.AzureEnvironment.Endpoint
-
- All Implemented Interfaces:
Serializable,Comparable<AzureEnvironment.Endpoint>
- Enclosing class:
- AzureEnvironment
public static enum AzureEnvironment.Endpoint extends Enum<AzureEnvironment.Endpoint>
The enum representing available endpoints in an environment.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_DIRECTORYActive Directory authentication endpoint.APPLICATION_INSIGHTSAzure Application Insights.DATA_LAKE_ANALYTICSAzure Data Lake Analytics DNS suffix.DATA_LAKE_STOREAzure Data Lake Store DNS suffix.GALLERYAzure Gallery endpoint.GRAPHAzure Active Directory Graph APIs endpoint.KEYVAULTKey Vault DNS suffix.LOG_ANALYTICSAzure Log Analytics endpoint.MANAGEMENTAzure management endpoint.MICROSOFT_GRAPHMicrosoft Graph APIs endpoint.RESOURCE_MANAGERAzure Resource Manager endpoint.SQLAzure SQL endpoint.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringidentifier()StringtoString()static AzureEnvironment.EndpointvalueOf(String name)Returns the enum constant of this type with the specified name.static AzureEnvironment.Endpoint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MANAGEMENT
public static final AzureEnvironment.Endpoint MANAGEMENT
Azure management endpoint.
-
RESOURCE_MANAGER
public static final AzureEnvironment.Endpoint RESOURCE_MANAGER
Azure Resource Manager endpoint.
-
SQL
public static final AzureEnvironment.Endpoint SQL
Azure SQL endpoint.
-
GALLERY
public static final AzureEnvironment.Endpoint GALLERY
Azure Gallery endpoint.
-
ACTIVE_DIRECTORY
public static final AzureEnvironment.Endpoint ACTIVE_DIRECTORY
Active Directory authentication endpoint.
-
GRAPH
public static final AzureEnvironment.Endpoint GRAPH
Azure Active Directory Graph APIs endpoint.
-
KEYVAULT
public static final AzureEnvironment.Endpoint KEYVAULT
Key Vault DNS suffix.
-
DATA_LAKE_STORE
public static final AzureEnvironment.Endpoint DATA_LAKE_STORE
Azure Data Lake Store DNS suffix.
-
DATA_LAKE_ANALYTICS
public static final AzureEnvironment.Endpoint DATA_LAKE_ANALYTICS
Azure Data Lake Analytics DNS suffix.
-
LOG_ANALYTICS
public static final AzureEnvironment.Endpoint LOG_ANALYTICS
Azure Log Analytics endpoint.
-
APPLICATION_INSIGHTS
public static final AzureEnvironment.Endpoint APPLICATION_INSIGHTS
Azure Application Insights.
-
MICROSOFT_GRAPH
public static final AzureEnvironment.Endpoint MICROSOFT_GRAPH
Microsoft Graph APIs endpoint.
-
-
Method Detail
-
values
public static AzureEnvironment.Endpoint[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AzureEnvironment.Endpoint c : AzureEnvironment.Endpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AzureEnvironment.Endpoint valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
identifier
public String identifier()
- Returns:
- a unique identifier for the endpoint in the environment
-
toString
public String toString()
- Overrides:
toStringin classEnum<AzureEnvironment.Endpoint>
-
-