Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The workspaces resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.HealthcareApis/workspaces resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.HealthcareApis/workspaces@2022-06-01' = {
etag: 'string'
location: 'string'
name: 'string'
properties: {
publicNetworkAccess: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.HealthcareApis/workspaces
Name | Description | Value |
---|---|---|
etag | An etag associated with the resource, used for optimistic concurrency when editing it. | string |
location | The resource location. | string |
name | The resource name | string Constraints: Min length = 3 Max length = 24 (required) |
properties | Workspaces resource specific properties. | WorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ResourceTags
Name | Description | Value |
---|
WorkspaceProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Control permission for data plane traffic coming from public networks while private endpoint is enabled. | 'Disabled' 'Enabled' |
Usage Examples
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
Module | Description |
---|---|
Healthcare API Workspace | AVM Resource Module for Healthcare API Workspace |
Azure Quickstart Samples
The following Azure Quickstart templates contain Bicep samples for deploying this resource type.
Bicep File | Description |
---|---|
Configure FHIR service to enable $import | This template provisions FHIR service to enable $import for initial data loading |
Deploy the MedTech service | The MedTech service is one of the Azure Health Data Services designed to ingest device data from multiple devices, transform the device data into FHIR Observations, which are then persisted in the Azure Health Data Services FHIR service. |
Deploy the MedTech service including an Azure IoT Hub | The MedTech service is one of the Azure Health Data Services designed to ingest device data from multiple devices, transform the device data into FHIR Observations, which are then persisted in the Azure Health Data Services FHIR service. |
ARM template resource definition
The workspaces resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.HealthcareApis/workspaces resource, add the following JSON to your template.
{
"type": "Microsoft.HealthcareApis/workspaces",
"apiVersion": "2022-06-01",
"name": "string",
"etag": "string",
"location": "string",
"properties": {
"publicNetworkAccess": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.HealthcareApis/workspaces
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-06-01' |
etag | An etag associated with the resource, used for optimistic concurrency when editing it. | string |
location | The resource location. | string |
name | The resource name | string Constraints: Min length = 3 Max length = 24 (required) |
properties | Workspaces resource specific properties. | WorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.HealthcareApis/workspaces' |
ResourceTags
Name | Description | Value |
---|
WorkspaceProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Control permission for data plane traffic coming from public networks while private endpoint is enabled. | 'Disabled' 'Enabled' |
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
Template | Description |
---|---|
Configure FHIR service to enable $import |
This template provisions FHIR service to enable $import for initial data loading |
Deploy the MedTech service |
The MedTech service is one of the Azure Health Data Services designed to ingest device data from multiple devices, transform the device data into FHIR Observations, which are then persisted in the Azure Health Data Services FHIR service. |
Deploy the MedTech service including an Azure IoT Hub |
The MedTech service is one of the Azure Health Data Services designed to ingest device data from multiple devices, transform the device data into FHIR Observations, which are then persisted in the Azure Health Data Services FHIR service. |
Terraform (AzAPI provider) resource definition
The workspaces resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.HealthcareApis/workspaces resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.HealthcareApis/workspaces@2022-06-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
etag = "string"
properties = {
publicNetworkAccess = "string"
}
}
}
Property Values
Microsoft.HealthcareApis/workspaces
Name | Description | Value |
---|---|---|
etag | An etag associated with the resource, used for optimistic concurrency when editing it. | string |
location | The resource location. | string |
name | The resource name | string Constraints: Min length = 3 Max length = 24 (required) |
properties | Workspaces resource specific properties. | WorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.HealthcareApis/workspaces@2022-06-01" |
ResourceTags
Name | Description | Value |
---|
WorkspaceProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Control permission for data plane traffic coming from public networks while private endpoint is enabled. | 'Disabled' 'Enabled' |