Sha256: ff1706e4138f372bd419f3b9726ea6d3589265e26c9020532f52c0b5d6f8921e

Contents?: true

Size: 1.45 KB

Versions: 71

Compression:

Stored size: 1.45 KB

Contents

module Fog
  module Identity
    class OpenStack
      class Real

        ##
        # Retrieves an EC2 credential for a user.  Requires administrator
        # credentials.
        #
        # ==== Parameters
        # * user_id<~String>: The id of the user to retrieve the credential
        #   for
        # * access<~String>: The access key of the credential to retrieve
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'credential'<~Hash>: The EC2 credential
        #       * 'access'<~String>: The access key
        #       * 'secret'<~String>: The secret key
        #       * 'user_id'<~String>: The user id
        #       * 'tenant_id'<~String>: The tenant id

        def get_ec2_credential(user_id, access)
          request(
            :expects => [200, 202],
            :method  => 'GET',
            :path    => "users/#{user_id}/credentials/OS-EC2/#{access}"
          )
        rescue Excon::Errors::Unauthorized
          raise Fog::Identity::OpenStack::NotFound
        end
      end

      class Mock
        def get_ec2_credential(user_id, access)
          ec2_credential = self.data[:ec2_credentials][user_id][access]

          raise Fog::OpenStack::Identity::NotFound unless ec2_credential

          response = Excon::Response.new
          response.status = 200
          response.body = { 'credential' => ec2_credential }
          response
        end
      end
    end
  end
end

Version data entries

71 entries across 71 versions & 7 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.21.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/requests/identity/get_ec2_credential.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/requests/identity/get_ec2_credential.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.20.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.19.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/requests/identity/get_ec2_credential.rb