Sha256: 85ea9d3b1f3677e1c1a64cffa37e39d42b0664756a79dcdad6d53c9246859932
Contents?: true
Size: 1.05 KB
Versions: 29
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
29 entries across 29 versions & 4 rubygems