class Fog::Parsers::AWS::RDS::RebootDBInstance

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/rds/reboot_db_instance.rb, line 17
def end_element(name)
  case name

  when 'DBInstance'
    @response['RebootDBInstanceResult']['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/reboot_db_instance.rb, line 8
def reset
  @response = { 'RebootDBInstanceResult' => {}, 'ResponseMetadata' => {} }
  super
end
start_element(name, attrs = []) click to toggle source
# File lib/fog/aws/parsers/rds/reboot_db_instance.rb, line 13
def start_element(name, attrs = [])
  super
end