共用方式為


SystemAssignedServiceIdentity Constructors

Definition

Overloads

SystemAssignedServiceIdentity()

Initializes a new instance of the SystemAssignedServiceIdentity class.

SystemAssignedServiceIdentity(String, Nullable<Guid>, Nullable<Guid>)

Initializes a new instance of the SystemAssignedServiceIdentity class.

SystemAssignedServiceIdentity()

Initializes a new instance of the SystemAssignedServiceIdentity class.

public SystemAssignedServiceIdentity ();
Public Sub New ()

Applies to

SystemAssignedServiceIdentity(String, Nullable<Guid>, Nullable<Guid>)

Initializes a new instance of the SystemAssignedServiceIdentity class.

public SystemAssignedServiceIdentity (string type, Guid? principalId = default, Guid? tenantId = default);
new Microsoft.Azure.Management.IotCentral.Models.SystemAssignedServiceIdentity : string * Nullable<Guid> * Nullable<Guid> -> Microsoft.Azure.Management.IotCentral.Models.SystemAssignedServiceIdentity
Public Sub New (type As String, Optional principalId As Nullable(Of Guid) = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing)

Parameters

type
String

Possible values include: 'None', 'SystemAssigned'

principalId
Nullable<Guid>

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

tenantId
Nullable<Guid>

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

Applies to