class Fog::Parsers::AWS::RDS::RestoreDBInstanceToPointInTime

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb, line 17
def end_element(name)
  case name
  when 'DBInstance'
    @response['RestoreDBInstanceToPointInTime']['DBInstance'] = @db_instance
    @db_instance = fresh_instance
  when 'RequestId'
    @response['ResponseMetadata'][name] = value
  else
    super
  end
end
reset() click to toggle source
Calls superclass method Fog::Parsers::AWS::RDS::DbParser#reset
# File lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb, line 8
def reset
  @response = { 'RestoreDBInstanceToPointInTime' => {}, 'ResponseMetadata' => {} }
  super
end
start_element(name, attrs = []) click to toggle source
# File lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb, line 13
def start_element(name, attrs = [])
  super
end