Sha256: a4e10bc3afdfb3d76fcf99f2e8ee3cfd7465730429f542bdfcb5acd9181f6e29
Contents?: true
Size: 793 Bytes
Versions: 12
Compression:
Stored size: 793 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 } } } 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