class Fog::Parsers::AWS::Elasticache::CreateCacheSubnetGroup
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/create_cache_subnet_group.rb, line 17 def end_element(name) case name when 'DBSubnetGroup' then @response['CreateCacheSubnetGroupResult']['CacheSubnetGroup'] = @cache_subnet_group @cache_subnet_group = fresh_subnet_group 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/create_cache_subnet_group.rb, line 8 def reset @response = { 'CreateCacheSubnetGroupResult' => {}, '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/create_cache_subnet_group.rb, line 13 def start_element(name, attrs = []) super end