1. Packages
  2. Azure Native
  3. API Docs
  4. devcenter
  5. Pool
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.devcenter.Pool

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

A pool of Virtual Machines.

Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.

Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native devcenter [ApiVersion]. See the version guide for details.

Example Usage

Pools_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var pool = new AzureNative.DevCenter.Pool("pool", new()
    {
        DevBoxDefinitionName = "WebDevBox",
        DisplayName = "Developer Pool",
        LicenseType = AzureNative.DevCenter.LicenseType.Windows_Client,
        LocalAdministrator = AzureNative.DevCenter.LocalAdminStatus.Enabled,
        Location = "centralus",
        NetworkConnectionName = "Network1-westus2",
        PoolName = "DevPool",
        ProjectName = "DevProject",
        ResourceGroupName = "rg1",
        SingleSignOnStatus = AzureNative.DevCenter.SingleSignOnStatus.Disabled,
        StopOnDisconnect = new AzureNative.DevCenter.Inputs.StopOnDisconnectConfigurationArgs
        {
            GracePeriodMinutes = 60,
            Status = AzureNative.DevCenter.StopOnDisconnectEnableStatus.Enabled,
        },
        VirtualNetworkType = AzureNative.DevCenter.VirtualNetworkType.Unmanaged,
    });

});
Copy
package main

