ManagedServiceIdentity Constructors

Definition

Overloads

ManagedServiceIdentity()

Initializes a new instance of the ManagedServiceIdentity class.

ManagedServiceIdentity(Nullable<ManagedServiceIdentityType>, String, String, IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>)

Initializes a new instance of the ManagedServiceIdentity class.

ManagedServiceIdentity()

Initializes a new instance of the ManagedServiceIdentity class.

public ManagedServiceIdentity ();
Public Sub New ()

Applies to

ManagedServiceIdentity(Nullable<ManagedServiceIdentityType>, String, String, IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>)

Initializes a new instance of the ManagedServiceIdentity class.

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

Parameters

type
Nullable<ManagedServiceIdentityType>

Type of managed service identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'

tenantId
String

Tenant of managed service identity.

principalId
String

Principal Id of managed service identity.

userAssignedIdentities
IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>

The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

Applies to