Megosztás a következőn keresztül:


ManagedClusterIdentity Constructors

Definition

Overloads

ManagedClusterIdentity()

Initializes a new instance of the ManagedClusterIdentity class.

ManagedClusterIdentity(String, String, Nullable<ResourceIdentityType>, IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>)

Initializes a new instance of the ManagedClusterIdentity class.

ManagedClusterIdentity()

Initializes a new instance of the ManagedClusterIdentity class.

public ManagedClusterIdentity ();
Public Sub New ()

Applies to

ManagedClusterIdentity(String, String, Nullable<ResourceIdentityType>, IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>)

Initializes a new instance of the ManagedClusterIdentity class.

public ManagedClusterIdentity (string principalId = default, string tenantId = default, Microsoft.Azure.Management.ContainerService.Models.ResourceIdentityType? type = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.ContainerService.Models.ManagedServiceIdentityUserAssignedIdentitiesValue> userAssignedIdentities = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterIdentity : string * string * Nullable<Microsoft.Azure.Management.ContainerService.Models.ResourceIdentityType> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.ContainerService.Models.ManagedServiceIdentityUserAssignedIdentitiesValue> -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterIdentity
Public Sub New (Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional type As Nullable(Of ResourceIdentityType) = Nothing, Optional userAssignedIdentities As IDictionary(Of String, ManagedServiceIdentityUserAssignedIdentitiesValue) = Nothing)

Parameters

principalId
String

The principal id of the system assigned identity which is used by master components.

tenantId
String

The tenant id of the system assigned identity which is used by master components.

type
Nullable<ResourceIdentityType>

For more information see use managed identities in AKS. Possible values include: 'SystemAssigned', 'UserAssigned', 'None'

userAssignedIdentities
IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>

The keys must be ARM resource IDs in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

Applies to