# 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::Redis module Models # # Sku parameters supplied to the create redis operation. # class Sku include MsRestAzure # @return [SkuName] What type of redis cache to deploy. Valid values: # (Basic, Standard, Premium). Possible values include: 'Basic', # 'Standard', 'Premium' attr_accessor :name # @return [SkuFamily] Which family to use. Valid values: (C, P). # Possible values include: 'C', 'P' attr_accessor :family # @return [Integer] What size of redis cache to deploy. Valid values: # for C family (0, 1, 2, 3, 4, 5, 6), for P family (1, 2, 3, 4) attr_accessor :capacity # # Validate the object. Throws ValidationError if validation fails. # def validate fail MsRest::ValidationError, 'property name is nil' if @name.nil? fail MsRest::ValidationError, 'property family is nil' if @family.nil? fail MsRest::ValidationError, 'property capacity is nil' if @capacity.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.name output_object['name'] = serialized_property unless serialized_property.nil? serialized_property = object.family output_object['family'] = serialized_property unless serialized_property.nil? serialized_property = object.capacity output_object['capacity'] = 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 [Sku] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = Sku.new deserialized_property = object['name'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = SkuName.constants.any? { |e| SkuName.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum SkuName does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid end output_object.name = deserialized_property deserialized_property = object['family'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = SkuFamily.constants.any? { |e| SkuFamily.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum SkuFamily does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid end output_object.family = deserialized_property deserialized_property = object['capacity'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.capacity = deserialized_property output_object end end end end