Method: Fog::AWS::IAM::Real#delete_signing_certificate
- Defined in:
- lib/fog/aws/requests/iam/delete_signing_certificate.rb
permalink #delete_signing_certificate(certificate_id, options = {}) ⇒ Object
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
docs.amazonwebservices.com/IAM/latest/APIReference/index.html?API_DeleteSigningCertificate.html
22 23 24 25 26 27 28 |
# File 'lib/fog/aws/requests/iam/delete_signing_certificate.rb', line 22 def delete_signing_certificate(certificate_id, = {}) request({ 'Action' => 'DeleteSigningCertificate', 'CertificateId' => certificate_id, :parser => Fog::Parsers::AWS::IAM::Basic.new }.merge!()) end |