Class CustomImagePropertiesFromPlan
Properties for plan on a custom image.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.DevTestLabs.dll
Syntax
public class CustomImagePropertiesFromPlan
Constructors
CustomImagePropertiesFromPlan()
Initializes a new instance of the CustomImagePropertiesFromPlan class.
Declaration
public CustomImagePropertiesFromPlan ();
CustomImagePropertiesFromPlan(String, String, String)
Initializes a new instance of the CustomImagePropertiesFromPlan class.
Declaration
public CustomImagePropertiesFromPlan (string id = null, string publisher = null, string offer = null);
Parameters
|
String
id
The id of the plan, equivalent to name of the plan |
|
String
publisher
The publisher for the plan from the marketplace image the custom image is derived from |
|
String
offer
The offer for the plan from the marketplace image the custom image is derived from |
Properties
Id
Gets or sets the id of the plan, equivalent to name of the plan
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="id")]
public string Id { get; set; }
Property Value
|
String
|
Offer
Gets or sets the offer for the plan from the marketplace image the custom image is derived from
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="offer")]
public string Offer { get; set; }
Property Value
|
String
|
Publisher
Gets or sets the publisher for the plan from the marketplace image the custom image is derived from
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="publisher")]
public string Publisher { get; set; }
Property Value
|
String
|