Sha256: 5799ca0fffccbe2e68cbdbe2aee1a8f7620293d7492629e8daf1bdc9bdbd113a
Contents?: true
Size: 787 Bytes
Versions: 20
Compression:
Stored size: 787 Bytes
Contents
module Fog module Compute class Google class Mock def remove_target_pool_health_checks(_target_pool, _region, _health_checks) Fog::Mock.not_implemented end end class Real def remove_target_pool_health_checks(target_pool, region, health_checks) health_check_lst = health_checks.map do |hc| ::Google::Apis::ComputeV1::HealthCheckReference.new(:health_check => hc) end @compute.remove_target_pool_health_check( @project, region.split("/")[-1], target_pool, ::Google::Apis::ComputeV1::RemoveTargetPoolsHealthCheckRequest.new( :health_checks => health_check_lst ) ) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems