Sha256: a2ab7a9cf07976f60aea037956876a33cb426d040890abedb83258d7d2568186
Contents?: true
Size: 584 Bytes
Versions: 5
Compression:
Stored size: 584 Bytes
Contents
module Fog module Compute class OracleCloud class Real def get_image(name) name.sub! "/Compute-#{@identity_domain}/#{@username}/", '' response = request( :expects => 200, :method => 'GET', :path => "/machineimage/Compute-#{@identity_domain}/#{@username}/#{name}", :headers => { 'Content-Type' => 'application/oracle-compute-v3+json', 'Accept' => 'application/oracle-compute-v3+json' } ) response end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems