Sha256: 110d9e7e3f0d0d66a017871a26d36798752beb1442fc0880d69398292365a311
Contents?: true
Size: 727 Bytes
Versions: 22
Compression:
Stored size: 727 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
22 entries across 20 versions & 5 rubygems