Sha256: 9789411b878c2121b0bf4600bd8bba046a101e3bbbd2be8c2397999849279f03
Contents?: true
Size: 1004 Bytes
Versions: 97
Compression:
Stored size: 1004 Bytes
Contents
module Fog module AWS class IAM class Real require 'fog/aws/parsers/iam/basic' # 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>: # * 'RequestId'<~String> - Id of the request # # ==== See Also # http://docs.amazonwebservices.com/IAM/latest/APIReference/index.html?API_DeleteSigningCertificate.html # def delete_signing_certificate(certificate_id, options = {}) request({ 'Action' => 'DeleteSigningCertificate', 'CertificateId' => certificate_id, :parser => Fog::Parsers::AWS::IAM::Basic.new }.merge!(options)) end end end end end
Version data entries
97 entries across 95 versions & 6 rubygems