Microsoft.DevTestLab labs/virtualnetworks 2015-05-21-preview
Bicep resource definition
The labs/virtualnetworks 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.DevTestLab/labs/virtualnetworks resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
parent: resourceSymbolicName
properties: {
allowedSubnets: [
{
allowPublicIp: 'string'
labSubnetName: 'string'
resourceId: 'string'
}
]
description: 'string'
externalProviderResourceId: 'string'
provisioningState: 'string'
subnetOverrides: [
{
labSubnetName: 'string'
resourceId: 'string'
useInVmCreationPermission: 'string'
usePublicIpAddressPermission: 'string'
}
]
}
}
Property values
labs/virtualnetworks
Name | Description | Value |
---|---|---|
name | The resource name See how to set names and types for child resources in Bicep. |
string (required) |
location | The location of the resource. | string |
tags | The tags of the resource. | Dictionary of tag names and values. See Tags in templates |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: labs |
properties | The properties of the resource. | VirtualNetworkProperties |
VirtualNetworkProperties
Name | Description | Value |
---|---|---|
allowedSubnets | The allowed subnets of the virtual network. | Subnet[] |
description | The description of the virtual network. | string |
externalProviderResourceId | The Microsoft.Network resource identifier of the virtual network. | string |
provisioningState | The provisioning status of the resource. | string |
subnetOverrides | The subnet overrides of the virtual network. | SubnetOverride[] |
Subnet
Name | Description | Value |
---|---|---|
allowPublicIp | 'Allow' 'Default' 'Deny' |
|
labSubnetName | string | |
resourceId | string |
SubnetOverride
Name | Description | Value |
---|---|---|
labSubnetName | The name given to the subnet within the lab. | string |
resourceId | The resource identifier of the subnet. | string |
useInVmCreationPermission | Indicates whether this subnet can be used during virtual machine creation. | 'Allow' 'Default' 'Deny' |
usePublicIpAddressPermission | Indicates whether public IP addresses can be assigned to virtual machines on this subnet. | 'Allow' 'Default' 'Deny' |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Creates a lab in Azure DevTest Labs with a Windows Server VM |
This template creates a new DevTest Lab / DTL instance with a Windows Server 2019 Datacenter VM in it. More Azure Resource Manager Quickstart Templates for Azure DevTest Labs available at https://github.com/Azure/azure-devtestlab/tree/master/ARMTemplates |
Creates a lab in Azure DevTest Labs with a claimed VM |
This template creates a new DevTest Lab / DTL instance with a claimed Windows Server 2019 Datacenter VM in it. More Azure Resource Manager Quickstart Templates for Azure DevTest Labs available at https://github.com/Azure/azure-devtestlab/tree/master/ARMTemplates |
ARM template resource definition
The labs/virtualnetworks 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.DevTestLab/labs/virtualnetworks resource, add the following JSON to your template.
{
"type": "Microsoft.DevTestLab/labs/virtualnetworks",
"apiVersion": "2015-05-21-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"allowedSubnets": [
{
"allowPublicIp": "string",
"labSubnetName": "string",
"resourceId": "string"
}
],
"description": "string",
"externalProviderResourceId": "string",
"provisioningState": "string",
"subnetOverrides": [
{
"labSubnetName": "string",
"resourceId": "string",
"useInVmCreationPermission": "string",
"usePublicIpAddressPermission": "string"
}
]
}
}
Property values
labs/virtualnetworks
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.DevTestLab/labs/virtualnetworks' |
apiVersion | The resource api version | '2015-05-21-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
location | The location of the resource. | string |
tags | The tags of the resource. | Dictionary of tag names and values. See Tags in templates |
properties | The properties of the resource. | VirtualNetworkProperties |
VirtualNetworkProperties
Name | Description | Value |
---|---|---|
allowedSubnets | The allowed subnets of the virtual network. | Subnet[] |
description | The description of the virtual network. | string |
externalProviderResourceId | The Microsoft.Network resource identifier of the virtual network. | string |
provisioningState | The provisioning status of the resource. | string |
subnetOverrides | The subnet overrides of the virtual network. | SubnetOverride[] |
Subnet
Name | Description | Value |
---|---|---|
allowPublicIp | 'Allow' 'Default' 'Deny' |
|
labSubnetName | string | |
resourceId | string |
SubnetOverride
Name | Description | Value |
---|---|---|
labSubnetName | The name given to the subnet within the lab. | string |
resourceId | The resource identifier of the subnet. | string |
useInVmCreationPermission | Indicates whether this subnet can be used during virtual machine creation. | 'Allow' 'Default' 'Deny' |
usePublicIpAddressPermission | Indicates whether public IP addresses can be assigned to virtual machines on this subnet. | 'Allow' 'Default' 'Deny' |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Creates a lab in Azure DevTest Labs with a Windows Server VM |
This template creates a new DevTest Lab / DTL instance with a Windows Server 2019 Datacenter VM in it. More Azure Resource Manager Quickstart Templates for Azure DevTest Labs available at https://github.com/Azure/azure-devtestlab/tree/master/ARMTemplates |
Creates a lab in Azure DevTest Labs with a claimed VM |
This template creates a new DevTest Lab / DTL instance with a claimed Windows Server 2019 Datacenter VM in it. More Azure Resource Manager Quickstart Templates for Azure DevTest Labs available at https://github.com/Azure/azure-devtestlab/tree/master/ARMTemplates |
Terraform (AzAPI provider) resource definition
The labs/virtualnetworks 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.DevTestLab/labs/virtualnetworks resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
allowedSubnets = [
{
allowPublicIp = "string"
labSubnetName = "string"
resourceId = "string"
}
]
description = "string"
externalProviderResourceId = "string"
provisioningState = "string"
subnetOverrides = [
{
labSubnetName = "string"
resourceId = "string"
useInVmCreationPermission = "string"
usePublicIpAddressPermission = "string"
}
]
}
})
}
Property values
labs/virtualnetworks
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview" |
name | The resource name | string (required) |
location | The location of the resource. | string |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: labs |
tags | The tags of the resource. | Dictionary of tag names and values. |
properties | The properties of the resource. | VirtualNetworkProperties |
VirtualNetworkProperties
Name | Description | Value |
---|---|---|
allowedSubnets | The allowed subnets of the virtual network. | Subnet[] |
description | The description of the virtual network. | string |
externalProviderResourceId | The Microsoft.Network resource identifier of the virtual network. | string |
provisioningState | The provisioning status of the resource. | string |
subnetOverrides | The subnet overrides of the virtual network. | SubnetOverride[] |
Subnet
Name | Description | Value |
---|---|---|
allowPublicIp | "Allow" "Default" "Deny" |
|
labSubnetName | string | |
resourceId | string |
SubnetOverride
Name | Description | Value |
---|---|---|
labSubnetName | The name given to the subnet within the lab. | string |
resourceId | The resource identifier of the subnet. | string |
useInVmCreationPermission | Indicates whether this subnet can be used during virtual machine creation. | "Allow" "Default" "Deny" |
usePublicIpAddressPermission | Indicates whether public IP addresses can be assigned to virtual machines on this subnet. | "Allow" "Default" "Deny" |