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 labaccounts 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.LabServices/labaccounts resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.LabServices/labaccounts@2018-10-15' = {
location: 'string'
name: 'string'
properties: {
enabledRegionSelection: bool
provisioningState: 'string'
uniqueIdentifier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.LabServices/labaccounts
| Name | Description | Value |
|---|---|---|
| location | The location of the resource. | string |
| name | The resource name | string (required) |
| properties | The properties of the resource. | LabAccountProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
LabAccountProperties
| Name | Description | Value |
|---|---|---|
| enabledRegionSelection | Represents if region selection is enabled | bool |
| provisioningState | The provisioning status of the resource. | string |
| uniqueIdentifier | The unique immutable identifier of a resource (Guid). | string |
ResourceTags
| Name | Description | Value |
|---|
ARM template resource definition
The labaccounts 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.LabServices/labaccounts resource, add the following JSON to your template.
{
"type": "Microsoft.LabServices/labaccounts",
"apiVersion": "2018-10-15",
"name": "string",
"location": "string",
"properties": {
"enabledRegionSelection": "bool",
"provisioningState": "string",
"uniqueIdentifier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.LabServices/labaccounts
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2018-10-15' |
| location | The location of the resource. | string |
| name | The resource name | string (required) |
| properties | The properties of the resource. | LabAccountProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Microsoft.LabServices/labaccounts' |
LabAccountProperties
| Name | Description | Value |
|---|---|---|
| enabledRegionSelection | Represents if region selection is enabled | bool |
| provisioningState | The provisioning status of the resource. | string |
| uniqueIdentifier | The unique immutable identifier of a resource (Guid). | string |
ResourceTags
| Name | Description | Value |
|---|
Usage Examples
Terraform (AzAPI provider) resource definition
The labaccounts 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.LabServices/labaccounts resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.LabServices/labaccounts@2018-10-15"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
enabledRegionSelection = bool
provisioningState = "string"
uniqueIdentifier = "string"
}
}
}
Property Values
Microsoft.LabServices/labaccounts
| Name | Description | Value |
|---|---|---|
| location | The location of the resource. | string |
| name | The resource name | string (required) |
| properties | The properties of the resource. | LabAccountProperties |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Microsoft.LabServices/labaccounts@2018-10-15" |
LabAccountProperties
| Name | Description | Value |
|---|---|---|
| enabledRegionSelection | Represents if region selection is enabled | bool |
| provisioningState | The provisioning status of the resource. | string |
| uniqueIdentifier | The unique immutable identifier of a resource (Guid). | string |
ResourceTags
| Name | Description | Value |
|---|