你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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

托管服务标识的主体 ID。

userAssignedIdentities
IDictionary<String,ManagedServiceIdentityUserAssignedIdentitiesValue>

与资源关联的用户分配标识的列表。 用户标识字典密钥引用的格式为 ARM 资源 ID:'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

适用于