Show / Hide Table of Contents

    Class DiskSku

    The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, or UltraSSD_LRS.

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

    Constructors

    DiskSku()

    Initializes a new instance of the DiskSku class.

    Declaration
    public DiskSku ();

    DiskSku(String, String)

    Initializes a new instance of the DiskSku class.

    Declaration
    public DiskSku (string name = null, string tier = null);
    Parameters
    String name

    The sku name. Possible values include: 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS'

    String tier

    The sku tier.

    Properties

    Name

    Gets or sets the sku name. Possible values include: 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS'

    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

    Back to top Azure SDK for Net