Sha256: 2469187dff93aaf02b1b797ea7f64315a3ffded964c3496ff26ac90d62205c86
Contents?: true
Size: 616 Bytes
Versions: 1
Compression:
Stored size: 616 Bytes
Contents
module Fog module Parsers module AWS module Elasticache require 'rackspace-fog/aws/parsers/elasticache/parameter_group_parser' class ResetParameterGroup < ParameterGroupParser def reset super @response['ResetCacheParameterGroupResult'] = [] end def end_element(name) case name when 'ResetCacheParameterGroupResult' @response[name] = @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/reset_parameter_group.rb |