Condividi tramite


ResourceIdentityType Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.resourcemanager.containerservice.models.ResourceIdentityType

public enum ResourceIdentityType
extends Enum<ResourceIdentityType>

The type of identity used for the managed cluster. For more information see [use managed identities in AKS](https://docs.microsoft.com/azure/aks/use-managed-identity).

Fields

NONE

Do not use a managed identity for the Managed Cluster, service principal will be used instead.

SYSTEM_ASSIGNED

Use an implicitly created system assigned managed identity to manage cluster resources.

USER_ASSIGNED

Use a user-specified identity to manage cluster resources.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static ResourceIdentityType fromString(String value)

Parses a serialized value to a ResourceIdentityType instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed ResourceIdentityType object, or null if unable to parse.

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static ResourceIdentityType valueOf(String name)

Parameters

name
String

Returns

values()

public static ResourceIdentityType[] values()

Returns

Applies to