Sha256: a32773d36f72cee270f8ad46e211761db2cda819567ecd6081b4e1afa6b9bd3e
Contents?: true
Size: 731 Bytes
Versions: 14
Compression:
Stored size: 731 Bytes
Contents
module Fog module Compute class Google class Mock def add_target_pool_health_checks(_target_pool, _health_checks) Fog::Mock.not_implemented end end class Real def add_target_pool_health_checks(target_pool, health_checks) api_method = @compute.target_pools.add_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