Show / Hide Table of Contents

    Class GalleryImageIdentifier

    This is the gallery Image Definition identifier.

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

    Constructors

    GalleryImageIdentifier()

    Initializes a new instance of the GalleryImageIdentifier class.

    Declaration
    public GalleryImageIdentifier ();

    GalleryImageIdentifier(String, String, String)

    Initializes a new instance of the GalleryImageIdentifier class.

    Declaration
    public GalleryImageIdentifier (string publisher, string offer, string sku);
    Parameters
    String publisher

    The name of the gallery Image Definition publisher.

    String offer

    The name of the gallery Image Definition offer.

    String sku

    The name of the gallery Image Definition SKU.

    Properties

    Offer

    Gets or sets the name of the gallery Image Definition offer.

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

    Publisher

    Gets or sets the name of the gallery Image Definition publisher.

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

    Sku

    Gets or sets the name of the gallery Image Definition SKU.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="sku")]
    public string Sku { 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