fhir_destinations
Creates, updates, deletes, gets or lists a fhir_destinations
resource.
Overview
Name | fhir_destinations |
Type | Resource |
Id | azure_extras.healthcare.fhir_destinations |
Fields
Name | Datatype | Description |
---|---|---|
location | string | The resource location. |
properties | object | IoT Connector destination properties for an Azure FHIR service. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_iot_connector | SELECT | iotConnectorName, resourceGroupName, subscriptionId, workspaceName | Lists all FHIR destinations for the given IoT Connector |
SELECT
examples
Lists all FHIR destinations for the given IoT Connector
SELECT
location,
properties,
systemData
FROM azure_extras.healthcare.fhir_destinations
WHERE iotConnectorName = '{{ iotConnectorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';