class Fog::Compute::OracleCloud::SshKeys

Public Instance Methods

all() click to toggle source
# File lib/fog/oraclecloud/models/compute/ssh_keys.rb, line 15
def all
        data = service.list_ssh_keys().body['result']
        load(data)
end
get(name) click to toggle source
# File lib/fog/oraclecloud/models/compute/ssh_keys.rb, line 10
                        def get(name)
  data = service.get_ssh_key(name).body
  new(data)
end