Sha256: 2779dcc85f29eca101114538db80ffffedc97018f6cfe387d4161f8294938d11
Contents?: true
Size: 740 Bytes
Versions: 14
Compression:
Stored size: 740 Bytes
Contents
module Fog module Compute class Google class Mock def remove_target_pool_health_checks(_target_pool, _health_checks) Fog::Mock.not_implemented end end class Real def remove_target_pool_health_checks(target_pool, health_checks) api_method = @compute.target_pools.remove_health_check parameters = { "project" => @project, "targetPool" => target_pool.name, "region" => target_pool.region.split("/")[-1] } body = { "healthChecks" => health_checks.map { |i| { "healthCheck" => i } } } request(api_method, parameters, body_object = body) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems