m_shl_manifest
Creates, updates, deletes, gets or lists a m_shl_manifest resource.
Overview
| Name | m_shl_manifest |
| Type | Resource |
| Id | google.health.m_shl_manifest |
Fields
The following fields are returned by SELECT queries:
- get_shl_manifest
| 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_shl_manifest | select | externalShlId | Forward 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.
| Name | Datatype | Description |
|---|---|---|
externalShlId | string |
SELECT examples
- get_shl_manifest
Forward a manifest request for a given SHL
SELECT
contentType,
data,
extensions
FROM google.health.m_shl_manifest
WHERE externalShlId = '{{ externalShlId }}' -- required
;