1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/identity/delete_ec2_credential.rb

44 lines
1.1 KiB
Ruby

module Fog
module Identity
class OpenStack
class Real
##
# Destroy an EC2 credential for a user. Requires administrator
# credentials.
#
# ==== Parameters
# * user_id<~String>: The id of the user to delete the credential
# for
# * access<~String>: The access key of the credential to destroy
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~String>: Empty string
def delete_ec2_credential(user_id, access)
request(
:expects => [200, 204],
:method => 'DELETE',
:path => "users/#{user_id}/credentials/OS-EC2/#{access}"
)
end
end
class Mock
def delete_ec2_credential(user_id, access)
raise Fog::Identity::OpenStack::NotFound unless
self.data[:ec2_credentials][user_id][access]
self.data[:ec2_credentials][user_id].delete access
response = Excon::Response.new
response.status = 204
response
rescue
end
end
end
end
end