Sha256: ce4642a0bd89a472073d2668c001ec7f9a6a6498cea03832076c04b3bf9c8fea
Contents?: true
Size: 545 Bytes
Versions: 12
Compression:
Stored size: 545 Bytes
Contents
module Fog module Compute class OracleCloud class Real def delete_image (name, version) name.sub! "/Compute-#{@identity_domain}/#{@username}/", '' request( :method => 'DELETE', :expects => 204, :path => "/imagelist/Compute-#{@identity_domain}/#{@username}/#{name}/entry/#{version}", :headers => { 'Content-Type' => 'application/oracle-compute-v3+json' } ) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems