Sha256: 9375525823ea038b76593dcc27a9b45b7e7fdaca4d2dce19f2a62c5c155d01aa
Contents?: true
Size: 994 Bytes
Versions: 37
Compression:
Stored size: 994 Bytes
Contents
module Fog module Compute class HPV2 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 def list_key_pairs request( :expects => [200, 203], :method => 'GET', :path => 'os-keypairs' ) 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
37 entries across 37 versions & 2 rubygems