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

azure-native.devcenter.EnvironmentType

Explore with Pulumi AI

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

Represents an environment type.

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

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

Example Usage

EnvironmentTypes_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var environmentType = new AzureNative.DevCenter.EnvironmentType("environmentType", new()
    {
        DevCenterName = "Contoso",
        DisplayName = "Dev",
        EnvironmentTypeName = "DevTest",
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "Owner", "superuser" },
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devcenter.NewEnvironmentType(ctx, "environmentType", &devcenter.EnvironmentTypeArgs{
			DevCenterName:       pulumi.String("Contoso"),
			DisplayName:         pulumi.String("Dev"),
			EnvironmentTypeName: pulumi.String("DevTest"),
			ResourceGroupName:   pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"Owner": pulumi.String("superuser"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.devcenter.EnvironmentType;
import com.pulumi.azurenative.devcenter.EnvironmentTypeArgs;
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 environmentType = new EnvironmentType("environmentType", EnvironmentTypeArgs.builder()
            .devCenterName("Contoso")
            .displayName("Dev")
            .environmentTypeName("DevTest")
            .resourceGroupName("rg1")
            .tags(Map.of("Owner", "superuser"))
            .build());

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

const environmentType = new azure_native.devcenter.EnvironmentType("environmentType", {
    devCenterName: "Contoso",
    displayName: "Dev",
    environmentTypeName: "DevTest",
    resourceGroupName: "rg1",
    tags: {
        Owner: "superuser",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

environment_type = azure_native.devcenter.EnvironmentType("environmentType",
    dev_center_name="Contoso",
    display_name="Dev",
    environment_type_name="DevTest",
    resource_group_name="rg1",
    tags={
        "Owner": "superuser",
    })
Copy
resources:
  environmentType:
    type: azure-native:devcenter:EnvironmentType
    properties:
      devCenterName: Contoso
      displayName: Dev
      environmentTypeName: DevTest
      resourceGroupName: rg1
      tags:
        Owner: superuser
Copy

Create EnvironmentType Resource

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

Constructor syntax

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

@overload
def EnvironmentType(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    dev_center_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    display_name: Optional[str] = None,
                    environment_type_name: Optional[str] = None,
                    tags: Optional[Mapping[str, str]] = None)
func NewEnvironmentType(ctx *Context, name string, args EnvironmentTypeArgs, opts ...ResourceOption) (*EnvironmentType, error)
public EnvironmentType(string name, EnvironmentTypeArgs args, CustomResourceOptions? opts = null)
public EnvironmentType(String name, EnvironmentTypeArgs args)
public EnvironmentType(String name, EnvironmentTypeArgs args, CustomResourceOptions options)
type: azure-native:devcenter:EnvironmentType
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EnvironmentTypeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EnvironmentTypeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EnvironmentTypeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EnvironmentTypeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EnvironmentTypeArgs
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 environmentTypeResource = new AzureNative.DevCenter.EnvironmentType("environmentTypeResource", new()
{
    DevCenterName = "string",
    ResourceGroupName = "string",
    DisplayName = "string",
    EnvironmentTypeName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := devcenter.NewEnvironmentType(ctx, "environmentTypeResource", &devcenter.EnvironmentTypeArgs{
	DevCenterName:       pulumi.String("string"),
	ResourceGroupName:   pulumi.String("string"),
	DisplayName:         pulumi.String("string"),
	EnvironmentTypeName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var environmentTypeResource = new EnvironmentType("environmentTypeResource", EnvironmentTypeArgs.builder()
    .devCenterName("string")
    .resourceGroupName("string")
    .displayName("string")
    .environmentTypeName("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
environment_type_resource = azure_native.devcenter.EnvironmentType("environmentTypeResource",
    dev_center_name="string",
    resource_group_name="string",
    display_name="string",
    environment_type_name="string",
    tags={
        "string": "string",
    })
Copy
const environmentTypeResource = new azure_native.devcenter.EnvironmentType("environmentTypeResource", {
    devCenterName: "string",
    resourceGroupName: "string",
    displayName: "string",
    environmentTypeName: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:devcenter:EnvironmentType
properties:
    devCenterName: string
    displayName: string
    environmentTypeName: string
    resourceGroupName: string
    tags:
        string: string
Copy

EnvironmentType Resource Properties

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

Inputs

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

The EnvironmentType resource accepts the following input properties:

DevCenterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the devcenter.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DisplayName string
The display name of the environment type.
EnvironmentTypeName Changes to this property will trigger replacement. string
The name of the environment type.
Tags Dictionary<string, string>
Resource tags.
DevCenterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the devcenter.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DisplayName string
The display name of the environment type.
EnvironmentTypeName Changes to this property will trigger replacement. string
The name of the environment type.
Tags map[string]string
Resource tags.
devCenterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the devcenter.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
displayName String
The display name of the environment type.
environmentTypeName Changes to this property will trigger replacement. String
The name of the environment type.
tags Map<String,String>
Resource tags.
devCenterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the devcenter.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
displayName string
The display name of the environment type.
environmentTypeName Changes to this property will trigger replacement. string
The name of the environment type.
tags {[key: string]: string}
Resource tags.
dev_center_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the devcenter.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
display_name str
The display name of the environment type.
environment_type_name Changes to this property will trigger replacement. str
The name of the environment type.
tags Mapping[str, str]
Resource tags.
devCenterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the devcenter.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
displayName String
The display name of the environment type.
environmentTypeName Changes to this property will trigger replacement. String
The name of the environment type.
tags Map<String>
Resource tags.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the resource.
SystemData Pulumi.AzureNative.DevCenter.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The provisioning state of the resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The provisioning state of the resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

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:EnvironmentType DevTest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/devcenters/{devCenterName}/environmentTypes/{environmentTypeName} 
Copy

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

Package Details

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