Sha256: 6b5177e28f097baaa1beddc1f45d3686e0156f5215f7ddb3dd0ed214cbd82ed6
Contents?: true
Size: 638 Bytes
Versions: 1
Compression:
Stored size: 638 Bytes
Contents
module Fog module Parsers module AWS module Elasticache require 'rackspace-fog/aws/parsers/elasticache/base' class ParameterGroupParser < Base def reset super reset_parameter_group end def reset_parameter_group @parameter_group = {} end def end_element(name) case name when 'Description', 'CacheParameterGroupName', 'CacheParameterGroupFamily' @parameter_group[name] = value else super end end 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/parsers/elasticache/parameter_group_parser.rb |