1. Packages
  2. Azure Native
  3. API Docs
  4. devcenter
  5. DevBoxDefinition
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.devcenter.DevBoxDefinition

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    Represents a definition for a Developer Machine. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2022-09-01-preview.

    Other available API versions: 2022-11-11-preview, 2023-08-01-preview, 2023-10-01-preview.

    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",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/devcenter/v2"
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=azure_native.devcenter.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",
        resource_group_name="rg1",
        sku=azure_native.devcenter.SkuArgs(
            name="Preview",
        ))
    
    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",
        },
    });
    
    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
    

    Create DevBoxDefinition Resource

    new DevBoxDefinition(name: string, args: DevBoxDefinitionArgs, opts?: CustomResourceOptions);
    @overload
    def DevBoxDefinition(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         dev_box_definition_name: Optional[str] = None,
                         dev_center_name: Optional[str] = None,
                         hibernate_support: Optional[Union[str, HibernateSupport]] = None,
                         image_reference: Optional[ImageReferenceArgs] = None,
                         location: Optional[str] = None,
                         os_storage_type: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         sku: Optional[SkuArgs] = None,
                         tags: Optional[Mapping[str, str]] = None)
    @overload
    def DevBoxDefinition(resource_name: str,
                         args: DevBoxDefinitionArgs,
                         opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args DevBoxDefinitionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args DevBoxDefinitionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DevBoxDefinitionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DevBoxDefinitionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The DevBoxDefinition resource accepts the following input properties:

    DevCenterName string
    The name of the devcenter.
    ImageReference Pulumi.AzureNative.DevCenter.Inputs.ImageReference
    Image reference information.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.DevCenter.Inputs.Sku
    The SKU for Dev Boxes created using this definition.
    DevBoxDefinitionName 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 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 string
    The name of the devcenter.
    ImageReference ImageReferenceArgs
    Image reference information.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku SkuArgs
    The SKU for Dev Boxes created using this definition.
    DevBoxDefinitionName 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 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 String
    The name of the devcenter.
    imageReference ImageReference
    Image reference information.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Sku
    The SKU for Dev Boxes created using this definition.
    devBoxDefinitionName 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 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 string
    The name of the devcenter.
    imageReference ImageReference
    Image reference information.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku Sku
    The SKU for Dev Boxes created using this definition.
    devBoxDefinitionName 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 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 str
    The name of the devcenter.
    image_reference ImageReferenceArgs
    Image reference information.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku SkuArgs
    The SKU for Dev Boxes created using this definition.
    dev_box_definition_name 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 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 String
    The name of the devcenter.
    imageReference Property Map
    Image reference information.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    The SKU for Dev Boxes created using this definition.
    devBoxDefinitionName 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 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).
    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"
    ActiveImageReference ImageReferenceResponse
    Image reference information for the currently active image (only populated during updates).
    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"
    activeImageReference ImageReferenceResponse
    Image reference information for the currently active image (only populated during updates).
    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"
    activeImageReference ImageReferenceResponse
    Image reference information for the currently active image (only populated during updates).
    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"
    active_image_reference ImageReferenceResponse
    Image reference information for the currently active image (only populated during updates).
    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"
    activeImageReference Property Map
    Image reference information for the currently active image (only populated during updates).
    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"

    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 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 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 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 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 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 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 string
    The name of the SKU. Ex - 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 string
    The name of the SKU. Ex - 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 String
    The name of the SKU. Ex - 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 string
    The name of the SKU. Ex - 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 str
    The name of the SKU. Ex - 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 String
    The name of the SKU. Ex - 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 string
    The name of the SKU. Ex - 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 string
    The name of the SKU. Ex - 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 String
    The name of the SKU. Ex - 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 string
    The name of the SKU. Ex - 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 str
    The name of the SKU. Ex - 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 String
    The name of the SKU. Ex - 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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi