1. Packages
  2. Azure Native v1
  3. API Docs
  4. devcenter
  5. DevBoxDefinition
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.devcenter.DevBoxDefinition

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Represents a definition for a Developer Machine. API Version: 2022-09-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",
            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",
            OsStorageType = "SSD_1024",
            ResourceGroupName = "rg1",
            Sku = new AzureNative.DevCenter.Inputs.SkuArgs
            {
                Name = "Preview",
            },
        });
    
    });
    
    package main
    
    import (
    	devcenter "github.com/pulumi/pulumi-azure-native-sdk/devcenter"
    	"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"),
    			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"),
    			OsStorageType:     pulumi.String("SSD_1024"),
    			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 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")
                .imageReference(Map.of("id", "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.DevCenter/devcenters/Contoso/galleries/contosogallery/images/exampleImage/version/1.0.0"))
                .location("centralus")
                .osStorageType("SSD_1024")
                .resourceGroupName("rg1")
                .sku(Map.of("name", "Preview"))
                .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",
        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",
        os_storage_type="SSD_1024",
        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",
        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",
        osStorageType: "SSD_1024",
        resourceGroupName: "rg1",
        sku: {
            name: "Preview",
        },
    });
    
    resources:
      devBoxDefinition:
        type: azure-native:devcenter:DevBoxDefinition
        properties:
          devBoxDefinitionName: WebDevBox
          devCenterName: Contoso
          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
          osStorageType: SSD_1024
          resourceGroupName: rg1
          sku:
            name: Preview
    

    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,
                         os_storage_type: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         sku: Optional[SkuArgs] = None,
                         dev_box_definition_name: Optional[str] = None,
                         location: 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 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.

    Constructor example

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

    var devBoxDefinitionResource = new AzureNative.Devcenter.DevBoxDefinition("devBoxDefinitionResource", new()
    {
        DevCenterName = "string",
        ImageReference = 
        {
            { "id", "string" },
            { "offer", "string" },
            { "publisher", "string" },
            { "sku", "string" },
        },
        OsStorageType = "string",
        ResourceGroupName = "string",
        Sku = 
        {
            { "name", "string" },
            { "capacity", 0 },
            { "family", "string" },
            { "size", "string" },
            { "tier", "Free" },
        },
        DevBoxDefinitionName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := devcenter.NewDevBoxDefinition(ctx, "devBoxDefinitionResource", &devcenter.DevBoxDefinitionArgs{
    	DevCenterName: "string",
    	ImageReference: map[string]interface{}{
    		"id":        "string",
    		"offer":     "string",
    		"publisher": "string",
    		"sku":       "string",
    	},
    	OsStorageType:     "string",
    	ResourceGroupName: "string",
    	Sku: map[string]interface{}{
    		"name":     "string",
    		"capacity": 0,
    		"family":   "string",
    		"size":     "string",
    		"tier":     "Free",
    	},
    	DevBoxDefinitionName: "string",
    	Location:             "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var devBoxDefinitionResource = new DevBoxDefinition("devBoxDefinitionResource", DevBoxDefinitionArgs.builder()
        .devCenterName("string")
        .imageReference(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .osStorageType("string")
        .resourceGroupName("string")
        .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .devBoxDefinitionName("string")
        .location("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    dev_box_definition_resource = azure_native.devcenter.DevBoxDefinition("devBoxDefinitionResource",
        dev_center_name=string,
        image_reference={
            id: string,
            offer: string,
            publisher: string,
            sku: string,
        },
        os_storage_type=string,
        resource_group_name=string,
        sku={
            name: string,
            capacity: 0,
            family: string,
            size: string,
            tier: Free,
        },
        dev_box_definition_name=string,
        location=string,
        tags={
            string: string,
        })
    
    const devBoxDefinitionResource = new azure_native.devcenter.DevBoxDefinition("devBoxDefinitionResource", {
        devCenterName: "string",
        imageReference: {
            id: "string",
            offer: "string",
            publisher: "string",
            sku: "string",
        },
        osStorageType: "string",
        resourceGroupName: "string",
        sku: {
            name: "string",
            capacity: 0,
            family: "string",
            size: "string",
            tier: "Free",
        },
        devBoxDefinitionName: "string",
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:devcenter:DevBoxDefinition
    properties:
        devBoxDefinitionName: string
        devCenterName: string
        imageReference:
            id: string
            offer: string
            publisher: string
            sku: string
        location: string
        osStorageType: string
        resourceGroupName: string
        sku:
            capacity: 0
            family: string
            name: string
            size: string
            tier: Free
        tags:
            string: string
    

    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.
    OsStorageType string
    The storage type used for the Operating System disk of Dev Boxes created using this definition.
    ResourceGroupName string
    Name of the resource group within the Azure subscription.
    Sku Pulumi.AzureNative.DevCenter.Inputs.Sku
    The SKU for Dev Boxes created using this definition.
    DevBoxDefinitionName string
    The name of the Dev Box definition.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    DevCenterName string
    The name of the devcenter.
    ImageReference ImageReferenceArgs
    Image reference information.
    OsStorageType string
    The storage type used for the Operating System disk of Dev Boxes created using this definition.
    ResourceGroupName string
    Name of the resource group within the Azure subscription.
    Sku SkuArgs
    The SKU for Dev Boxes created using this definition.
    DevBoxDefinitionName string
    The name of the Dev Box definition.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    devCenterName String
    The name of the devcenter.
    imageReference ImageReference
    Image reference information.
    osStorageType String
    The storage type used for the Operating System disk of Dev Boxes created using this definition.
    resourceGroupName String
    Name of the resource group within the Azure subscription.
    sku Sku
    The SKU for Dev Boxes created using this definition.
    devBoxDefinitionName String
    The name of the Dev Box definition.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    devCenterName string
    The name of the devcenter.
    imageReference ImageReference
    Image reference information.
    osStorageType string
    The storage type used for the Operating System disk of Dev Boxes created using this definition.
    resourceGroupName string
    Name of the resource group within the Azure subscription.
    sku Sku
    The SKU for Dev Boxes created using this definition.
    devBoxDefinitionName string
    The name of the Dev Box definition.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    dev_center_name str
    The name of the devcenter.
    image_reference ImageReferenceArgs
    Image reference information.
    os_storage_type str
    The storage type used for the Operating System disk of Dev Boxes created using this definition.
    resource_group_name str
    Name of the resource group within the Azure subscription.
    sku SkuArgs
    The SKU for Dev Boxes created using this definition.
    dev_box_definition_name str
    The name of the Dev Box definition.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    devCenterName String
    The name of the devcenter.
    imageReference Property Map
    Image reference information.
    osStorageType String
    The storage type used for the Operating System disk of Dev Boxes created using this definition.
    resourceGroupName String
    Name of the resource group within the Azure subscription.
    sku Property Map
    The SKU for Dev Boxes created using this definition.
    devBoxDefinitionName String
    The name of the Dev Box definition.
    location String
    The geo-location where the resource lives
    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

    ImageReference, ImageReferenceArgs

    Id string
    Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
    Offer string
    The image offer.
    Publisher string
    The image publisher.
    Sku string
    The image sku.
    Id string
    Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
    Offer string
    The image offer.
    Publisher string
    The image publisher.
    Sku string
    The image sku.
    id String
    Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
    offer String
    The image offer.
    publisher String
    The image publisher.
    sku String
    The image sku.
    id string
    Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
    offer string
    The image offer.
    publisher string
    The image publisher.
    sku string
    The image sku.
    id str
    Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
    offer str
    The image offer.
    publisher str
    The image publisher.
    sku str
    The image sku.
    id String
    Image ID, or Image version ID. When Image ID is provided, its latest version will be used.
    offer String
    The image offer.
    publisher String
    The image publisher.
    sku String
    The image sku.

    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.
    Offer string
    The image offer.
    Publisher string
    The image publisher.
    Sku string
    The image sku.
    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.
    Offer string
    The image offer.
    Publisher string
    The image publisher.
    Sku string
    The image sku.
    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.
    offer String
    The image offer.
    publisher String
    The image publisher.
    sku String
    The image sku.
    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.
    offer string
    The image offer.
    publisher string
    The image publisher.
    sku string
    The image sku.
    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.
    offer str
    The image offer.
    publisher str
    The image publisher.
    sku str
    The image sku.
    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.
    offer String
    The image offer.
    publisher String
    The image publisher.
    sku String
    The image sku.

    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/rg1/providers/Microsoft.DevCenter/devcenters/Contoso/devboxdefinitions/devBoxDefinitionName 
    

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

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi