r
Creates, updates, deletes, gets or lists a r resource.
Overview
| Name | r |
| Type | Resource |
| Id | google.health.r |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
contentType | string | The HTTP Content-Type header value specifying the content type of the body. |
data | string (byte) | The HTTP request/response body as raw binary. |
extensions | array | Application specific response metadata. Must be set in the first response for streaming APIs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | externalShlId, resourceToken | Forward a resource request for a given SHL |
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 |
|---|---|---|
externalShlId | string | |
resourceToken | string |
SELECT examples
- get
Forward a resource request for a given SHL
SELECT
contentType,
data,
extensions
FROM google.health.r
WHERE externalShlId = '{{ externalShlId }}' -- required
AND resourceToken = '{{ resourceToken }}' -- required
;