Sha256: 13a5ae0e4ddcabfab85e4ea14c6c6d3eb4043ccaaa391adc920d9df44a96e05c
Contents?: true
Size: 471 Bytes
Versions: 20
Compression:
Stored size: 471 Bytes
Contents
module Fog module Compute class Google class Mock def insert_image(_image_name, _image = {}) Fog::Mock.not_implemented end end class Real def insert_image(image_name, image = {}, project = @project) image = image.merge(:name => image_name) @compute.insert_image( project, ::Google::Apis::ComputeV1::Image.new(image) ) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems