Show / Hide Table of Contents

    Class VirtualMachineScaleSetManagedDiskParameters

    Describes the parameters of a ScaleSet managed disk.

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

    Constructors

    VirtualMachineScaleSetManagedDiskParameters()

    Initializes a new instance of the VirtualMachineScaleSetManagedDiskParameters class.

    Declaration
    public VirtualMachineScaleSetManagedDiskParameters ();

    VirtualMachineScaleSetManagedDiskParameters(String)

    Initializes a new instance of the VirtualMachineScaleSetManagedDiskParameters class.

    Declaration
    public VirtualMachineScaleSetManagedDiskParameters (string storageAccountType = null);
    Parameters
    String storageAccountType

    Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk. Possible values include: 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS'

    Properties

    StorageAccountType

    Gets or sets specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk. Possible values include: 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS'

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

    Back to top Azure SDK for Net