Sha256: 08f2a23cf70abd6da2bd81688cd7f44914a24497c55ba7da2205f967bfe5d397
Contents?: true
Size: 1.22 KB
Versions: 119
Compression:
Stored size: 1.22 KB
Contents
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
Version data entries
119 entries across 119 versions & 18 rubygems