iot_connector_fhir_destinations
Creates, updates, deletes, gets or lists a iot_connector_fhir_destinations
resource.
Overview
Name | iot_connector_fhir_destinations |
Type | Resource |
Id | azure_extras.healthcare.iot_connector_fhir_destinations |
Fields
- vw_iot_connector_fhir_destinations
- iot_connector_fhir_destinations
Name | Datatype | Description |
---|---|---|
fhirDestinationName | text | field from the properties object |
fhir_mapping | text | field from the properties object |
fhir_service_resource_id | text | field from the properties object |
iotConnectorName | text | field from the properties object |
location | text | The resource location. |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_identity_resolution_type | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
workspaceName | text | field from the properties object |
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 |
---|---|---|---|
get | SELECT | fhirDestinationName, iotConnectorName, resourceGroupName, subscriptionId, workspaceName | Gets the properties of the specified Iot Connector FHIR destination. |
create_or_update | INSERT | fhirDestinationName, iotConnectorName, resourceGroupName, subscriptionId, workspaceName, data__properties | Creates or updates an IoT Connector FHIR destination resource with the specified parameters. |
delete | DELETE | fhirDestinationName, iotConnectorName, resourceGroupName, subscriptionId, workspaceName | Deletes an IoT Connector FHIR destination. |
SELECT
examples
Gets the properties of the specified Iot Connector FHIR destination.
- vw_iot_connector_fhir_destinations
- iot_connector_fhir_destinations
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 }}';
SELECT
location,
properties,
systemData
FROM azure_extras.healthcare.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.
- All Properties
- Manifest
/*+ 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 }}'
;
- name: your_resource_model_name
props:
- name: location
value: string
- name: properties
value:
- name: provisioningState
value: []
- name: resourceIdentityResolutionType
value: []
- name: fhirServiceResourceId
value: string
- name: fhirMapping
value:
- name: content
value: object
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
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 }}';