class Fog::Parsers::AWS::RDS::CopyDBSnapshot
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::SnapshotParser#end_element
# File lib/fog/aws/parsers/rds/copy_db_snapshot.rb, line 17 def end_element(name) case name when 'DBSnapshot' then @response['CopyDBSnapshotResult']['DBSnapshot'] = @db_snapshot @db_snapshot = fresh_snapshot when 'RequestId' @response['ResponseMetadata'][name] = value else super end end
reset()
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::SnapshotParser#reset
# File lib/fog/aws/parsers/rds/copy_db_snapshot.rb, line 8 def reset @response = { 'CopyDBSnapshotResult' => {}, 'ResponseMetadata' => {} } super end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::SnapshotParser#start_element
# File lib/fog/aws/parsers/rds/copy_db_snapshot.rb, line 13 def start_element(name, attrs = []) super end