EncryptionSetIdentity Constructors

Definition

Overloads

EncryptionSetIdentity()

Initializes a new instance of the EncryptionSetIdentity class.

EncryptionSetIdentity(DiskEncryptionSetIdentityType, String, String)

Initializes a new instance of the EncryptionSetIdentity class.

EncryptionSetIdentity()

Initializes a new instance of the EncryptionSetIdentity class.

public EncryptionSetIdentity ();
Public Sub New ()

Applies to

EncryptionSetIdentity(DiskEncryptionSetIdentityType, String, String)

Initializes a new instance of the EncryptionSetIdentity class.

public EncryptionSetIdentity (Microsoft.Azure.Management.Compute.Fluent.Models.DiskEncryptionSetIdentityType type = default, string principalId = default, string tenantId = default);
new Microsoft.Azure.Management.Compute.Fluent.Models.EncryptionSetIdentity : Microsoft.Azure.Management.Compute.Fluent.Models.DiskEncryptionSetIdentityType * string * string -> Microsoft.Azure.Management.Compute.Fluent.Models.EncryptionSetIdentity
Public Sub New (Optional type As DiskEncryptionSetIdentityType = Nothing, Optional principalId As String = Nothing, Optional tenantId As String = Nothing)

Parameters

type
DiskEncryptionSetIdentityType

The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported. Possible values include: 'SystemAssigned'

principalId
String

The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity

tenantId
String

The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity

Applies to