Sha256: 1766d175a04f487037c9f6bf5768451442c7b822d5df1b90d661811f4758a892
Contents?: true
Size: 643 Bytes
Versions: 7
Compression:
Stored size: 643 Bytes
Contents
module Fog module Compute class OracleCloud class Real def start_orchestration (name) if !name.start_with?("/Compute-") then # They haven't provided a well formed name, add their name in name = "/Compute-#{@identity_domain}/#{@username}/#{name}" end request( :method => 'PUT', :expects => 200, :path => "/orchestration#{name}?action=start", :headers => { 'Content-Type' => 'application/oracle-compute-v3+json' } ) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems