Sha256: 55678c471307ec1cc37f86607b70b982c99eaeca67553ed7c6c1e21c0e46912e

Contents?: true

Size: 1.19 KB

Versions: 71

Compression:

Stored size: 1.19 KB

Contents

module Fog
  module Identity
    class OpenStack
      class Real

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

        def list_ec2_credentials(user_id)
          request(
            :expects => [200, 202],
            :method  => 'GET',
            :path    => "users/#{user_id}/credentials/OS-EC2"
          )
        end
      end

      class Mock
        def list_ec2_credentials(user_id)
          ec2_credentials = self.data[:ec2_credentials][user_id].values

          response = Excon::Response.new
          response.status = 200
          response.body = { 'credentials' => ec2_credentials }
          response
        end
      end
    end
  end
end

Version data entries

71 entries across 71 versions & 7 rubygems

Version Path
fog-1.17.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.16.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.15.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
gapinc-fog-1.14.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.14.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.13.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
gapinc-fog-1.12.1.2 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
gapinc-fog-1.12.1.1 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
gapinc-fog-1.12.1a lib/fog/openstack/requests/identity/list_ec2_credentials.rb
gapinc-fog-1.12.1 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.12.1 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.12.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
hpfog-0.0.20 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/openstack/requests/identity/list_ec2_credentials.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.11.1 lib/fog/openstack/requests/identity/list_ec2_credentials.rb
fog-1.11.0 lib/fog/openstack/requests/identity/list_ec2_credentials.rb