Sha256: e152e079a001ae5cb3b4b2db7e623387e89be4a52f5c3aa777e975d911bd8a7e
Contents?: true
Size: 605 Bytes
Versions: 12
Compression:
Stored size: 605 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
12 entries across 12 versions & 1 rubygems