Share via


DigitalTwinsIdentity Constructors

Definition

Overloads

DigitalTwinsIdentity()

Initializes a new instance of the DigitalTwinsIdentity class.

DigitalTwinsIdentity(String, String, String)

Initializes a new instance of the DigitalTwinsIdentity class.

DigitalTwinsIdentity()

Initializes a new instance of the DigitalTwinsIdentity class.

public DigitalTwinsIdentity ();
Public Sub New ()

Applies to

DigitalTwinsIdentity(String, String, String)

Initializes a new instance of the DigitalTwinsIdentity class.

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

Parameters

type
String

The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported. Possible values include: 'None', '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