Class: Azure::ARM::Compute::Models::DataDiskImage
- Inherits:
-
Object
- Object
- Azure::ARM::Compute::Models::DataDiskImage
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_compute/models/data_disk_image.rb
Overview
Contains the data disk images information.
Instance Attribute Summary collapse
-
#lun ⇒ Integer
used to identify data disk image inside the VMImage therefore it must be unique for each data disk.The allowed character for the value is digit.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ DataDiskImage
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#lun ⇒ Integer
used to identify data disk image inside the VMImage therefore it must be unique for each data disk.The allowed character for the value is digit.
19 20 21 |
# File 'lib/azure_mgmt_compute/models/data_disk_image.rb', line 19 def lun @lun end |
Class Method Details
.deserialize_object(object) ⇒ DataDiskImage
Deserializes given Ruby Hash into Model object.
48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/azure_mgmt_compute/models/data_disk_image.rb', line 48 def self.deserialize_object(object) return if object.nil? output_object = DataDiskImage.new deserialized_property = object['lun'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.lun = deserialized_property output_object.validate output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
33 34 35 36 37 38 39 40 41 |
# File 'lib/azure_mgmt_compute/models/data_disk_image.rb', line 33 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.lun output_object['lun'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
24 25 26 |
# File 'lib/azure_mgmt_compute/models/data_disk_image.rb', line 24 def validate # Nothing to validate end |