Sha256: 5ade57b6dc05e5ebdfbffd7796f638e403fccdbebbd9fe41a5949046b9bacec8

Contents?: true

Size: 1.95 KB

Versions: 2

Compression:

Stored size: 1.95 KB

Contents

# 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
    #
    # Specifies which redis access keys to reset.
    #
    class RedisRegenerateKeyParameters

      include MsRestAzure

      # @return [RedisKeyType] Which redis access key to reset. Possible
      # values include: 'Primary', 'Secondary'
      attr_accessor :key_type

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

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

        output_object
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
azure_mgmt_redis-0.3.1 lib/azure_mgmt_redis/models/redis_regenerate_key_parameters.rb
azure_mgmt_redis-0.3.0 lib/azure_mgmt_redis/models/redis_regenerate_key_parameters.rb