2010-11-16 19:31:38 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class IAM
|
|
|
|
class Real
|
|
|
|
|
|
|
|
require 'fog/aws/parsers/iam/basic'
|
|
|
|
|
|
|
|
# Delete an access key
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * access_key_id<~String> - Access key id to delete
|
2010-11-17 13:29:58 -05:00
|
|
|
# * options<~Hash>:
|
|
|
|
# * 'UserName'<~String> - name of the user to create (do not include path)
|
2010-11-16 19:31:38 -05:00
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'RequestId'<~String> - Id of the request
|
|
|
|
#
|
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/IAM/latest/APIReference/API_DeleteAccessKey.html
|
|
|
|
#
|
2010-11-17 13:29:58 -05:00
|
|
|
def delete_access_key(access_key_id, options = {})
|
|
|
|
request({
|
2010-11-16 19:31:38 -05:00
|
|
|
'AccessKeyId' => access_key_id,
|
2010-11-17 13:29:58 -05:00
|
|
|
'Action' => 'DeleteAccessKey',
|
2010-11-16 19:31:38 -05:00
|
|
|
:parser => Fog::Parsers::AWS::IAM::Basic.new
|
2010-11-17 13:29:58 -05:00
|
|
|
}.merge!(options))
|
2010-11-16 19:31:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|