Skip to main content

r

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

Overview

Namer
TypeResource
Idgoogle.health.r

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contentTypestringThe HTTP Content-Type header value specifying the content type of the body.
datastring (byte)The HTTP request/response body as raw binary.
extensionsarrayApplication specific response metadata. Must be set in the first response for streaming APIs.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectexternalShlId, resourceTokenForward 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.

NameDatatypeDescription
externalShlIdstring
resourceTokenstring

SELECT examples

Forward a resource request for a given SHL

SELECT
contentType,
data,
extensions
FROM google.health.r
WHERE externalShlId = '{{ externalShlId }}' -- required
AND resourceToken = '{{ resourceToken }}' -- required
;