Show / Hide Table of Contents

    Class VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue

    Inheritance
    Object
    VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue

    Constructors

    VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue()

    Initializes a new instance of the VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue class.

    Declaration
    public VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue ();

    VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue(String, String)

    Initializes a new instance of the VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue class.

    Declaration
    public VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue (string principalId = null, string clientId = null);
    Parameters
    String principalId

    The principal id of user assigned identity.

    String clientId

    The client id of user assigned identity.

    Properties

    ClientId

    Gets the client id of user assigned identity.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="clientId")]
    public string ClientId { get; }
    Property Value
    String

    PrincipalId

    Gets the principal id of user assigned identity.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="principalId")]
    public string PrincipalId { get; }
    Property Value
    String

    Back to top Azure SDK for Net