Skip to main content

region_backend_services_health

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

Overview

Nameregion_backend_services_health
TypeResource
Idgoogle.compute.region_backend_services_health

Fields

NameDatatypeDescription
annotationsobjectMetadata defined as annotations on the network endpoint group.
healthStatusarrayHealth state of the backend instances or endpoints in requested instance or network endpoint group, determined based on configured health checks.
kindstring[Output Only] Type of resource. Always compute#backendServiceGroupHealth for the health of backend services.

Methods

NameAccessible byRequired ParamsDescription
get_healthSELECTbackendService, project, regionGets the most recent health check results for this regional BackendService.

SELECT examples

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

SELECT
annotations,
healthStatus,
kind
FROM google.compute.region_backend_services_health
WHERE backendService = '{{ backendService }}'
AND project = '{{ project }}'
AND region = '{{ region }}';