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