Class GalleryImageReferenceFragment
The reference information for an Azure Marketplace image.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.DevTestLabs.dll
Syntax
public class GalleryImageReferenceFragment
Constructors
GalleryImageReferenceFragment()
Initializes a new instance of the GalleryImageReferenceFragment class.
Declaration
public GalleryImageReferenceFragment ();
GalleryImageReferenceFragment(String, String, String, String, String)
Initializes a new instance of the GalleryImageReferenceFragment class.
Declaration
public GalleryImageReferenceFragment (string offer = null, string publisher = null, string sku = null, string osType = null, string version = null);
Parameters
|
String
offer
The offer of the gallery image. |
|
String
publisher
The publisher of the gallery image. |
|
String
sku
The SKU of the gallery image. |
|
String
osType
The OS type of the gallery image. |
|
String
version
The version of the gallery image. |
Properties
Offer
Gets or sets the offer of the gallery image.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="offer")]
public string Offer { get; set; }
Property Value
|
String
|
OsType
Gets or sets the OS type of the gallery image.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="osType")]
public string OsType { get; set; }
Property Value
|
String
|
Publisher
Gets or sets the publisher of the gallery image.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="publisher")]
public string Publisher { get; set; }
Property Value
|
String
|
Sku
Gets or sets the SKU of the gallery image.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="sku")]
public string Sku { get; set; }
Property Value
|
String
|
Version
Gets or sets the version of the gallery image.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="version")]
public string Version { get; set; }
Property Value
|
String
|