FactoryIdentity Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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'
- userAssignedIdentities
- IDictionary<String,Object>
List of user assigned identities for the factory.
Applies to
Azure SDK for .NET