Skip to main content

iot_connector_fhir_destinations

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

Overview

Nameiot_connector_fhir_destinations
TypeResource
Idazure_extras.healthcare.iot_connector_fhir_destinations

Fields

NameDatatypeDescription
fhirDestinationNametextfield from the properties object
fhir_mappingtextfield from the properties object
fhir_service_resource_idtextfield from the properties object
iotConnectorNametextfield from the properties object
locationtextThe resource location.
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
resource_identity_resolution_typetextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTfhirDestinationName, iotConnectorName, resourceGroupName, subscriptionId, workspaceNameGets the properties of the specified Iot Connector FHIR destination.
create_or_updateINSERTfhirDestinationName, iotConnectorName, resourceGroupName, subscriptionId, workspaceName, data__propertiesCreates or updates an IoT Connector FHIR destination resource with the specified parameters.
deleteDELETEfhirDestinationName, iotConnectorName, resourceGroupName, subscriptionId, workspaceNameDeletes an IoT Connector FHIR destination.

SELECT examples

Gets the properties of the specified Iot Connector FHIR destination.

SELECT
fhirDestinationName,
fhir_mapping,
fhir_service_resource_id,
iotConnectorName,
location,
provisioning_state,
resourceGroupName,
resource_identity_resolution_type,
subscriptionId,
system_data,
workspaceName
FROM azure_extras.healthcare.vw_iot_connector_fhir_destinations
WHERE fhirDestinationName = '{{ fhirDestinationName }}'
AND iotConnectorName = '{{ iotConnectorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

INSERT example

Use the following StackQL query and manifest file to create a new iot_connector_fhir_destinations resource.

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

DELETE example

Deletes the specified iot_connector_fhir_destinations resource.

/*+ delete */
DELETE FROM azure_extras.healthcare.iot_connector_fhir_destinations
WHERE fhirDestinationName = '{{ fhirDestinationName }}'
AND iotConnectorName = '{{ iotConnectorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';