1. Packages
  2. Azure Native
  3. API Docs
  4. devcenter
  5. DevBoxDefinition
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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.devcenter.DevBoxDefinition

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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Represents a definition for a Developer Machine.

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

DevBoxDefinitions_Create

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

return await Deployment.RunAsync(() => 
{
    var devBoxDefinition = new AzureNative.DevCenter.DevBoxDefinition("devBoxDefinition", new()
    {
        DevBoxDefinitionName = "WebDevBox",
        DevCenterName = "Contoso",
        HibernateSupport = AzureNative.DevCenter.HibernateSupport.Enabled,
        ImageReference = new AzureNative.DevCenter.Inputs.ImageReferenceArgs
        {
            Id = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0",
        },
        Location = "centralus",
        ResourceGroupName = "rg1",
        Sku = new AzureNative.DevCenter.Inputs.SkuArgs
        {
            Name = "Preview",
        },
    });

});
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.NewDevBoxDefinition(ctx, "devBoxDefinition", &devcenter.DevBoxDefinitionArgs{
			DevBoxDefinitionName: pulumi.String("WebDevBox"),
			DevCenterName:        pulumi.String("Contoso"),
			HibernateSupport:     pulumi.String(devcenter.HibernateSupportEnabled),
			ImageReference: &devcenter.ImageReferenceArgs{
				Id: pulumi.String("/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0"),
			},
			Location:          pulumi.String("centralus"),
			ResourceGroupName: pulumi.String("rg1"),
			Sku: &devcenter.SkuArgs{
				Name: pulumi.String("Preview"),
			},
		})
		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.DevBoxDefinition;
import com.pulumi.azurenative.devcenter.DevBoxDefinitionArgs;
import com.pulumi.azurenative.devcenter.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.devcenter.inputs.SkuArgs;
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 devBoxDefinition = new DevBoxDefinition("devBoxDefinition", DevBoxDefinitionArgs.builder()
            .devBoxDefinitionName("WebDevBox")
            .devCenterName("Contoso")
            .hibernateSupport("Enabled")
            .imageReference(ImageReferenceArgs.builder()
                .id("/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0")
                .build())
            .location("centralus")
            .resourceGroupName("rg1")
            .sku(SkuArgs.builder()
                .name("Preview")
                .build())
            .build());

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

