Share via


IdentityUpdate Constructors

Definition

Overloads

IdentityUpdate()

Initializes a new instance of the IdentityUpdate class.

IdentityUpdate(String, String, String, String, IDictionary<String,String>, Nullable<Guid>, Nullable<Guid>, Nullable<Guid>)

Initializes a new instance of the IdentityUpdate class.

IdentityUpdate()

Initializes a new instance of the IdentityUpdate class.

public IdentityUpdate ();
Public Sub New ()

Applies to

IdentityUpdate(String, String, String, String, IDictionary<String,String>, Nullable<Guid>, Nullable<Guid>, Nullable<Guid>)

Initializes a new instance of the IdentityUpdate class.

public IdentityUpdate (string id = default, string name = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, Guid? tenantId = default, Guid? principalId = default, Guid? clientId = default);
new Microsoft.Azure.Management.ManagedServiceIdentity.Models.IdentityUpdate : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<Guid> * Nullable<Guid> * Nullable<Guid> -> Microsoft.Azure.Management.ManagedServiceIdentity.Models.IdentityUpdate
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing, Optional principalId As Nullable(Of Guid) = Nothing, Optional clientId As Nullable(Of Guid) = Nothing)

Parameters

id
String

Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.

location
String

The geo-location where the resource lives

tags
IDictionary<String,String>

Resource tags

tenantId
Nullable<Guid>

The id of the tenant which the identity belongs to.

principalId
Nullable<Guid>

The id of the service principal object associated with the created identity.

clientId
Nullable<Guid>

The id of the app associated with the identity. This is a random generated UUID by MSI.

Applies to