fhir_services
Creates, updates, deletes, gets or lists a fhir_services
resource.
Overview
Name | fhir_services |
Type | Resource |
Id | azure_extras.healthcare.fhir_services |
Fields
- vw_fhir_services
- fhir_services
Name | Datatype | Description |
---|---|---|
acr_configuration | text | field from the properties object |
authentication_configuration | text | field from the properties object |
cors_configuration | text | field from the properties object |
encryption | text | field from the properties object |
event_state | text | field from the properties object |
export_configuration | text | field from the properties object |
fhirServiceName | text | field from the properties object |
identity | text | Setting indicating whether the service has a managed identity associated with it. |
implementation_guides_configuration | text | field from the properties object |
import_configuration | text | field from the properties object |
kind | text | The kind of the service. |
private_endpoint_connections | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_network_access | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_version_policy_configuration | 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 |
---|---|---|
identity | object | Setting indicating whether the service has a managed identity associated with it. |
kind | string | The kind of the service. |
properties | object | Fhir Service properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fhirServiceName, resourceGroupName, subscriptionId, workspaceName | Gets the properties of the specified FHIR Service. |
list_by_workspace | SELECT | resourceGroupName, subscriptionId, workspaceName | Lists all FHIR Services for the given workspace |
create_or_update | INSERT | fhirServiceName, resourceGroupName, subscriptionId, workspaceName | Creates or updates a FHIR Service resource with the specified parameters. |
delete | DELETE | fhirServiceName, resourceGroupName, subscriptionId, workspaceName | Deletes a FHIR Service. |
update | UPDATE | fhirServiceName, resourceGroupName, subscriptionId, workspaceName | Patch FHIR Service details. |
SELECT
examples
Lists all FHIR Services for the given workspace
- vw_fhir_services
- fhir_services
SELECT
acr_configuration,
authentication_configuration,
cors_configuration,
encryption,
event_state,
export_configuration,
fhirServiceName,
identity,
implementation_guides_configuration,
import_configuration,
kind,
private_endpoint_connections,
provisioning_state,
public_network_access,
resourceGroupName,
resource_version_policy_configuration,
subscriptionId,
system_data,
workspaceName
FROM azure_extras.healthcare.vw_fhir_services
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
identity,
kind,
properties,
systemData
FROM azure_extras.healthcare.fhir_services
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new fhir_services
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_extras.healthcare.fhir_services (
fhirServiceName,
resourceGroupName,
subscriptionId,
workspaceName,
identity,
kind,
properties,
systemData
)
SELECT
'{{ fhirServiceName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ identity }}',
'{{ kind }}',
'{{ properties }}',
'{{ systemData }}'
;
- name: your_resource_model_name
props:
- name: identity
value:
- name: type
value: string
- name: principalId
value: string
- name: tenantId
value: string
- name: userAssignedIdentities
value: []
- name: kind
value: string
- name: properties
value:
- name: provisioningState
value: []
- name: acrConfiguration
value:
- name: loginServers
value:
- string
- name: ociArtifacts
value:
- - name: loginServer
value: string
- name: imageName
value: string
- name: digest
value: string
- name: authenticationConfiguration
value:
- name: authority
value: string
- name: audience
value: string
- name: smartProxyEnabled
value: boolean
- name: smartIdentityProviders
value:
- - name: authority
value: string
- name: applications
value:
- - name: clientId
value: string
- name: audience
value: string
- name: allowedDataActions
value:
- []
- name: corsConfiguration
value:
- name: origins
value:
- []
- name: headers
value:
- []
- name: methods
value:
- []
- name: maxAge
value: integer
- name: allowCredentials
value: boolean
- name: exportConfiguration
value:
- name: storageAccountName
value: string
- name: privateEndpointConnections
value:
- - name: properties
value:
- name: privateEndpoint
value:
- name: id
value: string
- name: privateLinkServiceConnectionState
value:
- name: status
value: []
- name: description
value: string
- name: actionsRequired
value: string
- name: provisioningState
value: []
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: publicNetworkAccess
value: []
- name: eventState
value: []
- name: resourceVersionPolicyConfiguration
value:
- name: default
value: []
- name: resourceTypeOverrides
value: object
- name: importConfiguration
value:
- name: integrationDataStore
value: string
- name: initialImportMode
value: boolean
- name: enabled
value: boolean
- name: implementationGuidesConfiguration
value:
- name: usCoreMissingData
value: boolean
- name: encryption
value:
- name: customerManagedKeyEncryption
value:
- name: keyEncryptionKeyUrl
value: string
- 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
UPDATE
example
Updates a fhir_services
resource.
/*+ update */
UPDATE azure_extras.healthcare.fhir_services
SET
tags = '{{ tags }}',
identity = '{{ identity }}'
WHERE
fhirServiceName = '{{ fhirServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
DELETE
example
Deletes the specified fhir_services
resource.
/*+ delete */
DELETE FROM azure_extras.healthcare.fhir_services
WHERE fhirServiceName = '{{ fhirServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';