Sha256: a63c2a6f658aeec18db8f849763c6ebd4202c994dd8ba60439eb6f479b5a7c83

Contents?: true

Size: 1.22 KB

Versions: 44

Compression:

Stored size: 1.22 KB

Contents

module Fog
  module Compute
    class RackspaceV2
      class Real

        # Returns a list of all key pairs associated with an account.
        # @return  [Excon::Response] response :
        #   * body [Hash]: -
        #     * 'keypairs' [Array]: list of keypairs
        #       * 'keypair' [Hash]: -
        #           * 'fingerprint' [String]: unique fingerprint of the keypair
        #           * 'name' [String]: unique name of the keypair
        #           * 'public_key' [String]: the public key assigned to the keypair
        # @raise [Fog::Compute::RackspaceV2::NotFound]
        # @raise [Fog::Compute::RackspaceV2::BadRequest]
        # @raise [Fog::Compute::RackspaceV2::InternalServerError]
        # @raise [Fog::Compute::RackspaceV2::ServiceError]
        # @see   http://docs.rackspace.com/servers/api/v2/cs-devguide/content/ListKeyPairs.html
        def list_keypairs
          request(
            :method   => 'GET',
            :expects  => 200,
            :path     => '/os-keypairs'
          )
        end
      end

      class Mock
        def list_keypairs
            response( :status => 200,
                      :body   => { 'keypairs' => self.data[:keypairs] })
        end
      end

    end
  end
end

Version data entries

44 entries across 44 versions & 3 rubygems

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