Sha256: cfea94e102c493bc9f9a851685bfd311cf909ecf7a79410e20dd89b01494f601
Contents?: true
Size: 584 Bytes
Versions: 5
Compression:
Stored size: 584 Bytes
Contents
module Fog module Compute class OracleCloud class Real def list_orchestrations response = request( :expects => 200, :method => 'GET', :path => "/orchestration/Compute-#{@identity_domain}/" ) response end end class Mock def list_orchestrations response = Excon::Response.new orchs = self.data[:orchestrations].values response.body = { 'result' => orchs } response end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems