Sha256: bbcbc8adbb543f4e150d07058f75bfb3a3315234cfe6ae09a4e41773462ce492

Contents?: true

Size: 1.45 KB

Versions: 20

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

20 entries across 20 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.30.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.29.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.28.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.27.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.26.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.25.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
nsidc-fog-1.24.1 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.24.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.11 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.10 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.9 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.8 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.7 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.6 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.23.0 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.4 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.3 lib/fog/openstack/requests/identity/get_ec2_credential.rb
ns-fog-1.22.2 lib/fog/openstack/requests/identity/get_ec2_credential.rb
fog-1.22.1 lib/fog/openstack/requests/identity/get_ec2_credential.rb