Sha256: 37e9755f3726b85a95f936c70716792469c3f8292bf4c06c53819a018889c7c1
Contents?: true
Size: 508 Bytes
Versions: 5
Compression:
Stored size: 508 Bytes
Contents
module Fog module OracleCloud class SOA class Real def get_job_status(type, job_id) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/soa/api/v1.1/instances/#{@identity_domain}/status/#{type}/job/#{job_id}" ) response.body['message'] end end class Mock def get_job_status(type, job_id) ['Creation job succeded'] end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems