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
The following fields are returned by SELECT
queries:
- list_by_iot_connector
List of IoT Connector FHIR destinations.
Name | Datatype | Description |
---|---|---|
location | string | The resource location. |
properties | object | IoT FHIR Destination settings. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_iot_connector | select | resourceGroupName , subscriptionId , workspaceName , iotConnectorName | Lists 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.
Name | Datatype | Description |
---|---|---|
iotConnectorName | string | The name of IoT Connector resource. |
resourceGroupName | string | The name of the resource group that contains the service instance. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of workspace resource. |
SELECT
examples
- list_by_iot_connector
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
;