Sha256: 5340eabc1236a9489af3e942c41b473243409049069c1d4a4abbae5119d3a470
Contents?: true
Size: 892 Bytes
Versions: 27
Compression:
Stored size: 892 Bytes
Contents
module Fog module Compute class DigitalOcean class Real # # This method shows a specific public SSH key in your account # that can be added to a droplet. # # @see https://developers.digitalocean.com/ssh-keys # def get_ssh_key(id) request( :expects => [200], :method => 'GET', :path => "ssh_keys/#{id}" ) end end class Mock def get_ssh_key(id) response = Excon::Response.new response.status = 200 response.body = { "status" => "OK", # key listing does not return ssh_pub_key # https://developers.digitalocean.com/ssh-keys "ssh_key" => self.data[:ssh_keys].find { |k| k['id'] == id } } response end end end end end
Version data entries
27 entries across 27 versions & 4 rubygems