PrivateCloudIdentity Constructors

Definition

Overloads

PrivateCloudIdentity()

Initializes a new instance of the PrivateCloudIdentity class.

PrivateCloudIdentity(String, String, String)

Initializes a new instance of the PrivateCloudIdentity class.

PrivateCloudIdentity()

Initializes a new instance of the PrivateCloudIdentity class.

public PrivateCloudIdentity ();
Public Sub New ()

Applies to

PrivateCloudIdentity(String, String, String)

Initializes a new instance of the PrivateCloudIdentity class.

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

Parameters

principalId
String

The principal ID of private cloud identity. This property will only be provided for a system assigned identity.

tenantId
String

The tenant ID associated with the private cloud. This property will only be provided for a system assigned identity.

type
String

The type of identity used for the private cloud. The type 'SystemAssigned' refers to an implicitly created identity. The type 'None' will remove any identities from the Private Cloud. Possible values include: 'SystemAssigned', 'None'

Applies to