Sha256: 4265c59058abf828385aa92d7757e0e4563a4eca6b74f8bb0c21f0341a933ad0
Contents?: true
Size: 538 Bytes
Versions: 20
Compression:
Stored size: 538 Bytes
Contents
module Fog module Compute class Google class Mock def get_target_pool_health(_target_pool, _region, _instance) Fog::Mock.not_implemented end end class Real def get_target_pool_health(target_pool, region, instance) @compute.get_target_pool_health( @project, region.split("/")[-1], target_pool, ::Google::Apis::ComputeV1::InstanceReference.new( :instance => instance ) ) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems