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