ResourceIdentity Constructors

Definition

Overloads

ResourceIdentity()

Initializes a new instance of the ResourceIdentity class.

ResourceIdentity(Nullable<Guid>, IdentityType, Nullable<Guid>)

Initializes a new instance of the ResourceIdentity class.

ResourceIdentity()

Initializes a new instance of the ResourceIdentity class.

public ResourceIdentity ();
Public Sub New ()

Applies to

ResourceIdentity(Nullable<Guid>, IdentityType, Nullable<Guid>)

Initializes a new instance of the ResourceIdentity class.

public ResourceIdentity (Guid? principalId = default, Microsoft.Azure.Management.Sql.Fluent.Models.IdentityType type = default, Guid? tenantId = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.ResourceIdentity : Nullable<Guid> * Microsoft.Azure.Management.Sql.Fluent.Models.IdentityType * Nullable<Guid> -> Microsoft.Azure.Management.Sql.Fluent.Models.ResourceIdentity
Public Sub New (Optional principalId As Nullable(Of Guid) = Nothing, Optional type As IdentityType = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing)

Parameters

principalId
Nullable<Guid>

The Azure Active Directory principal id.

type
IdentityType

The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. Possible values include: 'SystemAssigned'

tenantId
Nullable<Guid>

The Azure Active Directory tenant id.

Applies to