public enum ManagedIdentitySourceType extends Enum<ManagedIdentitySourceType>
| Enum Constant and Description |
|---|
APP_SERVICE |
AZURE_ARC |
CLOUD_SHELL |
DEFAULT_TO_IMDS |
IMDS |
NONE |
SERVICE_FABRIC |
| Modifier and Type | Method and Description |
|---|---|
static ManagedIdentitySourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedIdentitySourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedIdentitySourceType NONE
public static final ManagedIdentitySourceType IMDS
public static final ManagedIdentitySourceType APP_SERVICE
public static final ManagedIdentitySourceType AZURE_ARC
public static final ManagedIdentitySourceType CLOUD_SHELL
public static final ManagedIdentitySourceType SERVICE_FABRIC
public static final ManagedIdentitySourceType DEFAULT_TO_IMDS
public static ManagedIdentitySourceType[] values()
for (ManagedIdentitySourceType c : ManagedIdentitySourceType.values()) System.out.println(c);
public static ManagedIdentitySourceType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2013–2024. All rights reserved.