iot_connector_fhir_destinations
Creates, updates, deletes, gets or lists an iot_connector_fhir_destinations
resource.
Overview
Name | iot_connector_fhir_destinations |
Type | Resource |
Id | azure_extras.healthcare.iot_connector_fhir_destinations |
Fields
The following fields are returned by SELECT
queries:
- get
The request was successful; the request was well-formed and received properly.
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 |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , workspaceName , iotConnectorName , fhirDestinationName | Gets the properties of the specified Iot Connector FHIR destination. | |
create_or_update | insert | resourceGroupName , subscriptionId , workspaceName , iotConnectorName , fhirDestinationName , data__properties | Creates or updates an IoT Connector FHIR destination resource with the specified parameters. | |
delete | delete | subscriptionId , resourceGroupName , workspaceName , iotConnectorName , fhirDestinationName | Deletes 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.
Name | Datatype | Description |
---|---|---|
fhirDestinationName | string | The name of IoT Connector FHIR destination resource. |
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
- get
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
- create_or_update
- Manifest
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
;
# Description fields are for documentation purposes
- name: iot_connector_fhir_destinations
props:
- name: resourceGroupName
value: string
description: Required parameter for the iot_connector_fhir_destinations resource.
- name: subscriptionId
value: string
description: Required parameter for the iot_connector_fhir_destinations resource.
- name: workspaceName
value: string
description: Required parameter for the iot_connector_fhir_destinations resource.
- name: iotConnectorName
value: string
description: Required parameter for the iot_connector_fhir_destinations resource.
- name: fhirDestinationName
value: string
description: Required parameter for the iot_connector_fhir_destinations resource.
- name: location
value: string
description: |
The resource location.
- name: properties
value: object
description: |
IoT FHIR Destination settings.
DELETE
examples
- delete
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
;