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 dataBoxEdgeDevices 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.DataBoxEdge/dataBoxEdgeDevices resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-12-01' = {
etag: 'string'
identity: {
type: 'string'
}
location: 'string'
name: 'string'
sku: {
name: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.DataBoxEdge/dataBoxEdgeDevices
Name | Description | Value |
---|---|---|
etag | The etag for the devices. | string |
identity | Msi identity of the resource | ResourceIdentity |
location | The location of the device. This is a supported and registered Azure geographical region (for example, West US, East US, or Southeast Asia). The geographical region of a device cannot be changed once it is created, but if an identical geographical region is specified on update, the request will succeed. | string (required) |
name | The resource name | string (required) |
sku | The SKU type. | Sku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
DataBoxEdgeDeviceTags
Name | Description | Value |
---|
ResourceIdentity
Name | Description | Value |
---|---|---|
type | Identity type | 'None' 'SystemAssigned' 'UserAssigned' |
Sku
Name | Description | Value |
---|---|---|
name | SKU name. | 'Edge' 'EdgeMR_Mini' 'EdgePR_Base' 'EdgePR_Base_UPS' 'EdgeP_Base' 'EdgeP_High' 'Gateway' 'GPU' 'RCA_Large' 'RCA_Small' 'RDC' 'TCA_Large' 'TCA_Small' 'TDC' 'TEA_1Node' 'TEA_1Node_Heater' 'TEA_1Node_UPS' 'TEA_1Node_UPS_Heater' 'TEA_4Node_Heater' 'TEA_4Node_UPS_Heater' 'TMA' |
tier | The SKU tier. This is based on the SKU name. | 'Standard' |
ARM template resource definition
The dataBoxEdgeDevices 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.DataBoxEdge/dataBoxEdgeDevices resource, add the following JSON to your template.
{
"type": "Microsoft.DataBoxEdge/dataBoxEdgeDevices",
"apiVersion": "2020-12-01",
"name": "string",
"etag": "string",
"identity": {
"type": "string"
},
"location": "string",
"sku": {
"name": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.DataBoxEdge/dataBoxEdgeDevices
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2020-12-01' |
etag | The etag for the devices. | string |
identity | Msi identity of the resource | ResourceIdentity |
location | The location of the device. This is a supported and registered Azure geographical region (for example, West US, East US, or Southeast Asia). The geographical region of a device cannot be changed once it is created, but if an identical geographical region is specified on update, the request will succeed. | string (required) |
name | The resource name | string (required) |
sku | The SKU type. | Sku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.DataBoxEdge/dataBoxEdgeDevices' |
DataBoxEdgeDeviceTags
Name | Description | Value |
---|
ResourceIdentity
Name | Description | Value |
---|---|---|
type | Identity type | 'None' 'SystemAssigned' 'UserAssigned' |
Sku
Name | Description | Value |
---|---|---|
name | SKU name. | 'Edge' 'EdgeMR_Mini' 'EdgePR_Base' 'EdgePR_Base_UPS' 'EdgeP_Base' 'EdgeP_High' 'Gateway' 'GPU' 'RCA_Large' 'RCA_Small' 'RDC' 'TCA_Large' 'TCA_Small' 'TDC' 'TEA_1Node' 'TEA_1Node_Heater' 'TEA_1Node_UPS' 'TEA_1Node_UPS_Heater' 'TEA_4Node_Heater' 'TEA_4Node_UPS_Heater' 'TMA' |
tier | The SKU tier. This is based on the SKU name. | 'Standard' |
Usage Examples
Terraform (AzAPI provider) resource definition
The dataBoxEdgeDevices 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.DataBoxEdge/dataBoxEdgeDevices resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-12-01"
name = "string"
parent_id = "string"
identity {
type = "string"
identity_ids = [
"string"
]
}
location = "string"
tags = {
{customized property} = "string"
}
body = {
etag = "string"
sku = {
name = "string"
tier = "string"
}
}
}
Property Values
Microsoft.DataBoxEdge/dataBoxEdgeDevices
Name | Description | Value |
---|---|---|
etag | The etag for the devices. | string |
identity | Msi identity of the resource | ResourceIdentity |
location | The location of the device. This is a supported and registered Azure geographical region (for example, West US, East US, or Southeast Asia). The geographical region of a device cannot be changed once it is created, but if an identical geographical region is specified on update, the request will succeed. | string (required) |
name | The resource name | string (required) |
sku | The SKU type. | Sku |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-12-01" |
DataBoxEdgeDeviceTags
Name | Description | Value |
---|
ResourceIdentity
Name | Description | Value |
---|---|---|
type | Identity type | 'None' 'SystemAssigned' 'UserAssigned' |
Sku
Name | Description | Value |
---|---|---|
name | SKU name. | 'Edge' 'EdgeMR_Mini' 'EdgePR_Base' 'EdgePR_Base_UPS' 'EdgeP_Base' 'EdgeP_High' 'Gateway' 'GPU' 'RCA_Large' 'RCA_Small' 'RDC' 'TCA_Large' 'TCA_Small' 'TDC' 'TEA_1Node' 'TEA_1Node_Heater' 'TEA_1Node_UPS' 'TEA_1Node_UPS_Heater' 'TEA_4Node_Heater' 'TEA_4Node_UPS_Heater' 'TMA' |
tier | The SKU tier. This is based on the SKU name. | 'Standard' |