fhir_destinations
Creates, updates, deletes, gets or lists a fhir_destinations resource.
Overview
| Name | fhir_destinations |
| Type | Resource |
| Id | azure_extras.health_data_services.fhir_destinations |
Fields
The following fields are returned by SELECT queries:
- list_by_iot_connector
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
etag | string | An etag associated with the resource, used for optimistic concurrency when editing it. |
fhirMapping | object | FHIR Mappings. Required. |
fhirServiceResourceId | string | Fully qualified resource id of the FHIR service to connect to. Required. |
location | string | The resource location. |
provisioningState | string | The provisioning state. Known values are: "Deleting", "Succeeded", "Creating", "Accepted", "Verifying", "Updating", "Failed", "Canceled", "Deprovisioned", "Moving", "Suspended", "Warned", and "SystemMaintenance". (Deleting, Succeeded, Creating, Accepted, Verifying, Updating, Failed, Canceled, Deprovisioned, Moving, Suspended, Warned, SystemMaintenance) |
resourceIdentityResolutionType | string | Determines how resource identity is resolved on the destination. Required. Known values are: "Create" and "Lookup". (Create, Lookup) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_iot_connector | select | resource_group_name, workspace_name, iot_connector_name, subscription_id | 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 |
|---|---|---|
iot_connector_name | string | The name of IoT Connector resource. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
workspace_name | string | The name of workspace resource. Required. |
SELECT examples
- list_by_iot_connector
Lists all FHIR destinations for the given IoT Connector.
SELECT
id,
name,
etag,
fhirMapping,
fhirServiceResourceId,
location,
provisioningState,
resourceIdentityResolutionType,
systemData,
type
FROM azure_extras.health_data_services.fhir_destinations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND iot_connector_name = '{{ iot_connector_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;