const devBoxDefinition = new azure_native.devcenter.DevBoxDefinition("devBoxDefinition", {
    devBoxDefinitionName: "WebDevBox",
    devCenterName: "Contoso",
    hibernateSupport: azure_native.devcenter.HibernateSupport.Enabled,
    imageReference: {
        id: "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0",
    },
    location: "centralus",
    resourceGroupName: "rg1",
    sku: {
        name: "Preview",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dev_box_definition = azure_native.devcenter.DevBoxDefinition("devBoxDefinition",
    dev_box_definition_name="WebDevBox",
    dev_center_name="Contoso",
    hibernate_support=azure_native.devcenter.HibernateSupport.ENABLED,
    image_reference={
        "id": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0",
    },
    location="centralus",
    resource_group_name="rg1",
    sku={
        "name": "Preview",
    })
Copy
resources:
  devBoxDefinition:
    type: azure-native:devcenter:DevBoxDefinition
    properties:
      devBoxDefinitionName: WebDevBox
      devCenterName: Contoso
      hibernateSupport: Enabled
      imageReference:
        id: /subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0
      location: centralus
      resourceGroupName: rg1
      sku:
        name: Preview
Copy

Create DevBoxDefinition Resource

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

Constructor syntax

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

@overload
def DevBoxDefinition(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     dev_center_name: Optional[str] = None,
                     image_reference: Optional[ImageReferenceArgs] = None,
                     resource_group_name: Optional[str] = None,
                     sku: Optional[SkuArgs] = None,
                     dev_box_definition_name: Optional[str] = None,
                     hibernate_support: Optional[Union[str, HibernateSupport]] = None,
                     location: Optional[str] = None,
                     os_storage_type: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
func NewDevBoxDefinition(ctx *Context, name string, args DevBoxDefinitionArgs, opts ...ResourceOption) (*DevBoxDefinition, error)
public DevBoxDefinition(string name, DevBoxDefinitionArgs args, CustomResourceOptions? opts = null)
public DevBoxDefinition(String name, DevBoxDefinitionArgs args)
public DevBoxDefinition(String name, DevBoxDefinitionArgs args, CustomResourceOptions options)
type: azure-native:devcenter:DevBoxDefinition
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. DevBoxDefinitionArgs
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. DevBoxDefinitionArgs
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. DevBoxDefinitionArgs
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. DevBoxDefinitionArgs
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. DevBoxDefinitionArgs
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 devBoxDefinitionResource = new AzureNative.DevCenter.DevBoxDefinition("devBoxDefinitionResource", new()
{
    DevCenterName = "string",
    ImageReference = new AzureNative.DevCenter.Inputs.ImageReferenceArgs
    {
        Id = "string",
    },
    ResourceGroupName = "string",
    Sku = new AzureNative.DevCenter.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = AzureNative.DevCenter.SkuTier.Free,
    },
    DevBoxDefinitionName = "string",
    HibernateSupport = "string",
    Location = "string",
    OsStorageType = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := devcenter.NewDevBoxDefinition(ctx, "devBoxDefinitionResource", &devcenter.DevBoxDefinitionArgs{
	DevCenterName: pulumi.String("string"),
	ImageReference: &devcenter.ImageReferenceArgs{
		Id: pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	Sku: &devcenter.SkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     devcenter.SkuTierFree,
	},
	DevBoxDefinitionName: pulumi.String("string"),
	HibernateSupport:     pulumi.String("string"),
	Location:             pulumi.String("string"),
	OsStorageType:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var devBoxDefinitionResource = new DevBoxDefinition("devBoxDefinitionResource", DevBoxDefinitionArgs.builder()
    .devCenterName("string")
    .imageReference(ImageReferenceArgs.builder()
        .id("string")
        .build())
    .resourceGroupName("string")
    .sku(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("Free")
        .build())
    .devBoxDefinitionName("string")
    .hibernateSupport("string")
    .location("string")
    .osStorageType("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
dev_box_definition_resource = azure_native.devcenter.DevBoxDefinition("devBoxDefinitionResource",
    dev_center_name="string",
    image_reference={
        "id": "string",
    },
    resource_group_name="string",
    sku={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": azure_native.devcenter.SkuTier.FREE,
    },
    dev_box_definition_name="string",
    hibernate_support="string",
    location="string",
    os_storage_type="string",
    tags={
        "string": "string",
    })
Copy
const devBoxDefinitionResource = new azure_native.devcenter.DevBoxDefinition("devBoxDefinitionResource", {
    devCenterName: "string",
    imageReference: {
        id: "string",
    },
    resourceGroupName: "string",
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: azure_native.devcenter.SkuTier.Free,
    },
    devBoxDefinitionName: "string",
    hibernateSupport: "string",
    location: "string",
    osStorageType: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:devcenter:DevBoxDefinition
properties:
    devBoxDefinitionName: string
    devCenterName: string
    hibernateSupport: string
    imageReference:
        id: string
    location: string
    osStorageType: string
    resourceGroupName: string
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    tags:
        string: string
Copy

DevBoxDefinition 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 DevBoxDefinition resource accepts the following input properties:

DevCenterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the devcenter.
ImageReference This property is required. Pulumi.AzureNative.DevCenter.Inputs.ImageReference
Image reference information.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Sku This property is required. Pulumi.AzureNative.DevCenter.Inputs.Sku
The SKU for Dev Boxes created using this definition.
DevBoxDefinitionName Changes to this property will trigger replacement. string
The name of the Dev Box definition.
HibernateSupport string | Pulumi.AzureNative.DevCenter.HibernateSupport
Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
OsStorageType string
The storage type used for the Operating System disk of Dev Boxes created using this definition.
Tags Dictionary<string, string>
Resource tags.
DevCenterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the devcenter.
ImageReference This property is required. ImageReferenceArgs
Image reference information.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Sku This property is required. SkuArgs
The SKU for Dev Boxes created using this definition.
DevBoxDefinitionName Changes to this property will trigger replacement. string
The name of the Dev Box definition.
HibernateSupport string | HibernateSupport
Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
OsStorageType string
The storage type used for the Operating System disk of Dev Boxes created using this definition.
Tags map[string]string
Resource tags.
devCenterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the devcenter.
imageReference This property is required. ImageReference
Image reference information.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
sku This property is required. Sku
The SKU for Dev Boxes created using this definition.
devBoxDefinitionName Changes to this property will trigger replacement. String
The name of the Dev Box definition.
hibernateSupport String | HibernateSupport
Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
osStorageType String
The storage type used for the Operating System disk of Dev Boxes created using this definition.
tags Map<String,String>
Resource tags.
devCenterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the devcenter.
imageReference This property is required. ImageReference
Image reference information.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
sku This property is required. Sku
The SKU for Dev Boxes created using this definition.
devBoxDefinitionName Changes to this property will trigger replacement. string
The name of the Dev Box definition.
hibernateSupport string | HibernateSupport
Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
osStorageType string
The storage type used for the Operating System disk of Dev Boxes created using this definition.
tags {[key: string]: string}
Resource tags.
dev_center_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the devcenter.
image_reference This property is required. ImageReferenceArgs
Image reference information.
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.
sku This property is required. SkuArgs
The SKU for Dev Boxes created using this definition.
dev_box_definition_name Changes to this property will trigger replacement. str
The name of the Dev Box definition.
hibernate_support str | HibernateSupport
Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
os_storage_type str
The storage type used for the Operating System disk of Dev Boxes created using this definition.
tags Mapping[str, str]
Resource tags.
devCenterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the devcenter.
imageReference This property is required. Property Map
Image reference information.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
sku This property is required. Property Map
The SKU for Dev Boxes created using this definition.
devBoxDefinitionName Changes to this property will trigger replacement. String
The name of the Dev Box definition.
hibernateSupport String | "Disabled" | "Enabled"
Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
osStorageType String
The storage type used for the Operating System disk of Dev Boxes created using this definition.
tags Map<String>
Resource tags.

Outputs

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

ActiveImageReference Pulumi.AzureNative.DevCenter.Outputs.ImageReferenceResponse
Image reference information for the currently active image (only populated during updates).
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
ImageValidationErrorDetails Pulumi.AzureNative.DevCenter.Outputs.ImageValidationErrorDetailsResponse
Details for image validator error. Populated when the image validation is not successful.
ImageValidationStatus string
Validation status of the configured image.
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"
ValidationStatus string
Validation status for the Dev Box Definition.
ActiveImageReference ImageReferenceResponse
Image reference information for the currently active image (only populated during updates).
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
ImageValidationErrorDetails ImageValidationErrorDetailsResponse
Details for image validator error. Populated when the image validation is not successful.
ImageValidationStatus string
Validation status of the configured image.
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"
ValidationStatus string
Validation status for the Dev Box Definition.
activeImageReference ImageReferenceResponse
Image reference information for the currently active image (only populated during updates).
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
imageValidationErrorDetails ImageValidationErrorDetailsResponse
Details for image validator error. Populated when the image validation is not successful.
imageValidationStatus String
Validation status of the configured image.
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"
validationStatus String
Validation status for the Dev Box Definition.
activeImageReference ImageReferenceResponse
Image reference information for the currently active image (only populated during updates).
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
imageValidationErrorDetails ImageValidationErrorDetailsResponse
Details for image validator error. Populated when the image validation is not successful.
imageValidationStatus string
Validation status of the configured image.
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"
validationStatus string
Validation status for the Dev Box Definition.
active_image_reference ImageReferenceResponse
Image reference information for the currently active image (only populated during updates).
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
image_validation_error_details ImageValidationErrorDetailsResponse
Details for image validator error. Populated when the image validation is not successful.
image_validation_status str
Validation status of the configured image.
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"
validation_status str
Validation status for the Dev Box Definition.
activeImageReference Property Map
Image reference information for the currently active image (only populated during updates).
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
imageValidationErrorDetails Property Map
Details for image validator error. Populated when the image validation is not successful.
imageValidationStatus String
Validation status of the configured image.
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"
validationStatus String
Validation status for the Dev Box Definition.

Supporting Types

HibernateSupport
, HibernateSupportArgs

Disabled
Disabled
Enabled
Enabled
HibernateSupportDisabled
Disabled
HibernateSupportEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

ImageReference
, ImageReferenceArgs

Id string
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
Id string
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
id String
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
id string
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
id str
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
id String
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.

ImageReferenceResponse
, ImageReferenceResponseArgs

ExactVersion This property is required. string
The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use.
Id string
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
ExactVersion This property is required. string
The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use.
Id string
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
exactVersion This property is required. String
The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use.
id String
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
exactVersion This property is required. string
The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use.
id string
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
exact_version This property is required. str
The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use.
id str
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
exactVersion This property is required. String
The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use.
id String
Image ID, or Image version ID. When Image ID is provided, its latest version will be used.

ImageValidationErrorDetailsResponse
, ImageValidationErrorDetailsResponseArgs

Code string
An identifier for the error.
Message string
A message describing the error.
Code string
An identifier for the error.
Message string
A message describing the error.
code String
An identifier for the error.
message String
A message describing the error.
code string
An identifier for the error.
message string
A message describing the error.
code str
An identifier for the error.
message str
A message describing the error.
code String
An identifier for the error.
message String
A message describing the error.

Sku
, SkuArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
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.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier Pulumi.AzureNative.DevCenter.SkuTier
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.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
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.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier SkuTier
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.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
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.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
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.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
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.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
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.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
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.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
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.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
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.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier "Free" | "Basic" | "Standard" | "Premium"
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.

SkuResponse
, SkuResponseArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
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.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
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.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
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.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
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.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
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.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
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.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
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.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier string
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.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
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.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier str
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.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
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.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
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.

SkuTier
, SkuTierArgs

Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
SkuTierFree
Free
SkuTierBasic
Basic
SkuTierStandard
Standard
SkuTierPremium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
FREE
Free
BASIC
Basic
STANDARD
Standard
PREMIUM
Premium
"Free"
Free
"Basic"
Basic
"Standard"
Standard
"Premium"
Premium

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.

Import

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

$ pulumi import azure-native:devcenter:DevBoxDefinition WebDevBox /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/devcenters/{devCenterName}/devboxdefinitions/{devBoxDefinitionName} 
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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi