Sha256: 760a17494d6dada37e734315a3cace41ebed53ba253c91244c4ef18653033999
Contents?: true
Size: 640 Bytes
Versions: 7
Compression:
Stored size: 640 Bytes
Contents
module Fog module Compute class OracleCloud class Real def delete_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 => 'DELETE', :expects => 204, :path => "/orchestration#{name}", :headers => { 'Content-Type' => 'application/oracle-compute-v3+json' } ) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems