Skip to main content

m_shl_manifest

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

Overview

Namem_shl_manifest
TypeResource
Idgoogle.health.m_shl_manifest

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
get_shl_manifestselectexternalShlIdForward a manifest 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

SELECT examples

Forward a manifest request for a given SHL

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