class Fog::Compute::OracleCloud::Orchestrations

Public Instance Methods

all() click to toggle source
# File lib/fog/oraclecloud/models/compute/orchestrations.rb, line 13
def all
        data = service.list_orchestrations().body['result']
        load(data)
end
get(name) click to toggle source
# File lib/fog/oraclecloud/models/compute/orchestrations.rb, line 8
                        def get(name)
  data = service.get_orchestration(name).body
  new(data)
end