import (
	devcenter "github.com/pulumi/pulumi-azure-native-sdk/devcenter/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devcenter.NewPool(ctx, "pool", &devcenter.PoolArgs{
			DevBoxDefinitionName:  pulumi.String("WebDevBox"),
			DisplayName:           pulumi.String("Developer Pool"),
			LicenseType:           pulumi.String(devcenter.LicenseType_Windows_Client),
			LocalAdministrator:    pulumi.String(devcenter.LocalAdminStatusEnabled),
			Location:              pulumi.String("centralus"),
			NetworkConnectionName: pulumi.String("Network1-westus2"),
			PoolName:              pulumi.String("DevPool"),
			ProjectName:           pulumi.String("DevProject"),
			ResourceGroupName:     pulumi.String("rg1"),
			SingleSignOnStatus:    pulumi.String(devcenter.SingleSignOnStatusDisabled),
			StopOnDisconnect: &devcenter.StopOnDisconnectConfigurationArgs{
				GracePeriodMinutes: pulumi.Int(60),
				Status:             pulumi.String(devcenter.StopOnDisconnectEnableStatusEnabled),
			},
			VirtualNetworkType: pulumi.String(devcenter.VirtualNetworkTypeUnmanaged),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.devcenter.Pool;
import com.pulumi.azurenative.devcenter.PoolArgs;
import com.pulumi.azurenative.devcenter.inputs.StopOnDisconnectConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var pool = new Pool("pool", PoolArgs.builder()
            .devBoxDefinitionName("WebDevBox")
            .displayName("Developer Pool")
            .licenseType("Windows_Client")
            .localAdministrator("Enabled")
            .location("centralus")
            .networkConnectionName("Network1-westus2")
            .poolName("DevPool")
            .projectName("DevProject")
            .resourceGroupName("rg1")
            .singleSignOnStatus("Disabled")
            .stopOnDisconnect(StopOnDisconnectConfigurationArgs.builder()
                .gracePeriodMinutes(60)
                .status("Enabled")
                .build())
            .virtualNetworkType("Unmanaged")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const pool = new azure_native.devcenter.Pool("pool", {
    devBoxDefinitionName: "WebDevBox",
    displayName: "Developer Pool",
    licenseType: azure_native.devcenter.LicenseType.Windows_Client,
    localAdministrator: azure_native.devcenter.LocalAdminStatus.Enabled,
    location: "centralus",
    networkConnectionName: "Network1-westus2",
    poolName: "DevPool",
    projectName: "DevProject",
    resourceGroupName: "rg1",
    singleSignOnStatus: azure_native.devcenter.SingleSignOnStatus.Disabled,
    stopOnDisconnect: {
        gracePeriodMinutes: 60,
        status: azure_native.devcenter.StopOnDisconnectEnableStatus.Enabled,
    },
    virtualNetworkType: azure_native.devcenter.VirtualNetworkType.Unmanaged,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

pool = azure_native.devcenter.Pool("pool",
    dev_box_definition_name="WebDevBox",
    display_name="Developer Pool",
    license_type=azure_native.devcenter.LicenseType.WINDOWS_CLIENT,
    local_administrator=azure_native.devcenter.LocalAdminStatus.ENABLED,
    location="centralus",
    network_connection_name="Network1-westus2",
    pool_name="DevPool",
    project_name="DevProject",
    resource_group_name="rg1",
    single_sign_on_status=azure_native.devcenter.SingleSignOnStatus.DISABLED,
    stop_on_disconnect={
        "grace_period_minutes": 60,
        "status": azure_native.devcenter.StopOnDisconnectEnableStatus.ENABLED,
    },
    virtual_network_type=azure_native.devcenter.VirtualNetworkType.UNMANAGED)
Copy
resources:
  pool:
    type: azure-native:devcenter:Pool
    properties:
      devBoxDefinitionName: WebDevBox
      displayName: Developer Pool
      licenseType: Windows_Client
      localAdministrator: Enabled
      location: centralus
      networkConnectionName: Network1-westus2
      poolName: DevPool
      projectName: DevProject
      resourceGroupName: rg1
      singleSignOnStatus: Disabled
      stopOnDisconnect:
        gracePeriodMinutes: 60
        status: Enabled
      virtualNetworkType: Unmanaged
Copy

Pools_CreateOrUpdateWithManagedNetwork

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var pool = new AzureNative.DevCenter.Pool("pool", new()
    {
        DevBoxDefinitionName = "WebDevBox",
        DisplayName = "Developer Pool",
        LicenseType = AzureNative.DevCenter.LicenseType.Windows_Client,
        LocalAdministrator = AzureNative.DevCenter.LocalAdminStatus.Enabled,
        Location = "centralus",
        ManagedVirtualNetworkRegions = new[]
        {
            "centralus",
        },
        NetworkConnectionName = "managedNetwork",
        PoolName = "DevPool",
        ProjectName = "DevProject",
        ResourceGroupName = "rg1",
        SingleSignOnStatus = AzureNative.DevCenter.SingleSignOnStatus.Disabled,
        StopOnDisconnect = new AzureNative.DevCenter.Inputs.StopOnDisconnectConfigurationArgs
        {
            GracePeriodMinutes = 60,
            Status = AzureNative.DevCenter.StopOnDisconnectEnableStatus.Enabled,
        },
        VirtualNetworkType = AzureNative.DevCenter.VirtualNetworkType.Managed,
    });

});
Copy
package main

import (
	devcenter "github.com/pulumi/pulumi-azure-native-sdk/devcenter/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devcenter.NewPool(ctx, "pool", &devcenter.PoolArgs{
			DevBoxDefinitionName: pulumi.String("WebDevBox"),
			DisplayName:          pulumi.String("Developer Pool"),
			LicenseType:          pulumi.String(devcenter.LicenseType_Windows_Client),
			LocalAdministrator:   pulumi.String(devcenter.LocalAdminStatusEnabled),
			Location:             pulumi.String("centralus"),
			ManagedVirtualNetworkRegions: pulumi.StringArray{
				pulumi.String("centralus"),
			},
			NetworkConnectionName: pulumi.String("managedNetwork"),
			PoolName:              pulumi.String("DevPool"),
			ProjectName:           pulumi.String("DevProject"),
			ResourceGroupName:     pulumi.String("rg1"),
			SingleSignOnStatus:    pulumi.String(devcenter.SingleSignOnStatusDisabled),
			StopOnDisconnect: &devcenter.StopOnDisconnectConfigurationArgs{
				GracePeriodMinutes: pulumi.Int(60),
				Status:             pulumi.String(devcenter.StopOnDisconnectEnableStatusEnabled),
			},
			VirtualNetworkType: pulumi.String(devcenter.VirtualNetworkTypeManaged),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.devcenter.Pool;
import com.pulumi.azurenative.devcenter.PoolArgs;
import com.pulumi.azurenative.devcenter.inputs.StopOnDisconnectConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var pool = new Pool("pool", PoolArgs.builder()
            .devBoxDefinitionName("WebDevBox")
            .displayName("Developer Pool")
            .licenseType("Windows_Client")
            .localAdministrator("Enabled")
            .location("centralus")
            .managedVirtualNetworkRegions("centralus")
            .networkConnectionName("managedNetwork")
            .poolName("DevPool")
            .projectName("DevProject")
            .resourceGroupName("rg1")
            .singleSignOnStatus("Disabled")
            .stopOnDisconnect(StopOnDisconnectConfigurationArgs.builder()
                .gracePeriodMinutes(60)
                .status("Enabled")
                .build())
            .virtualNetworkType("Managed")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const pool = new azure_native.devcenter.Pool("pool", {
    devBoxDefinitionName: "WebDevBox",
    displayName: "Developer Pool",
    licenseType: azure_native.devcenter.LicenseType.Windows_Client,
    localAdministrator: azure_native.devcenter.LocalAdminStatus.Enabled,
    location: "centralus",
    managedVirtualNetworkRegions: ["centralus"],
    networkConnectionName: "managedNetwork",
    poolName: "DevPool",
    projectName: "DevProject",
    resourceGroupName: "rg1",
    singleSignOnStatus: azure_native.devcenter.SingleSignOnStatus.Disabled,
    stopOnDisconnect: {
        gracePeriodMinutes: 60,
        status: azure_native.devcenter.StopOnDisconnectEnableStatus.Enabled,
    },
    virtualNetworkType: azure_native.devcenter.VirtualNetworkType.Managed,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

pool = azure_native.devcenter.Pool("pool",
    dev_box_definition_name="WebDevBox",
    display_name="Developer Pool",
    license_type=azure_native.devcenter.LicenseType.WINDOWS_CLIENT,
    local_administrator=azure_native.devcenter.LocalAdminStatus.ENABLED,
    location="centralus",
    managed_virtual_network_regions=["centralus"],
    network_connection_name="managedNetwork",
    pool_name="DevPool",
    project_name="DevProject",
    resource_group_name="rg1",
    single_sign_on_status=azure_native.devcenter.SingleSignOnStatus.DISABLED,
    stop_on_disconnect={
        "grace_period_minutes": 60,
        "status": azure_native.devcenter.StopOnDisconnectEnableStatus.ENABLED,
    },
    virtual_network_type=azure_native.devcenter.VirtualNetworkType.MANAGED)
Copy
resources:
  pool:
    type: azure-native:devcenter:Pool
    properties:
      devBoxDefinitionName: WebDevBox
      displayName: Developer Pool
      licenseType: Windows_Client
      localAdministrator: Enabled
      location: centralus
      managedVirtualNetworkRegions:
        - centralus
      networkConnectionName: managedNetwork
      poolName: DevPool
      projectName: DevProject
      resourceGroupName: rg1
      singleSignOnStatus: Disabled
      stopOnDisconnect:
        gracePeriodMinutes: 60
        status: Enabled
      virtualNetworkType: Managed
Copy

Create Pool Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
@overload
def Pool(resource_name: str,
         args: PoolArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def Pool(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         network_connection_name: Optional[str] = None,
         project_name: Optional[str] = None,
         license_type: Optional[Union[str, LicenseType]] = None,
         local_administrator: Optional[Union[str, LocalAdminStatus]] = None,
         resource_group_name: Optional[str] = None,
         dev_box_definition_name: Optional[str] = None,
         tags: Optional[Mapping[str, str]] = None,
         managed_virtual_network_regions: Optional[Sequence[str]] = None,
         display_name: Optional[str] = None,
         location: Optional[str] = None,
         single_sign_on_status: Optional[Union[str, SingleSignOnStatus]] = None,
         stop_on_disconnect: Optional[StopOnDisconnectConfigurationArgs] = None,
         pool_name: Optional[str] = None,
         virtual_network_type: Optional[Union[str, VirtualNetworkType]] = None)
func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
public Pool(String name, PoolArgs args)
public Pool(String name, PoolArgs args, CustomResourceOptions options)
type: azure-native:devcenter:Pool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var examplepoolResourceResourceFromDevcenter = new AzureNative.DevCenter.Pool("examplepoolResourceResourceFromDevcenter", new()
{
    NetworkConnectionName = "string",
    ProjectName = "string",
    LicenseType = "string",
    LocalAdministrator = "string",
    ResourceGroupName = "string",
    DevBoxDefinitionName = "string",
    Tags = 
    {
        { "string", "string" },
    },
    ManagedVirtualNetworkRegions = new[]
    {
        "string",
    },
    DisplayName = "string",
    Location = "string",
    SingleSignOnStatus = "string",
    StopOnDisconnect = new AzureNative.DevCenter.Inputs.StopOnDisconnectConfigurationArgs
    {
        GracePeriodMinutes = 0,
        Status = "string",
    },
    PoolName = "string",
    VirtualNetworkType = "string",
});
Copy
example, err := devcenter.NewPool(ctx, "examplepoolResourceResourceFromDevcenter", &devcenter.PoolArgs{
	NetworkConnectionName: pulumi.String("string"),
	ProjectName:           pulumi.String("string"),
	LicenseType:           pulumi.String("string"),
	LocalAdministrator:    pulumi.String("string"),
	ResourceGroupName:     pulumi.String("string"),
	DevBoxDefinitionName:  pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ManagedVirtualNetworkRegions: pulumi.StringArray{
		pulumi.String("string"),
	},
	DisplayName:        pulumi.String("string"),
	Location:           pulumi.String("string"),
	SingleSignOnStatus: pulumi.String("string"),
	StopOnDisconnect: &devcenter.StopOnDisconnectConfigurationArgs{
		GracePeriodMinutes: pulumi.Int(0),
		Status:             pulumi.String("string"),
	},
	PoolName:           pulumi.String("string"),
	VirtualNetworkType: pulumi.String("string"),
})
Copy
var examplepoolResourceResourceFromDevcenter = new Pool("examplepoolResourceResourceFromDevcenter", PoolArgs.builder()
    .networkConnectionName("string")
    .projectName("string")
    .licenseType("string")
    .localAdministrator("string")
    .resourceGroupName("string")
    .devBoxDefinitionName("string")
    .tags(Map.of("string", "string"))
    .managedVirtualNetworkRegions("string")
    .displayName("string")
    .location("string")
    .singleSignOnStatus("string")
    .stopOnDisconnect(StopOnDisconnectConfigurationArgs.builder()
        .gracePeriodMinutes(0)
        .status("string")
        .build())
    .poolName("string")
    .virtualNetworkType("string")
    .build());
Copy
examplepool_resource_resource_from_devcenter = azure_native.devcenter.Pool("examplepoolResourceResourceFromDevcenter",
    network_connection_name="string",
    project_name="string",
    license_type="string",
    local_administrator="string",
    resource_group_name="string",
    dev_box_definition_name="string",
    tags={
        "string": "string",
    },
    managed_virtual_network_regions=["string"],
    display_name="string",
    location="string",
    single_sign_on_status="string",
    stop_on_disconnect={
        "grace_period_minutes": 0,
        "status": "string",
    },
    pool_name="string",
    virtual_network_type="string")
Copy
const examplepoolResourceResourceFromDevcenter = new azure_native.devcenter.Pool("examplepoolResourceResourceFromDevcenter", {
    networkConnectionName: "string",
    projectName: "string",
    licenseType: "string",
    localAdministrator: "string",
    resourceGroupName: "string",
    devBoxDefinitionName: "string",
    tags: {
        string: "string",
    },
    managedVirtualNetworkRegions: ["string"],
    displayName: "string",
    location: "string",
    singleSignOnStatus: "string",
    stopOnDisconnect: {
        gracePeriodMinutes: 0,
        status: "string",
    },
    poolName: "string",
    virtualNetworkType: "string",
});
Copy
type: azure-native:devcenter:Pool
properties:
    devBoxDefinitionName: string
    displayName: string
    licenseType: string
    localAdministrator: string
    location: string
    managedVirtualNetworkRegions:
        - string
    networkConnectionName: string
    poolName: string
    projectName: string
    resourceGroupName: string
    singleSignOnStatus: string
    stopOnDisconnect:
        gracePeriodMinutes: 0
        status: string
    tags:
        string: string
    virtualNetworkType: string
Copy

Pool Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Pool resource accepts the following input properties:

DevBoxDefinitionName This property is required. string
Name of a Dev Box definition in parent Project of this Pool
LicenseType This property is required. string | Pulumi.AzureNative.DevCenter.LicenseType
Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
LocalAdministrator This property is required. string | Pulumi.AzureNative.DevCenter.LocalAdminStatus
Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
NetworkConnectionName This property is required. string
Name of a Network Connection in parent Project of this Pool
ProjectName
This property is required.
Changes to this property will trigger replacement.
string
The name of the project.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DisplayName string
The display name of the pool.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ManagedVirtualNetworkRegions List<string>
The regions of the managed virtual network (required when managedNetworkType is Managed).
PoolName Changes to this property will trigger replacement. string
Name of the pool.
SingleSignOnStatus string | Pulumi.AzureNative.DevCenter.SingleSignOnStatus
Indicates whether Dev Boxes in this pool are created with single sign on enabled. The also requires that single sign on be enabled on the tenant.
StopOnDisconnect Pulumi.AzureNative.DevCenter.Inputs.StopOnDisconnectConfiguration
Stop on disconnect configuration settings for Dev Boxes created in this pool.
Tags Dictionary<string, string>
Resource tags.
VirtualNetworkType string | Pulumi.AzureNative.DevCenter.VirtualNetworkType
Indicates whether the pool uses a Virtual Network managed by Microsoft or a customer provided network.
DevBoxDefinitionName This property is required. string
Name of a Dev Box definition in parent Project of this Pool
LicenseType This property is required. string | LicenseType
Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
LocalAdministrator This property is required. string | LocalAdminStatus
Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
NetworkConnectionName This property is required. string
Name of a Network Connection in parent Project of this Pool
ProjectName
This property is required.
Changes to this property will trigger replacement.
string
The name of the project.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DisplayName string
The display name of the pool.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ManagedVirtualNetworkRegions []string
The regions of the managed virtual network (required when managedNetworkType is Managed).
PoolName Changes to this property will trigger replacement. string
Name of the pool.
SingleSignOnStatus string | SingleSignOnStatus
Indicates whether Dev Boxes in this pool are created with single sign on enabled. The also requires that single sign on be enabled on the tenant.
StopOnDisconnect StopOnDisconnectConfigurationArgs
Stop on disconnect configuration settings for Dev Boxes created in this pool.
Tags map[string]string
Resource tags.
VirtualNetworkType string | VirtualNetworkType
Indicates whether the pool uses a Virtual Network managed by Microsoft or a customer provided network.
devBoxDefinitionName This property is required. String
Name of a Dev Box definition in parent Project of this Pool
licenseType This property is required. String | LicenseType
Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
localAdministrator This property is required. String | LocalAdminStatus
Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
networkConnectionName This property is required. String
Name of a Network Connection in parent Project of this Pool
projectName
This property is required.
Changes to this property will trigger replacement.
String
The name of the project.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
displayName String
The display name of the pool.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
managedVirtualNetworkRegions List<String>
The regions of the managed virtual network (required when managedNetworkType is Managed).
poolName Changes to this property will trigger replacement. String
Name of the pool.
singleSignOnStatus String | SingleSignOnStatus
Indicates whether Dev Boxes in this pool are created with single sign on enabled. The also requires that single sign on be enabled on the tenant.
stopOnDisconnect StopOnDisconnectConfiguration
Stop on disconnect configuration settings for Dev Boxes created in this pool.
tags Map<String,String>
Resource tags.
virtualNetworkType String | VirtualNetworkType
Indicates whether the pool uses a Virtual Network managed by Microsoft or a customer provided network.
devBoxDefinitionName This property is required. string
Name of a Dev Box definition in parent Project of this Pool
licenseType This property is required. string | LicenseType
Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
localAdministrator This property is required. string | LocalAdminStatus
Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
networkConnectionName This property is required. string
Name of a Network Connection in parent Project of this Pool
projectName
This property is required.
Changes to this property will trigger replacement.
string
The name of the project.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
displayName string
The display name of the pool.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
managedVirtualNetworkRegions string[]
The regions of the managed virtual network (required when managedNetworkType is Managed).
poolName Changes to this property will trigger replacement. string
Name of the pool.
singleSignOnStatus string | SingleSignOnStatus
Indicates whether Dev Boxes in this pool are created with single sign on enabled. The also requires that single sign on be enabled on the tenant.
stopOnDisconnect StopOnDisconnectConfiguration
Stop on disconnect configuration settings for Dev Boxes created in this pool.
tags {[key: string]: string}
Resource tags.
virtualNetworkType string | VirtualNetworkType
Indicates whether the pool uses a Virtual Network managed by Microsoft or a customer provided network.
dev_box_definition_name This property is required. str
Name of a Dev Box definition in parent Project of this Pool
license_type This property is required. str | LicenseType
Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
local_administrator This property is required. str | LocalAdminStatus
Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
network_connection_name This property is required. str
Name of a Network Connection in parent Project of this Pool
project_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the project.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
display_name str
The display name of the pool.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
managed_virtual_network_regions Sequence[str]
The regions of the managed virtual network (required when managedNetworkType is Managed).
pool_name Changes to this property will trigger replacement. str
Name of the pool.
single_sign_on_status str | SingleSignOnStatus
Indicates whether Dev Boxes in this pool are created with single sign on enabled. The also requires that single sign on be enabled on the tenant.
stop_on_disconnect StopOnDisconnectConfigurationArgs
Stop on disconnect configuration settings for Dev Boxes created in this pool.
tags Mapping[str, str]
Resource tags.
virtual_network_type str | VirtualNetworkType
Indicates whether the pool uses a Virtual Network managed by Microsoft or a customer provided network.
devBoxDefinitionName This property is required. String
Name of a Dev Box definition in parent Project of this Pool
licenseType This property is required. String | "Windows_Client"
Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
localAdministrator This property is required. String | "Disabled" | "Enabled"
Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
networkConnectionName This property is required. String
Name of a Network Connection in parent Project of this Pool
projectName
This property is required.
Changes to this property will trigger replacement.
String
The name of the project.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
displayName String
The display name of the pool.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
managedVirtualNetworkRegions List<String>
The regions of the managed virtual network (required when managedNetworkType is Managed).
poolName Changes to this property will trigger replacement. String
Name of the pool.
singleSignOnStatus String | "Disabled" | "Enabled"
Indicates whether Dev Boxes in this pool are created with single sign on enabled. The also requires that single sign on be enabled on the tenant.
stopOnDisconnect Property Map
Stop on disconnect configuration settings for Dev Boxes created in this pool.
tags Map<String>
Resource tags.
virtualNetworkType String | "Managed" | "Unmanaged"
Indicates whether the pool uses a Virtual Network managed by Microsoft or a customer provided network.

Outputs

All input properties are implicitly available as output properties. Additionally, the Pool resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
DevBoxCount int
Indicates the number of provisioned Dev Boxes in this pool.
HealthStatus string
Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
HealthStatusDetails List<Pulumi.AzureNative.DevCenter.Outputs.HealthStatusDetailResponse>
Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the resource.
SystemData Pulumi.AzureNative.DevCenter.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
DevBoxCount int
Indicates the number of provisioned Dev Boxes in this pool.
HealthStatus string
Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
HealthStatusDetails []HealthStatusDetailResponse
Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
devBoxCount Integer
Indicates the number of provisioned Dev Boxes in this pool.
healthStatus String
Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
healthStatusDetails List<HealthStatusDetailResponse>
Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
devBoxCount number
Indicates the number of provisioned Dev Boxes in this pool.
healthStatus string
Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
healthStatusDetails HealthStatusDetailResponse[]
Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The provisioning state of the resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
dev_box_count int
Indicates the number of provisioned Dev Boxes in this pool.
health_status str
Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
health_status_details Sequence[HealthStatusDetailResponse]
Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The provisioning state of the resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
devBoxCount Number
Indicates the number of provisioned Dev Boxes in this pool.
healthStatus String
Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
healthStatusDetails List<Property Map>
Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

HealthStatusDetailResponse
, HealthStatusDetailResponseArgs

Code This property is required. string
An identifier for the issue.
Message This property is required. string
A message describing the issue, intended to be suitable for display in a user interface
Code This property is required. string
An identifier for the issue.
Message This property is required. string
A message describing the issue, intended to be suitable for display in a user interface
code This property is required. String
An identifier for the issue.
message This property is required. String
A message describing the issue, intended to be suitable for display in a user interface
code This property is required. string
An identifier for the issue.
message This property is required. string
A message describing the issue, intended to be suitable for display in a user interface
code This property is required. str
An identifier for the issue.
message This property is required. str
A message describing the issue, intended to be suitable for display in a user interface
code This property is required. String
An identifier for the issue.
message This property is required. String
A message describing the issue, intended to be suitable for display in a user interface

LicenseType
, LicenseTypeArgs

Windows_Client
Windows_Client
LicenseType_Windows_Client
Windows_Client
Windows_Client
Windows_Client
Windows_Client
Windows_Client
WINDOWS_CLIENT
Windows_Client
"Windows_Client"
Windows_Client

LocalAdminStatus
, LocalAdminStatusArgs

Disabled
Disabled
Enabled
Enabled
LocalAdminStatusDisabled
Disabled
LocalAdminStatusEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

SingleSignOnStatus
, SingleSignOnStatusArgs

Disabled
Disabled
Enabled
Enabled
SingleSignOnStatusDisabled
Disabled
SingleSignOnStatusEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

StopOnDisconnectConfiguration
, StopOnDisconnectConfigurationArgs

GracePeriodMinutes int
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
Status string | Pulumi.AzureNative.DevCenter.StopOnDisconnectEnableStatus
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
GracePeriodMinutes int
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
Status string | StopOnDisconnectEnableStatus
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
gracePeriodMinutes Integer
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status String | StopOnDisconnectEnableStatus
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
gracePeriodMinutes number
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status string | StopOnDisconnectEnableStatus
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
grace_period_minutes int
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status str | StopOnDisconnectEnableStatus
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
gracePeriodMinutes Number
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status String | "Enabled" | "Disabled"
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.

StopOnDisconnectConfigurationResponse
, StopOnDisconnectConfigurationResponseArgs

GracePeriodMinutes int
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
Status string
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
GracePeriodMinutes int
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
Status string
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
gracePeriodMinutes Integer
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status String
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
gracePeriodMinutes number
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status string
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
grace_period_minutes int
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status str
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
gracePeriodMinutes Number
The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
status String
Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.

StopOnDisconnectEnableStatus
, StopOnDisconnectEnableStatusArgs

Enabled
Enabled
Disabled
Disabled
StopOnDisconnectEnableStatusEnabled
Enabled
StopOnDisconnectEnableStatusDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

VirtualNetworkType
, VirtualNetworkTypeArgs

Managed
Managed
Unmanaged
Unmanaged
VirtualNetworkTypeManaged
Managed
VirtualNetworkTypeUnmanaged
Unmanaged
Managed
Managed
Unmanaged
Unmanaged
Managed
Managed
Unmanaged
Unmanaged
MANAGED
Managed
UNMANAGED
Unmanaged
"Managed"
Managed
"Unmanaged"
Unmanaged

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:devcenter:Pool DevPool /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/projects/{projectName}/pools/{poolName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi