Class: Fog::Parsers::AWS::Elasticache::SubnetGroupParser
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::Elasticache::SubnetGroupParser
show all
- Defined in:
- lib/fog/aws/parsers/elasticache/subnet_group_parser.rb
Instance Method Summary
collapse
Instance Method Details
#end_element(name) ⇒ Object
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/fog/aws/parsers/elasticache/subnet_group_parser.rb', line 14
def end_element(name)
case name
when 'VpcId' then @cache_subnet_group['VpcId'] = value
when 'SubnetGroupStatus' then @cache_subnet_group['SubnetGroupStatus'] = value
when 'CacheSubnetGroupDescription' then @cache_subnet_group['CacheSubnetGroupDescription'] = value
when 'CacheSubnetGroupName' then @cache_subnet_group['CacheSubnetGroupName'] = value
when 'SubnetIdentifier' then @cache_subnet_group['Subnets'] << value
when 'Marker'
@response['DescribeCacheSubnetGroupsResult']['Marker'] = value
when 'RequestId'
@response['ResponseMetadata'][name] = value
end
end
|
#fresh_subnet_group ⇒ Object
28
29
30
|
# File 'lib/fog/aws/parsers/elasticache/subnet_group_parser.rb', line 28
def fresh_subnet_group
{'Subnets' => []}
end
|
#reset ⇒ Object
6
7
8
|
# File 'lib/fog/aws/parsers/elasticache/subnet_group_parser.rb', line 6
def reset
@cache_subnet_group = fresh_subnet_group
end
|
#start_element(name, attrs = []) ⇒ Object
10
11
12
|
# File 'lib/fog/aws/parsers/elasticache/subnet_group_parser.rb', line 10
def start_element(name, attrs = [])
super
end
|