# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute module Models # # The List Virtual Machine operation response. # class VirtualMachineListResult include MsRestAzure # @return [Array] Gets or sets the list of virtual # machines. attr_accessor :value # @return [String] Gets or sets the uri to fetch the next page of VMs. # Call ListNext() with this to fetch the next page of Virtual Machines. attr_accessor :next_link # # Validate the object. Throws ValidationError if validation fails. # def validate @value.each{ |e| e.validate if e.respond_to?(:validate) } unless @value.nil? end # # Serializes given Model object into Ruby Hash. # @param object Model object to serialize. # @return [Hash] Serialized object in form of Ruby Hash. # def self.serialize_object(object) object.validate output_object = {} serialized_property = object.value unless serialized_property.nil? serializedArray = [] serialized_property.each do |element| unless element.nil? element = VirtualMachine.serialize_object(element) end serializedArray.push(element) end serialized_property = serializedArray end output_object['value'] = serialized_property unless serialized_property.nil? serialized_property = object.next_link output_object['nextLink'] = serialized_property unless serialized_property.nil? output_object end # # Deserializes given Ruby Hash into Model object. # @param object [Hash] Ruby Hash object to deserialize. # @return [VirtualMachineListResult] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = VirtualMachineListResult.new deserialized_property = object['value'] unless deserialized_property.nil? deserializedArray = []; deserialized_property.each do |element1| unless element1.nil? element1 = VirtualMachine.deserialize_object(element1) end deserializedArray.push(element1); end deserialized_property = deserializedArray; end output_object.value = deserialized_property deserialized_property = object['nextLink'] output_object.next_link = deserialized_property output_object.validate output_object end end end end