module Fog module Compute class OracleCloud class Real def list_ssh_keys response = request( :expects => 200, :method => 'GET', :path => "/sshkey/Compute-#{@identity_domain}/" ) response end end end end end