Package com.azure.core.management
Class ResourceAuthorIdentityType
- java.lang.Object
-
- com.azure.core.util.ExpandableStringEnum<ResourceAuthorIdentityType>
-
- com.azure.core.management.ResourceAuthorIdentityType
-
public final class ResourceAuthorIdentityType extends ExpandableStringEnum<ResourceAuthorIdentityType>
Defines values for identity type of resource author.
-
-
Field Summary
Fields Modifier and Type Field Description static ResourceAuthorIdentityTypeAPPLICATIONStatic value Application for ResourceAuthorIdentityType, represents an AAD application.static ResourceAuthorIdentityTypeKEYStatic value Key for ResourceAuthorIdentityType.static ResourceAuthorIdentityTypeMANAGED_IDENTITYStatic value ManagedIdentity for ResourceAuthorIdentityType, represents a Managed Identity.static ResourceAuthorIdentityTypeUSERStatic value User for ResourceAuthorIdentityType, represents an AAD user.
-
Constructor Summary
Constructors Constructor Description ResourceAuthorIdentityType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceAuthorIdentityTypefromString(String name)Creates or finds a ResourceAuthorIdentityType from its string representation.static Collection<ResourceAuthorIdentityType>values()-
Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, hashCode, toString, values
-
-
-
-
Field Detail
-
USER
public static final ResourceAuthorIdentityType USER
Static value User for ResourceAuthorIdentityType, represents an AAD user.
-
APPLICATION
public static final ResourceAuthorIdentityType APPLICATION
Static value Application for ResourceAuthorIdentityType, represents an AAD application.
-
MANAGED_IDENTITY
public static final ResourceAuthorIdentityType MANAGED_IDENTITY
Static value ManagedIdentity for ResourceAuthorIdentityType, represents a Managed Identity.
-
KEY
public static final ResourceAuthorIdentityType KEY
Static value Key for ResourceAuthorIdentityType.
-
-
Method Detail
-
fromString
public static ResourceAuthorIdentityType fromString(String name)
Creates or finds a ResourceAuthorIdentityType from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding ResourceAuthorIdentityType.
-
values
public static Collection<ResourceAuthorIdentityType> values()
- Returns:
- known ResourceAuthorIdentityType values.
-
-