File: modify_cache_parameter_group.rb

package info (click to toggle)
ruby-fog-aws 3.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,140 kB
  • sloc: ruby: 73,328; javascript: 14; makefile: 9; sh: 4
file content (43 lines) | stat: -rw-r--r-- 1,652 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module Fog
  module AWS
    class Elasticache
      class Real
        require '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.reduce({}) 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