Sha256: 43f585090fef25943f86add3ab19a134093e955eff19ec67e54e6945c1941949
Contents?: true
Size: 590 Bytes
Versions: 7
Compression:
Stored size: 590 Bytes
Contents
module Fog module Compute class Google class Mock def get_target_pool_health(_target_pool, _region, _instance) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
7 entries across 7 versions & 2 rubygems