Sha256: a085ef256fd1d539967df6c8fdcfcec15eecec87a2bda63d4ec5906734bf2f18

Contents?: true

Size: 1.19 KB

Versions: 20

Compression:

Stored size: 1.19 KB

Contents

module Fog
  module Identity
    class OpenStack
      class V2
        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 # class V2
    end
  end
end

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
fog-openstack-0.1.10 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.9 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.8 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.7 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.6 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.5 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.4 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.3 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.2 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.1 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-openstack-0.1.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.37.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.36.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.35.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-2.0.0.pre.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.34.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.33.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.32.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb
fog-1.31.0 lib/fog/openstack/requests/identity_v2/delete_ec2_credential.rb