class Fog::Parsers::AWS::Elasticache::ParameterGroupParser
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::AWS::Elasticache::Base#end_element
# 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
reset()
click to toggle source
Calls superclass method
Fog::Parsers::AWS::Elasticache::Base#reset
# File lib/fog/aws/parsers/elasticache/parameter_group_parser.rb, line 8 def reset super reset_parameter_group end
reset_parameter_group()
click to toggle source
# File lib/fog/aws/parsers/elasticache/parameter_group_parser.rb, line 13 def reset_parameter_group @parameter_group = {} end