Sha256: 8d8d43575df1be7a86fa0628d06334f759698b924074e2509948ff6b5b4a38b9

Contents?: true

Size: 1.63 KB

Versions: 1

Compression:

Stored size: 1.63 KB

Contents

module Fog
  module AWS
    class Elasticache
      class Real

        require 'rackspace-fog/aws/parsers/elasticache/modify_parameter_group'

        # Modifies 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
        # * new_parameters <~Hash> - The parameters to modify, and their values
        # === Returns
        # * response <~Excon::Response>:
        #   * body <~Hash>
        def modify_cache_parameter_group(id, new_parameters)
          # Construct Parameter Modifications in the format:
          #   ParameterNameValues.member.N.ParameterName => "param_name"
          #   ParameterNameValues.member.N.ParameterValue => "param_value"
          n = 0   # n is the parameter index
          parameter_changes = new_parameters.inject({}) do |new_args,pair|
            n += 1
            new_args["ParameterNameValues.member.#{n}.ParameterName"] = pair[0]
            new_args["ParameterNameValues.member.#{n}.ParameterValue"] = pair[1]
            new_args
          end
          # Merge the Cache Security Group parameters with the normal options
          request(parameter_changes.merge(
            'Action'                      => 'ModifyCacheParameterGroup',
            'CacheParameterGroupName'     => id,
            :parser => Fog::Parsers::AWS::Elasticache::ModifyParameterGroup.new
          ))
        end

      end

      class Mock
        def modify_cache_parameter_group(id, new_parameters)
          Fog::Mock.not_implemented
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/elasticache/modify_cache_parameter_group.rb