Sha256: 8622ec9aac9631e80637102f0c9945602f8787736e78992a488d1d858dddbd29

Contents?: true

Size: 736 Bytes

Versions: 22

Compression:

Stored size: 736 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 } }
          }

          request(api_method, parameters, body_object=body)
        end
      end
    end
  end
end

Version data entries

22 entries across 20 versions & 5 rubygems

Version Path
nsidc-fog-1.24.1 lib/fog/google/requests/compute/remove_target_pool_health_checks.rb
fog-1.24.0 lib/fog/google/requests/compute/remove_target_pool_health_checks.rb