Show / Hide Table of Contents

    Class ImagePurchasePlan

    Describes the gallery Image Definition purchase plan. This is used by marketplace images.

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

    Constructors

    ImagePurchasePlan()

    Initializes a new instance of the ImagePurchasePlan class.

    Declaration
    public ImagePurchasePlan ();

    ImagePurchasePlan(String, String, String)

    Initializes a new instance of the ImagePurchasePlan class.

    Declaration
    public ImagePurchasePlan (string name = null, string publisher = null, string product = null);
    Parameters
    String name

    The plan ID.

    String publisher

    The publisher ID.

    String product

    The product ID.

    Properties

    Name

    Gets or sets the plan ID.

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

    Product

    Gets or sets the product ID.

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

    Publisher

    Gets or sets the publisher ID.

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

    Back to top Azure SDK for Net