Skip to main content

iot_connector_fhir_destinations

Creates, updates, deletes, gets or lists an iot_connector_fhir_destinations resource.

Overview

Nameiot_connector_fhir_destinations
TypeResource
Idazure_extras.healthcare.iot_connector_fhir_destinations

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

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
getselectresourceGroupName, subscriptionId, workspaceName, iotConnectorName, fhirDestinationNameGets the properties of the specified Iot Connector FHIR destination.
create_or_updateinsertresourceGroupName, subscriptionId, workspaceName, iotConnectorName, fhirDestinationName, data__propertiesCreates or updates an IoT Connector FHIR destination resource with the specified parameters.
deletedeletesubscriptionId, resourceGroupName, workspaceName, iotConnectorName, fhirDestinationNameDeletes an IoT Connector FHIR destination.

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
fhirDestinationNamestringThe name of IoT Connector FHIR destination resource.
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

Gets the properties of the specified Iot Connector FHIR destination.

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

INSERT examples

Creates or updates an IoT Connector FHIR destination resource with the specified parameters.

INSERT INTO azure_extras.healthcare.iot_connector_fhir_destinations (
data__location,
data__properties,
resourceGroupName,
subscriptionId,
workspaceName,
iotConnectorName,
fhirDestinationName
)
SELECT
'{{ location }}',
'{{ properties }}' /* required */,
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ iotConnectorName }}',
'{{ fhirDestinationName }}'
RETURNING
location,
properties,
systemData
;

DELETE examples

Deletes an IoT Connector FHIR destination.

DELETE FROM azure_extras.healthcare.iot_connector_fhir_destinations
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
AND iotConnectorName = '{{ iotConnectorName }}' --required
AND fhirDestinationName = '{{ fhirDestinationName }}' --required
;