1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/iam/upload_signing_certificate.rb

37 lines
1.2 KiB
Ruby
Raw Normal View History

module Fog
module AWS
class IAM
class Real
require 'fog/aws/parsers/iam/upload_signing_certificate'
# Upload signing certificate for user (by default detects user from access credentials)
#
# ==== Parameters
# * options<~Hash>:
# * 'UserName'<~String> - name of the user to upload certificate for (do not include path)
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'Certificate'<~Hash>:
# * 'CertificateId'<~String> -
# * 'UserName'<~String> -
# * 'CertificateBody'<~String> -
# * 'Status'<~String> -
# * 'RequestId'<~String> - Id of the request
#
# ==== See Also
# http://docs.amazonwebservices.com/IAM/latest/APIReference/index.html?API_UploadSigningCertificate.html
#
def upload_signing_certificate(certificate, options = {})
request({
'Action' => 'UploadSigningCertificate',
'CertificateBody' => certificate,
:parser => Fog::Parsers::AWS::IAM::UploadSigningCertificate.new
}.merge!(options))
end
end
end
end
end