Class ApplicationAccountType
- java.lang.Object
-
- com.azure.core.util.ExpandableStringEnum<ApplicationAccountType>
-
- com.azure.resourcemanager.authorization.models.ApplicationAccountType
-
public final class ApplicationAccountType extends com.azure.core.util.ExpandableStringEnum<ApplicationAccountType>
Defines values for Application Account Type
-
-
Field Summary
Fields Modifier and Type Field Description static ApplicationAccountTypeAZURE_AD_AND_PERSONAL_MICROSOFT_ACCOUNTUsers with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.static ApplicationAccountTypeAZURE_AD_MULTIPLE_ORGSUsers with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).static ApplicationAccountTypeAZURE_AD_MY_ORGUsers with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)static ApplicationAccountTypePERSONAL_MICROSOFT_ACCOUNTUsers with a personal Microsoft account only.
-
Constructor Summary
Constructors Constructor Description ApplicationAccountType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApplicationAccountTypefromString(String name)Creates or finds a ApplicationAccountType from its string representation.static Collection<ApplicationAccountType>values()
-
-
-
Field Detail
-
AZURE_AD_MY_ORG
public static final ApplicationAccountType AZURE_AD_MY_ORG
Users with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)
-
AZURE_AD_MULTIPLE_ORGS
public static final ApplicationAccountType AZURE_AD_MULTIPLE_ORGS
Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).
-
AZURE_AD_AND_PERSONAL_MICROSOFT_ACCOUNT
public static final ApplicationAccountType AZURE_AD_AND_PERSONAL_MICROSOFT_ACCOUNT
Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.
-
PERSONAL_MICROSOFT_ACCOUNT
public static final ApplicationAccountType PERSONAL_MICROSOFT_ACCOUNT
Users with a personal Microsoft account only.
-
-
Method Detail
-
fromString
public static ApplicationAccountType fromString(String name)
Creates or finds a ApplicationAccountType from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding ApplicationAccountType.
-
values
public static Collection<ApplicationAccountType> values()
- Returns:
- known ApplicationAccountType values.
-
-