fhir_store_metrics
Creates, updates, deletes, gets or lists a fhir_store_metrics resource.
Overview
| Name | fhir_store_metrics |
| Type | Resource |
| Id | google.healthcare.fhir_store_metrics |
Fields
The following fields are returned by SELECT queries:
- get_fhirstore_metrics
| Name | Datatype | Description |
|---|---|---|
name | string | The resource name of the FHIR store to get metrics for, in the format projects/{project_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}. |
metrics | array | List of FhirStoreMetric by resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_fhirstore_metrics | select | projectsId, locationsId, datasetsId, fhirStoresId | Gets metrics associated with the FHIR store. |
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.
| Name | Datatype | Description |
|---|---|---|
datasetsId | string | |
fhirStoresId | string | |
locationsId | string | |
projectsId | string |
SELECT examples
- get_fhirstore_metrics
Gets metrics associated with the FHIR store.
SELECT
name,
metrics
FROM google.healthcare.fhir_store_metrics
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND datasetsId = '{{ datasetsId }}' -- required
AND fhirStoresId = '{{ fhirStoresId }}' -- required
;