共用方式為


ManagedServiceIdentity 建構函式

定義

多載

ManagedServiceIdentity()

初始化 ManagedServiceIdentity 類別的新實例。

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

初始化 ManagedServiceIdentity 類別的新實例。

ManagedServiceIdentity()

初始化 ManagedServiceIdentity 類別的新實例。

public ManagedServiceIdentity ();
Public Sub New ()

適用於

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

初始化 ManagedServiceIdentity 類別的新實例。

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)

參數

type
Nullable<ManagedServiceIdentityType>

受控服務識別的類型。 可能的值包括:'None'、'SystemAssigned'、'UserAssigned'

tenantId
String

受控服務識別的租使用者。

principalId
String

受控服務識別的主體識別碼。

userAssignedIdentities
IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>

與資源相關聯的使用者指派身分識別清單。 使用者識別字典索引鍵參考的格式為 ARM 資源識別碼:'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

適用於