Package com.azure.common
Enum AzureEnvironment.Endpoint
- java.lang.Object
-
- java.lang.Enum<AzureEnvironment.Endpoint>
-
- com.azure.common.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_DIRECTORY
Active Directory authentication endpoint.APPLICATION_INSIGHTS
Azure Application Insights.DATA_LAKE_ANALYTICS
Azure Data Lake Analytics DNS suffix.DATA_LAKE_STORE
Azure Data Lake Store DNS suffix.GALLERY
Azure Gallery endpoint.GRAPH
Azure Active Directory Graph APIs endpoint.KEYVAULT
Key Vault DNS suffix.LOG_ANALYTICS
Azure Log Analytics endpoint.MANAGEMENT
Azure management endpoint.RESOURCE_MANAGER
Azure Resource Manager endpoint.SQL
Azure SQL endpoint.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
identifier()
String
toString()
static AzureEnvironment.Endpoint
valueOf(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.
-
-
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:
toString
in classEnum<AzureEnvironment.Endpoint>
-
-