Sha256: 05295b308772386b4a3dcb8d724a43251046b8e72c25cf5973da000a2f08f1f9

Contents?: true

Size: 2 KB

Versions: 2

Compression:

Stored size: 2 KB

Contents

# encoding: utf-8
# Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.

module Azure::ARM::Compute
  module Models
    #
    # Contains the os disk image information.
    #
    class OSDiskImage

      include MsRestAzure

      # @return [OperatingSystemTypes] Gets or sets the operating system of
      # the osDiskImage. Possible values include: 'Windows', 'Linux'
      attr_accessor :operating_system

      #
      # Validate the object. Throws ValidationError if validation fails.
      #
      def validate
        fail MsRest::ValidationError, 'property operating_system is nil' if @operating_system.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.operating_system
        output_object['operatingSystem'] = 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 [OSDiskImage] Deserialized object.
      #
      def self.deserialize_object(object)
        return if object.nil?
        output_object = OSDiskImage.new

        deserialized_property = object['operatingSystem']
        if (!deserialized_property.nil? && !deserialized_property.empty?)
          enum_is_valid = OperatingSystemTypes.constants.any? { |e| OperatingSystemTypes.const_get(e).to_s.downcase == deserialized_property.downcase }
          warn 'Enum OperatingSystemTypes does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid
        end
        output_object.operating_system = deserialized_property

        output_object
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
azure_mgmt_compute-0.2.1 lib/azure_mgmt_compute/models/osdisk_image.rb
azure_mgmt_compute-0.2.0 lib/azure_mgmt_compute/models/osdisk_image.rb