# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Compute::Mgmt::V2018_04_01 module Models # # Disk resource. # class Disk < Resource include MsRestAzure # @return [String] A relative URI containing the ID of the VM that has # the disk attached. attr_accessor :managed_by # @return [DiskSku] attr_accessor :sku # @return [Array] The Logical zone list for Disk. attr_accessor :zones # @return [DateTime] The time when the disk was created. attr_accessor :time_created # @return [OperatingSystemTypes] The Operating System type. Possible # values include: 'Windows', 'Linux' attr_accessor :os_type # @return [CreationData] Disk source information. CreationData # information cannot be changed after the disk has been created. attr_accessor :creation_data # @return [Integer] If creationData.createOption is Empty, this field is # mandatory and it indicates the size of the VHD to create. If this field # is present for updates or creation with other options, it indicates a # resize. Resizes are only allowed if the disk is not attached to a # running VM, and can only increase the disk's size. attr_accessor :disk_size_gb # @return [EncryptionSettings] Encryption settings for disk or snapshot attr_accessor :encryption_settings # @return [String] The disk provisioning state. attr_accessor :provisioning_state # # Mapper for Disk class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Disk', type: { name: 'Composite', class_name: 'Disk', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, managed_by: { client_side_validation: true, required: false, read_only: true, serialized_name: 'managedBy', type: { name: 'String' } }, sku: { client_side_validation: true, required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'DiskSku' } }, zones: { client_side_validation: true, required: false, serialized_name: 'zones', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, time_created: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.timeCreated', type: { name: 'DateTime' } }, os_type: { client_side_validation: true, required: false, serialized_name: 'properties.osType', type: { name: 'Enum', module: 'OperatingSystemTypes' } }, creation_data: { client_side_validation: true, required: true, serialized_name: 'properties.creationData', type: { name: 'Composite', class_name: 'CreationData' } }, disk_size_gb: { client_side_validation: true, required: false, serialized_name: 'properties.diskSizeGB', type: { name: 'Number' } }, encryption_settings: { client_side_validation: true, required: false, serialized_name: 'properties.encryptionSettings', type: { name: 'Composite', class_name: 'EncryptionSettings' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end end end end