Skip to main content

region_composite_health_checks_health

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

Overview

Nameregion_composite_health_checks_health
TypeResource
Idgoogle.compute.region_composite_health_checks_health

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
healthSourcesarrayHealth sources and their corresponding health states.
healthStatestringHealth state of the CompositeHealthCheck. (HEALTHY, UNHEALTHY, UNKNOWN)
kindstringOutput only. [Output Only] Type of resource. Alwayscompute#compositeHealthCheckHealth for the health of composite health checks. (default: compute#compositeHealthCheckHealth)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_healthselectproject, region, compositeHealthCheckGets the most recent health check results for this
regional CompositeHealthCheck.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
compositeHealthCheckstring
projectstring
regionstring

SELECT examples

Gets the most recent health check results for this
regional CompositeHealthCheck.

SELECT
healthSources,
healthState,
kind
FROM google.compute.region_composite_health_checks_health
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND compositeHealthCheck = '{{ compositeHealthCheck }}' -- required
;