Sha256: 008c7792388d9a0ac3d8b5306fb70a11c4863e71a689da3c24d0b0536a02ce1c

Contents?: true

Size: 1.05 KB

Versions: 79

Compression:

Stored size: 1.05 KB

Contents

module Fog
  module Compute
    class HP
      class Real

        # List all key pairs
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'keypairs'<~Array>:
        #       * 'keypair'<~Hash>:
        #         * 'public_key'<~String> - Public portion of the key
        #         * 'name'<~String> - Name of the key
        #         * 'fingerprint'<~String> - Fingerprint of the key
        #
        # {Openstack API Reference}[http://docs.openstack.org]
        def list_key_pairs
          request(
            :expects  => [200, 203],
            :method   => 'GET',
            :path     => 'os-keypairs.json'
          )
        end

      end

      class Mock

        def list_key_pairs
          response = Excon::Response.new

          key_pairs = []
          key_pairs = self.data[:key_pairs].values unless self.data[:key_pairs].nil?

          response.status = [200, 203][rand(1)]
          response.body = { 'keypairs' => key_pairs }
          response
        end

      end
    end
  end
end

Version data entries

79 entries across 79 versions & 12 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/hp/requests/compute/list_key_pairs.rb
gapinc-fog-1.12.1.2.1 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-1.18.0 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-1.17.0 lib/fog/hp/requests/compute/list_key_pairs.rb
fog-1.16.0 lib/fog/hp/requests/compute/list_key_pairs.rb