Sha256: a2bd712c92d9070b3561e00cc614bfe792a8f50c2176dd69c2237e2249bc61a4
Contents?: true
Size: 784 Bytes
Versions: 12
Compression:
Stored size: 784 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 } } } result = self.build_result(api_method, parameters, body_object=body) self.build_response(result) end end end end end
Version data entries
12 entries across 12 versions & 3 rubygems