Microsoft.MixedReality remoteRenderingAccounts
Bicep resource definition
The remoteRenderingAccounts 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.MixedReality/remoteRenderingAccounts resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.MixedReality/remoteRenderingAccounts@2021-03-01-preview' = {
identity: {
type: 'SystemAssigned'
}
kind: {
capacity: int
family: 'string'
name: 'string'
size: 'string'
tier: 'string'
}
location: 'string'
name: 'string'
plan: {
type: 'SystemAssigned'
}
properties: {
storageAccountName: 'string'
}
sku: {
capacity: int
family: 'string'
name: 'string'
size: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Identity
Name | Description | Value |
---|---|---|
type | The identity type. | 'SystemAssigned' |
Microsoft.MixedReality/remoteRenderingAccounts
Name | Description | Value |
---|---|---|
identity | The identity associated with this account | Identity |
kind | The kind of account, if supported | Sku |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 1 Max length = 90 Pattern = ^[-\w\._\(\)]+$ (required) |
plan | The plan associated with this account | Identity |
properties | Property bag. | MixedRealityAccountProperties |
sku | The sku associated with this account | Sku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
MixedRealityAccountProperties
Name | Description | Value |
---|---|---|
storageAccountName | The name of the storage account associated with this accountId | string |
Sku
Name | Description | Value |
---|---|---|
capacity | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. | int |
family | If the service has different generations of hardware, for the same SKU, then that can be captured here. | string |
name | The name of the SKU. Ex - P3. It is typically a letter+number code | string (required) |
size | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. | string |
tier | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. | 'Basic' 'Free' 'Premium' 'Standard' |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The remoteRenderingAccounts 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.MixedReality/remoteRenderingAccounts resource, add the following JSON to your template.
{
"type": "Microsoft.MixedReality/remoteRenderingAccounts",
"apiVersion": "2021-03-01-preview",
"name": "string",
"identity": {
"type": "SystemAssigned"
},
"kind": {
"capacity": "int",
"family": "string",
"name": "string",
"size": "string",
"tier": "string"
},
"location": "string",
"plan": {
"type": "SystemAssigned"
},
"properties": {
"storageAccountName": "string"
},
"sku": {
"capacity": "int",
"family": "string",
"name": "string",
"size": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Identity
Name | Description | Value |
---|---|---|
type | The identity type. | 'SystemAssigned' |
Microsoft.MixedReality/remoteRenderingAccounts
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2021-03-01-preview' |
identity | The identity associated with this account | Identity |
kind | The kind of account, if supported | Sku |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 1 Max length = 90 Pattern = ^[-\w\._\(\)]+$ (required) |
plan | The plan associated with this account | Identity |
properties | Property bag. | MixedRealityAccountProperties |
sku | The sku associated with this account | Sku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.MixedReality/remoteRenderingAccounts' |
MixedRealityAccountProperties
Name | Description | Value |
---|---|---|
storageAccountName | The name of the storage account associated with this accountId | string |
Sku
Name | Description | Value |
---|---|---|
capacity | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. | int |
family | If the service has different generations of hardware, for the same SKU, then that can be captured here. | string |
name | The name of the SKU. Ex - P3. It is typically a letter+number code | string (required) |
size | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. | string |
tier | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. | 'Basic' 'Free' 'Premium' 'Standard' |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The remoteRenderingAccounts 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.MixedReality/remoteRenderingAccounts resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.MixedReality/remoteRenderingAccounts@2021-03-01-preview"
name = "string"
identity = {
type = "SystemAssigned"
}
kind = {
capacity = int
family = "string"
name = "string"
size = "string"
tier = "string"
}
location = "string"
plan = {
type = "SystemAssigned"
}
sku = {
capacity = int
family = "string"
name = "string"
size = "string"
tier = "string"
}
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
storageAccountName = "string"
}
})
}
Property Values
Identity
Name | Description | Value |
---|---|---|
type | The identity type. | 'SystemAssigned' |
Microsoft.MixedReality/remoteRenderingAccounts
Name | Description | Value |
---|---|---|
identity | The identity associated with this account | Identity |
kind | The kind of account, if supported | Sku |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 1 Max length = 90 Pattern = ^[-\w\._\(\)]+$ (required) |
plan | The plan associated with this account | Identity |
properties | Property bag. | MixedRealityAccountProperties |
sku | The sku associated with this account | Sku |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.MixedReality/remoteRenderingAccounts@2021-03-01-preview" |
MixedRealityAccountProperties
Name | Description | Value |
---|---|---|
storageAccountName | The name of the storage account associated with this accountId | string |
Sku
Name | Description | Value |
---|---|---|
capacity | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. | int |
family | If the service has different generations of hardware, for the same SKU, then that can be captured here. | string |
name | The name of the SKU. Ex - P3. It is typically a letter+number code | string (required) |
size | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. | string |
tier | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. | 'Basic' 'Free' 'Premium' 'Standard' |
TrackedResourceTags
Name | Description | Value |
---|