class Azure::Compute::Mgmt::V2018_06_01::Models::VirtualMachineScaleSetManagedDiskParameters

Describes the parameters of a ScaleSet managed disk.

Attributes

storage_account_type[RW]

@return [StorageAccountTypes] 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'

Public Class Methods

mapper() click to toggle source

Mapper for VirtualMachineScaleSetManagedDiskParameters class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_managed_disk_parameters.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VirtualMachineScaleSetManagedDiskParameters',
    type: {
      name: 'Composite',
      class_name: 'VirtualMachineScaleSetManagedDiskParameters',
      model_properties: {
        storage_account_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'storageAccountType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end