class Fog::OracleCloud::Database::Instances

Public Instance Methods

all() click to toggle source
# File lib/fog/oraclecloud/models/database/instances.rb, line 10
def all
  data = service.list_instances().body['services']
  load(data)
end
get(id) click to toggle source
# File lib/fog/oraclecloud/models/database/instances.rb, line 15
def get(id)
  new(service.get_instance(id).body)
end
get_from_job(job_id) click to toggle source
# File lib/fog/oraclecloud/models/database/instances.rb, line 19
def get_from_job(job_id)
  new(service.get_instance_from_job(job_id).body)
end