Sha256: 48e20dd3a096787131658152e9ee04407e0ea8e395af11694b6599d6f792009d

Contents?: true

Size: 1.55 KB

Versions: 101

Compression:

Stored size: 1.55 KB

Contents

module Fog
  module AWS
    class Elasticache
      class Real

        require 'fog/aws/parsers/elasticache/reset_parameter_group'

        # Resets an existing cache parameter group
        # Returns a the name of the modified parameter group
        #
        # === Required Parameters
        # * id <~String> - The ID of the parameter group to be modified
        # === Optional Parameters
        # * parameter_names <~Array> - The parameters to reset
        # === Returns
        # * response <~Excon::Response>:
        #   * body <~Hash>
        def reset_cache_parameter_group(id, parameter_names = [])
          # Construct Parameter resets in the format:
          #   ParameterNameValues.member.N => "param_name"
          parameter_changes = parameter_names.inject({}) do |new_args, param|
            index = parameter_names.index(param) + 1
            new_args["ParameterNameValues.member.#{index}"] = param
            new_args
          end
          if parameter_changes.empty?
            parameter_changes = {'ResetAllParameters' => 'true'}
          end
          # Merge the Cache Security Group parameters with the normal options
          request(parameter_changes.merge(
            'Action'                      => 'ResetCacheParameterGroup',
            'CacheParameterGroupName'     => id,
            :parser => Fog::Parsers::AWS::Elasticache::ResetParameterGroup.new
          ))
        end

      end

      class Mock
        def reset_cache_parameter_group(id, parameter_names)
           Fog::Mock.not_implemented
        end
      end
    end
  end
end

Version data entries

101 entries across 101 versions & 17 rubygems

Version Path
fog-1.22.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.21.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.20.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.19.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb