Class: Azure::ARM::Compute::Models::VirtualMachineImageResource
- Inherits:
-
MsRestAzure::SubResource
- Object
- MsRestAzure::SubResource
- Azure::ARM::Compute::Models::VirtualMachineImageResource
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb
Overview
Virtual machine image resource information.
Instance Attribute Summary collapse
-
#location ⇒ String
Gets or sets the location of the resource.
-
#name ⇒ String
Gets or sets the name of the resource.
-
#tags ⇒ Hash{String => String}
resource.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ VirtualMachineImageResource
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
#location ⇒ String
Returns Gets or sets the location of the resource.
19 20 21 |
# File 'lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb', line 19 def location @location end |
#name ⇒ String
Returns Gets or sets the name of the resource.
16 17 18 |
# File 'lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb', line 16 def name @name end |
#tags ⇒ Hash{String => String}
resource.
23 24 25 |
# File 'lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb', line 23 def @tags end |
Class Method Details
.deserialize_object(object) ⇒ VirtualMachineImageResource
Deserializes given Ruby Hash into Model object.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb', line 61 def self.deserialize_object(object) return if object.nil? output_object = VirtualMachineImageResource.new deserialized_property = object['id'] output_object.id = deserialized_property deserialized_property = object['name'] output_object.name = deserialized_property deserialized_property = object['location'] output_object.location = deserialized_property deserialized_property = object['tags'] output_object. = deserialized_property output_object.validate output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb', line 37 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.id output_object['id'] = serialized_property unless serialized_property.nil? serialized_property = object.name output_object['name'] = serialized_property unless serialized_property.nil? serialized_property = object.location output_object['location'] = serialized_property unless serialized_property.nil? serialized_property = object. output_object['tags'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
28 29 30 |
# File 'lib/azure_mgmt_compute/models/virtual_machine_image_resource.rb', line 28 def validate @tags.each{ |e| e.validate if e.respond_to?(:validate) } unless @tags.nil? end |