Sha256: 39ec3f35b91de4fdb07256cc3243702f007e26831433626b2a493f0686a401ae

Contents?: true

Size: 1.55 KB

Versions: 98

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.reduce({}) 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

98 entries across 96 versions & 6 rubygems

Version Path
fog-aws-0.0.7 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-aws-0.0.6 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-aws-0.0.5 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.26.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.25.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
nsidc-fog-1.24.1 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.24.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.11 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.10 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.9 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.8 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.7 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.6 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.23.0 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.4 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.3 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
ns-fog-1.22.2 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
fog-1.22.1 lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb