class Fog::Parsers::AWS::Elasticache::ParameterGroupParser
Public Instance Methods
Source
# File lib/fog/aws/parsers/elasticache/parameter_group_parser.rb, line 17 def end_element(name) case name when 'Description', 'CacheParameterGroupName', 'CacheParameterGroupFamily' @parameter_group[name] = value else super end end
Calls superclass method
Fog::Parsers::AWS::Elasticache::Base#end_element
Source
# File lib/fog/aws/parsers/elasticache/parameter_group_parser.rb, line 8 def reset super reset_parameter_group end
Calls superclass method
Fog::Parsers::AWS::Elasticache::Base#reset
Source
# File lib/fog/aws/parsers/elasticache/parameter_group_parser.rb, line 13 def reset_parameter_group @parameter_group = {} end