Sha256: b238fd22c99f2af3d3e1470b5bc9ff96587a535d0fae8ad4a1f2146f39b313f7
Contents?: true
Size: 933 Bytes
Versions: 11
Compression:
Stored size: 933 Bytes
Contents
module Fog module Compute class OracleCloud class Real def delete_ssh_key (name) if !name.start_with?("/Compute-") then # They haven't provided a well formed name, add their name in name = "/Compute-#{@identity_domain}/#{@username}/#{name}" end request( :method => 'DELETE', :expects => 204, :path => "/sshkey#{name}", :headers => { 'Content-Type' => 'application/oracle-compute-v3+json' } ) end end class Mock def delete_ssh_key (name) response = Excon::Response.new clean_name = name.sub "/Compute-#{@identity_domain}/#{@username}/", '' self.data[:sshkeys].delete(clean_name) response.status = 204 response end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems