Sha256: b2934f255f56e322433b3986531ff6bb90dbf7e2164d6066bc34d1649c3e28f5
Contents?: true
Size: 624 Bytes
Versions: 20
Compression:
Stored size: 624 Bytes
Contents
module Fog module Compute class Google class Mock def set_common_instance_metadata(_project, _current_fingerprint, _metadata = {}) Fog::Mock.not_implemented 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
20 entries across 20 versions & 1 rubygems