class Fog::Parsers::AWS::Elasticache::DescribeCacheSubnetGroups
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::AWS::Elasticache::SubnetGroupParser#end_element
# File lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb, line 17 def end_element(name) case name when 'CacheSubnetGroup' @response['DescribeCacheSubnetGroupsResult']['CacheSubnetGroups'] << @cache_subnet_group @cache_subnet_group = fresh_subnet_group when 'Marker' @response['DescribeCacheSubnetGroupsResult']['Marker'] = value when 'RequestId' @response['ResponseMetadata'][name] = value else super end end
reset()
click to toggle source
Calls superclass method
Fog::Parsers::AWS::Elasticache::SubnetGroupParser#reset
# File lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb, line 8 def reset @response = { 'DescribeCacheSubnetGroupsResult' => {'CacheSubnetGroups' => []}, 'ResponseMetadata' => {} } super end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
Fog::Parsers::AWS::Elasticache::SubnetGroupParser#start_element
# File lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb, line 13 def start_element(name, attrs = []) super end