Skip to main content

target_pools_health

Creates, updates, deletes, gets or lists a target_pools_health resource.

Overview

Nametarget_pools_health
TypeResource
Idgoogle.compute.target_pools_health

Fields

NameDatatypeDescription
healthStatusarray
kindstring[Output Only] Type of resource. Always compute#targetPoolInstanceHealth when checking the health of an instance.

Methods

NameAccessible byRequired ParamsDescription
get_healthSELECTproject, region, targetPoolGets the most recent health check results for each IP for the instance that is referenced by the given target pool.

SELECT examples

Gets the most recent health check results for each IP for the instance that is referenced by the given target pool.

SELECT
healthStatus,
kind
FROM google.compute.target_pools_health
WHERE project = '{{ project }}'
AND region = '{{ region }}'
AND targetPool = '{{ targetPool }}';