# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Web module Models # # Description of the App Service Plan scale options # class SkuCapacity include MsRestAzure # @return [Integer] Minimum number of Workers for this App Service Plan # SKU attr_accessor :minimum # @return [Integer] Maximum number of Workers for this App Service Plan # SKU attr_accessor :maximum # @return [Integer] Default number of Workers for this App Service Plan # SKU attr_accessor :default # @return [String] Available scale configurations for an App Service Plan attr_accessor :scale_type # # Validate the object. Throws ValidationError if validation fails. # def validate # Nothing to validate 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.minimum output_object['minimum'] = serialized_property unless serialized_property.nil? serialized_property = object.maximum output_object['maximum'] = serialized_property unless serialized_property.nil? serialized_property = object.default output_object['default'] = serialized_property unless serialized_property.nil? serialized_property = object.scale_type output_object['scaleType'] = 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 [SkuCapacity] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = SkuCapacity.new deserialized_property = object['minimum'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.minimum = deserialized_property deserialized_property = object['maximum'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.maximum = deserialized_property deserialized_property = object['default'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.default = deserialized_property deserialized_property = object['scaleType'] output_object.scale_type = deserialized_property output_object end end end end