Sha256: ea47d9b802c3557914f72a58e2b5787013a34c9f583fb9ac350a977e563259c1
Contents?: true
Size: 606 Bytes
Versions: 1
Compression:
Stored size: 606 Bytes
Contents
module Fog module Parsers module AWS module Elasticache require 'rackspace-fog/aws/parsers/elasticache/parameter_group_parser' class DescribeParameterGroups < ParameterGroupParser def reset super @response['CacheParameterGroups'] = [] end def end_element(name) case name when 'CacheParameterGroup' @response["#{name}s"] << @parameter_group reset_parameter_group 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/describe_parameter_groups.rb |