Sha256: 5ca28e7daffd14ed0acfdfc8796779bb6879a2b5b62111bdd57e2c1b41d22c58

Contents?: true

Size: 1.61 KB

Versions: 32

Compression:

Stored size: 1.61 KB

Contents

module Fog
  module Identity
    class OpenStack
      class Real

        ##
        # Create an EC2 credential for a user in a tenant.  Requires
        # administrator credentials.
        #
        # ==== Parameters
        # * user_id<~String>: The id of the user to create an EC2 credential
        #   for
        # * tenant_id<~String>: The id of the tenant to create the credential
        #   in
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'credential'<~Hash>: Created 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 create_ec2_credential(user_id, tenant_id)
          data = { 'tenant_id' => tenant_id }

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200, 202],
            :method  => 'POST',
            :path    => "users/#{user_id}/credentials/OS-EC2"
          )
        end
      end

      class Mock
        def create_ec2_credential(user_id, tenant_id)
          response = Excon::Response.new
          response.status = 200

          data = {
            'access'    => Fog::Mock.random_hex(32),
            'secret'    => Fog::Mock.random_hex(32),
            'tenant_id' => tenant_id,
            'user_id'   => user_id,
          }

          self.data[:ec2_credentials][user_id][data['access']] = data

          response.body = { 'credential' => data }

          response
        end
      end
    end
  end
end

Version data entries

32 entries across 32 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-1.21.0 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-1.20.0 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-1.19.0 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/openstack/requests/identity/create_ec2_credential.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/openstack/requests/identity/create_ec2_credential.rb