Show / Hide Table of Contents

    Class Identity

    Identity for the resource.

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

    Constructors

    Identity()

    Initializes a new instance of the Identity class.

    Declaration
    public Identity ();

    Identity(String, IList<String>)

    Initializes a new instance of the Identity class.

    Declaration
    public Identity (string type, System.Collections.Generic.IList<string> identityIds);
    Parameters
    String type

    The identity type.

    IList<String> identityIds

    The list of identities.

    Properties

    IdentityIds

    Gets or sets the list of identities.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="identityIds")]
    public System.Collections.Generic.IList<string> IdentityIds { get; set; }
    Property Value
    IList<String>

    Type

    Gets or sets the identity type.

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

    Methods

    Validate()

    Validate the object.

    Declaration
    public virtual void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net