Skip to main content

fhir_destinations

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

Overview

Namefhir_destinations
TypeResource
Idazure_extras.healthcare.fhir_destinations

Fields

The following fields are returned by SELECT queries:

List of IoT Connector FHIR destinations.

NameDatatypeDescription
locationstringThe resource location.
propertiesobjectIoT FHIR Destination settings.
systemDataobjectMetadata pertaining to creation and last modification of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_iot_connectorselectresourceGroupName, subscriptionId, workspaceName, iotConnectorNameLists all FHIR destinations for the given IoT Connector

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
iotConnectorNamestringThe name of IoT Connector resource.
resourceGroupNamestringThe name of the resource group that contains the service instance.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of workspace resource.

SELECT examples

Lists all FHIR destinations for the given IoT Connector

SELECT
location,
properties,
systemData
FROM azure_extras.healthcare.fhir_destinations
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND iotConnectorName = '{{ iotConnectorName }}' -- required
;