Sha256: f50aaa2db2fca610091ef8dbfb816c4351073d8a62c9f7ee62bc0e9d83a74a9f
Contents?: true
Size: 469 Bytes
Versions: 12
Compression:
Stored size: 469 Bytes
Contents
module Fog module Brightbox class Compute class Real def get_image(identifier, options = {}) return nil if identifier.nil? || identifier == "" request( :expects => [200], :method => 'GET', :path => "/1.0/images/#{identifier}", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems