class Fog::Parsers::AWS::IAM::UploadSigningCertificate
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/iam/upload_signing_certificate.rb, line 10 def end_element(name) case name when 'CertificateId', 'UserName', 'CertificateBody', 'Status' @response['Certificate'][name] = value when 'RequestId' @response[name] = value end end
reset()
click to toggle source
# File lib/fog/aws/parsers/iam/upload_signing_certificate.rb, line 6 def reset @response = { 'Certificate' => {} } end