Sha256: aa15d1c6f2b40f06d36291e96c91d1447aa07822e2a7f4e1540eb315c39f4de3
Contents?: true
Size: 676 Bytes
Versions: 7
Compression:
Stored size: 676 Bytes
Contents
module Fog module Compute class Google class Mock def set_common_instance_metadata(_project, _current_fingerprint, _metadata = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def set_common_instance_metadata(project, current_fingerprint, metadata = {}) metadata_obj = ::Google::Apis::ComputeV1::Metadata.new( :fingerprint => current_fingerprint, :items => metadata.map { |k, v| { :key => k, :value => v } } ) @compute.set_common_instance_metadata(project, metadata_obj) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems