class Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskStorageTypeInfo

Storage information about the data disks present in the custom image

Attributes

lun[RW]

@return [String] Disk Lun

storage_type[RW]

@return [StorageType] Disk Storage Type. Possible values include: 'Standard', 'Premium', 'StandardSSD'

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-09-15/generated/azure_mgmt_devtestlabs/models/data_disk_storage_type_info.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DataDiskStorageTypeInfo',
    type: {
      name: 'Composite',
      class_name: 'DataDiskStorageTypeInfo',
      model_properties: {
        lun: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lun',
          type: {
            name: 'String'
          }
        },
        storage_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'storageType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end