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