Sha256: 0aa27d79679540ebe0220bb05c7eceba8b1bc5389b60dd36b0556161a4f72719
Contents?: true
Size: 791 Bytes
Versions: 22
Compression:
Stored size: 791 Bytes
Contents
module Fog module Compute class Google class Mock def get_target_pool_health(target_pool) Fog::Mock.not_implemented end end class Real def get_target_pool_health(target_pool) api_method = @compute.target_pools.get_health parameters = { 'project' => @project, 'targetPool' => target_pool.name, 'region' => target_pool.region.split('/')[-1] } health_results = target_pool.instances.map do |instance| body = { 'instance' => instance } resp = request(api_method, parameters, body_object=body) [instance, resp.data[:body]['healthStatus']] end Hash[health_results] end end end end end
Version data entries
22 entries across 20 versions & 5 rubygems