Class: Fog::Parsers::AWS::Elasticache::ParameterGroupParser
- Inherits:
-
Base
- Object
- Base
- Base
- Fog::Parsers::AWS::Elasticache::ParameterGroupParser
show all
- Defined in:
- lib/fog/aws/parsers/elasticache/parameter_group_parser.rb
Instance Method Summary
collapse
Methods inherited from Base
#start_element
Instance Method Details
#end_element(name) ⇒ Object
17
18
19
20
21
22
23
24
|
# 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 ⇒ Object
8
9
10
11
|
# File 'lib/fog/aws/parsers/elasticache/parameter_group_parser.rb', line 8
def reset
super
reset_parameter_group
end
|
#reset_parameter_group ⇒ Object
13
14
15
|
# File 'lib/fog/aws/parsers/elasticache/parameter_group_parser.rb', line 13
def reset_parameter_group
@parameter_group = {}
end
|