azure-native.devcenter.DevBoxDefinition
Explore with Pulumi AI
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, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-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 (
devcenter "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={
"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",
})
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
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 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 = 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" },
},
});
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"),
},
})
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());
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",
})
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",
},
});
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
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:
- Dev
Center stringName - The name of the devcenter.
- Image
Reference Pulumi.Azure Native. Dev Center. Inputs. Image Reference - Image reference information.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Pulumi.
Azure Native. Dev Center. Inputs. Sku - The SKU for Dev Boxes created using this definition.
- Dev
Box stringDefinition Name - The name of the Dev Box definition.
- Hibernate
Support string | Pulumi.Azure Native. Dev Center. Hibernate Support - 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
- Os
Storage stringType - The storage type used for the Operating System disk of Dev Boxes created using this definition.
- Dictionary<string, string>
- Resource tags.
- Dev
Center stringName - The name of the devcenter.
- Image
Reference ImageReference Args - Image reference information.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Sku
Args - The SKU for Dev Boxes created using this definition.
- Dev
Box stringDefinition Name - The name of the Dev Box definition.
- Hibernate
Support 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
- Os
Storage stringType - The storage type used for the Operating System disk of Dev Boxes created using this definition.
- map[string]string
- Resource tags.
- dev
Center StringName - The name of the devcenter.
- image
Reference ImageReference - Image reference information.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The SKU for Dev Boxes created using this definition.
- dev
Box StringDefinition Name - The name of the Dev Box definition.
- hibernate
Support 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
- os
Storage StringType - The storage type used for the Operating System disk of Dev Boxes created using this definition.
- Map<String,String>
- Resource tags.
- dev
Center stringName - The name of the devcenter.
- image
Reference ImageReference - Image reference information.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The SKU for Dev Boxes created using this definition.
- dev
Box stringDefinition Name - The name of the Dev Box definition.
- hibernate
Support 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
- os
Storage stringType - The storage type used for the Operating System disk of Dev Boxes created using this definition.
- {[key: string]: string}
- Resource tags.
- dev_
center_ strname - The name of the devcenter.
- image_
reference ImageReference Args - Image reference information.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sku
Sku
Args - The SKU for Dev Boxes created using this definition.
- dev_
box_ strdefinition_ name - 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_ strtype - The storage type used for the Operating System disk of Dev Boxes created using this definition.
- Mapping[str, str]
- Resource tags.
- dev
Center StringName - The name of the devcenter.
- image
Reference Property Map - Image reference information.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Property Map
- The SKU for Dev Boxes created using this definition.
- dev
Box StringDefinition Name - The name of the Dev Box definition.
- hibernate
Support 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
- os
Storage StringType - The storage type used for the Operating System disk of Dev Boxes created using this definition.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DevBoxDefinition resource produces the following output properties:
- Active
Image Pulumi.Reference Azure Native. Dev Center. Outputs. Image Reference Response - Image reference information for the currently active image (only populated during updates).
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Validation Pulumi.Error Details Azure Native. Dev Center. Outputs. Image Validation Error Details Response - Details for image validator error. Populated when the image validation is not successful.
- Image
Validation stringStatus - Validation status of the configured image.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the resource.
- System
Data Pulumi.Azure Native. Dev Center. Outputs. System Data Response - 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 ImageReference Reference Response - Image reference information for the currently active image (only populated during updates).
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Validation ImageError Details Validation Error Details Response - Details for image validator error. Populated when the image validation is not successful.
- Image
Validation stringStatus - Validation status of the configured image.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the resource.
- System
Data SystemData Response - 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 ImageReference Reference Response - Image reference information for the currently active image (only populated during updates).
- id String
- The provider-assigned unique ID for this managed resource.
- image
Validation ImageError Details Validation Error Details Response - Details for image validator error. Populated when the image validation is not successful.
- image
Validation StringStatus - Validation status of the configured image.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the resource.
- system
Data SystemData Response - 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 ImageReference Reference Response - Image reference information for the currently active image (only populated during updates).
- id string
- The provider-assigned unique ID for this managed resource.
- image
Validation ImageError Details Validation Error Details Response - Details for image validator error. Populated when the image validation is not successful.
- image
Validation stringStatus - Validation status of the configured image.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the resource.
- system
Data SystemData Response - 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_ Imagereference Reference Response - 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_ Imageerror_ details Validation Error Details Response - Details for image validator error. Populated when the image validation is not successful.
- image_
validation_ strstatus - Validation status of the configured image.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the resource.
- system_
data SystemData Response - 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"
- active
Image Property MapReference - Image reference information for the currently active image (only populated during updates).
- id String
- The provider-assigned unique ID for this managed resource.
- image
Validation Property MapError Details - Details for image validator error. Populated when the image validation is not successful.
- image
Validation StringStatus - Validation status of the configured image.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the resource.
- system
Data 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
- Hibernate
Support Disabled - Disabled
- Hibernate
Support Enabled - 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
- Exact
Version 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 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 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 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.
- exact
Version 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
Sku, SkuArgs
- Name 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.
Azure Native. Dev Center. Sku Tier - 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. 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
Sku
Tier - 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. 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
Sku
Tier - 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. 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
Sku
Tier - 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. 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
Sku
Tier - 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. 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 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 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 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 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 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 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
- Sku
Tier Free - Free
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier 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
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0