Bagikan melalui


FactoryIdentity Constructors

Definition

Overloads

FactoryIdentity()

Initializes a new instance of the FactoryIdentity class.

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

Initializes a new instance of the FactoryIdentity class.

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

Initializes a new instance of the FactoryIdentity class.

FactoryIdentity()

Initializes a new instance of the FactoryIdentity class.

public FactoryIdentity ();
Public Sub New ()

Applies to

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

Initializes a new instance of the FactoryIdentity class.

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)

Parameters

principalId
Nullable<Guid>

The principal id of the identity.

tenantId
Nullable<Guid>

The client tenant id of the identity.

userAssignedIdentities
IDictionary<String,Object>

List of user assigned identities for the factory.

Applies to

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

Initializes a new instance of the FactoryIdentity class.

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)

Parameters

type
String

The identity type. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned,UserAssigned'

principalId
Nullable<Guid>

The principal id of the identity.

tenantId
Nullable<Guid>

The client tenant id of the identity.

userAssignedIdentities
IDictionary<String,Object>

List of user assigned identities for the factory.

Applies to