region_backend_services_health
Creates, updates, deletes, gets or lists a region_backend_services_health
resource.
Overview
Name | region_backend_services_health |
Type | Resource |
Id | google.compute.region_backend_services_health |
Fields
Name | Datatype | Description |
---|---|---|
annotations | object | Metadata defined as annotations on the network endpoint group. |
healthStatus | array | Health state of the backend instances or endpoints in requested instance or network endpoint group, determined based on configured health checks. |
kind | string | [Output Only] Type of resource. Always compute#backendServiceGroupHealth for the health of backend services. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_health | SELECT | backendService, project, region | Gets 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 }}';