Sha256: 18de34a5d4c4cfcc2636cd4f3f778db8654dc20df72baa9daef78debaf024810
Contents?: true
Size: 1.04 KB
Versions: 118
Compression:
Stored size: 1.04 KB
Contents
module Fog module AWS class IAM class Real # Update a Signing Certificate # # ==== Parameters # * certificate_id<~String> - Required. ID of the Certificate to update. # * status<~String> - Required. Active/Inactive # * options<~Hash>: # * user_name<~String> - Name of the user the signing certificate belongs to. # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'RequestId'<~String> - Id of the request # # ==== See Also # http://docs.amazonwebservices.com/IAM/latest/APIReference/index.html?API_UpdateSigningCertificate.html # def update_signing_certificate(certificate_id, status, options = {}) request({ 'Action' => 'UpdateSigningCertificate', 'CertificateId' => certificate_id, 'Status' => status, :parser => Fog::Parsers::AWS::IAM::Basic.new }.merge!(options)) end end end end end
Version data entries
118 entries across 118 versions & 19 rubygems