Sha256: 9c0af1d8b8c8f00de422fcee311352d139915faea50c4b6ca6d277077ff3ef4d

Contents?: true

Size: 1.28 KB

Versions: 7

Compression:

Stored size: 1.28 KB

Contents

module Fog
  module Compute
    class Google
      class Mock
        def get_target_pool_health(_target_pool, _instance)
          Fog::Mock.not_implemented
        end
      end

      class Real
        def get_target_pool_health(target_pool, instance = nil)
          api_method = @compute.target_pools.get_health
          parameters = {
            "project" => @project,
            "targetPool" => target_pool.name,
            "region" => target_pool.region.split("/")[-1]
          }

          if instance
            body = { "instance" => instance }
            resp = request(api_method, parameters, body_object = body)
            [instance, resp.data[:body]["healthStatus"]]
          else
            # TODO: Remove (introduced after 0.4.2)
            Fog::Logger.deprecation(
              "Do not use raw requests, use Fog::Compute::Google::TargetPool.get_health instead [light_black](#{caller.first})[/]"
            )
            health_results = target_pool.instances.map do |instance_object|
              body = { "instance" => instance_object }
              resp = request(api_method, parameters, body_object = body)
              [instance_object, resp.data[:body]["healthStatus"]]
            end
            Hash[health_results]
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-google-0.6.0 lib/fog/compute/google/requests/get_target_pool_health.rb
fog-google-0.5.5 lib/fog/compute/google/requests/get_target_pool_health.rb
fog-google-0.5.4 lib/fog/compute/google/requests/get_target_pool_health.rb
fog-google-0.5.3 lib/fog/compute/google/requests/get_target_pool_health.rb
fog-google-0.5.2 lib/fog/compute/google/requests/get_target_pool_health.rb
fog-google-0.5.1 lib/fog/compute/google/requests/get_target_pool_health.rb
fog-google-0.5.0 lib/fog/compute/google/requests/get_target_pool_health.rb