次の方法で共有


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 のプリンシパル ID。

tenantId
Nullable<Guid>

ID のクライアント テナント ID。

userAssignedIdentities
IDictionary<String,Object>

ファクトリのユーザー割り当て ID の一覧。

適用対象

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

ID の種類。 使用できる値は、'SystemAssigned'、'UserAssigned'、'SystemAssigned、UserAssigned' です。

principalId
Nullable<Guid>

ID のプリンシパル ID。

tenantId
Nullable<Guid>

ID のクライアント テナント ID。

userAssignedIdentities
IDictionary<String,Object>

ファクトリのユーザー割り当て ID の一覧。

適用対象