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

FactoryIdentity 构造函数

定义

重载

FactoryIdentity()

初始化 FactoryIdentity 类的新实例。

FactoryIdentity(Nullable<Guid>, Nullable<Guid>, IDictionary<String,Object>)

初始化 FactoryIdentity 类的新实例。

FactoryIdentity(String, Nullable<Guid>, Nullable<Guid>, IDictionary<String,Object>)

初始化 FactoryIdentity 类的新实例。

FactoryIdentity()

初始化 FactoryIdentity 类的新实例。

public FactoryIdentity ();
Public Sub New ()

适用于

FactoryIdentity(Nullable<Guid>, Nullable<Guid>, IDictionary<String,Object>)

初始化 FactoryIdentity 类的新实例。

public FactoryIdentity (Guid? principalId = default, Guid? tenantId = default, System.Collections.Generic.IDictionary<string,object> userAssignedIdentities = default);
new Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity : Nullable<Guid> * Nullable<Guid> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity
Public Sub New (Optional principalId As Nullable(Of Guid) = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing, Optional userAssignedIdentities As IDictionary(Of String, Object) = Nothing)

参数

principalId
Nullable<Guid>

标识的主体 ID。

tenantId
Nullable<Guid>

标识的客户端租户 ID。

userAssignedIdentities
IDictionary<String,Object>

工厂的用户分配标识列表。

适用于

FactoryIdentity(String, Nullable<Guid>, Nullable<Guid>, IDictionary<String,Object>)

初始化 FactoryIdentity 类的新实例。

public FactoryIdentity (string type, Guid? principalId = default, Guid? tenantId = default, System.Collections.Generic.IDictionary<string,object> userAssignedIdentities = default);
new Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity : string * Nullable<Guid> * Nullable<Guid> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity
Public Sub New (type As String, Optional principalId As Nullable(Of Guid) = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing, Optional userAssignedIdentities As IDictionary(Of String, Object) = Nothing)

参数

type
String

标识类型。 可能的值包括:“SystemAssigned”、“UserAssigned”、“SystemAssigned、UserAssigned”

principalId
Nullable<Guid>

标识的主体 ID。

tenantId
Nullable<Guid>

标识的客户端租户 ID。

userAssignedIdentities
IDictionary<String,Object>

工厂的用户分配标识列表。

适用于