Class SnapshotSku
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class SnapshotSku
Constructors
SnapshotSku()
Initializes a new instance of the SnapshotSku class.
Declaration
public SnapshotSku ();
SnapshotSku(String, String)
Initializes a new instance of the SnapshotSku class.
Declaration
public SnapshotSku (string name = null, string tier = null);
Parameters
|
String
name
The sku name. Possible values include: 'Standard_LRS', 'Premium_LRS', 'Standard_ZRS' |
|
String
tier
The sku tier. |
Properties
Name
Gets or sets the sku name. Possible values include: 'Standard_LRS', 'Premium_LRS', 'Standard_ZRS'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; }
Property Value
|
String
|
Tier
Gets the sku tier.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tier")]
public string Tier { get; }
Property Value
|
String
|