azure-native.devcenter.Pool
Explore with Pulumi AI
A pool of Virtual Machines. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2022-09-01-preview.
Other available API versions: 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
Pools_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var pool = new AzureNative.DevCenter.Pool("pool", new()
{
DevBoxDefinitionName = "WebDevBox",
LicenseType = AzureNative.DevCenter.LicenseType.Windows_Client,
LocalAdministrator = AzureNative.DevCenter.LocalAdminStatus.Enabled,
Location = "centralus",
NetworkConnectionName = "Network1-westus2",
PoolName = "DevPool",
ProjectName = "DevProject",
ResourceGroupName = "rg1",
StopOnDisconnect = new AzureNative.DevCenter.Inputs.StopOnDisconnectConfigurationArgs
{
GracePeriodMinutes = 60,
Status = AzureNative.DevCenter.StopOnDisconnectEnableStatus.Enabled,
},
});
});
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.NewPool(ctx, "pool", &devcenter.PoolArgs{
DevBoxDefinitionName: pulumi.String("WebDevBox"),
LicenseType: pulumi.String(devcenter.LicenseType_Windows_Client),
LocalAdministrator: pulumi.String(devcenter.LocalAdminStatusEnabled),
Location: pulumi.String("centralus"),
NetworkConnectionName: pulumi.String("Network1-westus2"),
PoolName: pulumi.String("DevPool"),
ProjectName: pulumi.String("DevProject"),
ResourceGroupName: pulumi.String("rg1"),
StopOnDisconnect: &devcenter.StopOnDisconnectConfigurationArgs{
GracePeriodMinutes: pulumi.Int(60),
Status: pulumi.String(devcenter.StopOnDisconnectEnableStatusEnabled),
},
})
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.Pool;
import com.pulumi.azurenative.devcenter.PoolArgs;
import com.pulumi.azurenative.devcenter.inputs.StopOnDisconnectConfigurationArgs;
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 pool = new Pool("pool", PoolArgs.builder()
.devBoxDefinitionName("WebDevBox")
.licenseType("Windows_Client")
.localAdministrator("Enabled")
.location("centralus")
.networkConnectionName("Network1-westus2")
.poolName("DevPool")
.projectName("DevProject")
.resourceGroupName("rg1")
.stopOnDisconnect(StopOnDisconnectConfigurationArgs.builder()
.gracePeriodMinutes(60)
.status("Enabled")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
pool = azure_native.devcenter.Pool("pool",
dev_box_definition_name="WebDevBox",
license_type=azure_native.devcenter.LicenseType.WINDOWS_CLIENT,
local_administrator=azure_native.devcenter.LocalAdminStatus.ENABLED,
location="centralus",
network_connection_name="Network1-westus2",
pool_name="DevPool",
project_name="DevProject",
resource_group_name="rg1",
stop_on_disconnect={
"grace_period_minutes": 60,
"status": azure_native.devcenter.StopOnDisconnectEnableStatus.ENABLED,
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const pool = new azure_native.devcenter.Pool("pool", {
devBoxDefinitionName: "WebDevBox",
licenseType: azure_native.devcenter.LicenseType.Windows_Client,
localAdministrator: azure_native.devcenter.LocalAdminStatus.Enabled,
location: "centralus",
networkConnectionName: "Network1-westus2",
poolName: "DevPool",
projectName: "DevProject",
resourceGroupName: "rg1",
stopOnDisconnect: {
gracePeriodMinutes: 60,
status: azure_native.devcenter.StopOnDisconnectEnableStatus.Enabled,
},
});
resources:
pool:
type: azure-native:devcenter:Pool
properties:
devBoxDefinitionName: WebDevBox
licenseType: Windows_Client
localAdministrator: Enabled
location: centralus
networkConnectionName: Network1-westus2
poolName: DevPool
projectName: DevProject
resourceGroupName: rg1
stopOnDisconnect:
gracePeriodMinutes: 60
status: Enabled
Create Pool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
@overload
def Pool(resource_name: str,
args: PoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Pool(resource_name: str,
opts: Optional[ResourceOptions] = None,
dev_box_definition_name: Optional[str] = None,
license_type: Optional[Union[str, LicenseType]] = None,
local_administrator: Optional[Union[str, LocalAdminStatus]] = None,
network_connection_name: Optional[str] = None,
project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
pool_name: Optional[str] = None,
stop_on_disconnect: Optional[StopOnDisconnectConfigurationArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
type: azure-native:devcenter:Pool
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 PoolArgs
- 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 PoolArgs
- 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 PoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PoolArgs
- 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 examplepoolResourceResourceFromDevcenter = new AzureNative.DevCenter.Pool("examplepoolResourceResourceFromDevcenter", new()
{
DevBoxDefinitionName = "string",
LicenseType = "string",
LocalAdministrator = "string",
NetworkConnectionName = "string",
ProjectName = "string",
ResourceGroupName = "string",
Location = "string",
PoolName = "string",
StopOnDisconnect = new AzureNative.DevCenter.Inputs.StopOnDisconnectConfigurationArgs
{
GracePeriodMinutes = 0,
Status = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := devcenter.NewPool(ctx, "examplepoolResourceResourceFromDevcenter", &devcenter.PoolArgs{
DevBoxDefinitionName: pulumi.String("string"),
LicenseType: pulumi.String("string"),
LocalAdministrator: pulumi.String("string"),
NetworkConnectionName: pulumi.String("string"),
ProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
PoolName: pulumi.String("string"),
StopOnDisconnect: &devcenter.StopOnDisconnectConfigurationArgs{
GracePeriodMinutes: pulumi.Int(0),
Status: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var examplepoolResourceResourceFromDevcenter = new Pool("examplepoolResourceResourceFromDevcenter", PoolArgs.builder()
.devBoxDefinitionName("string")
.licenseType("string")
.localAdministrator("string")
.networkConnectionName("string")
.projectName("string")
.resourceGroupName("string")
.location("string")
.poolName("string")
.stopOnDisconnect(StopOnDisconnectConfigurationArgs.builder()
.gracePeriodMinutes(0)
.status("string")
.build())
.tags(Map.of("string", "string"))
.build());
examplepool_resource_resource_from_devcenter = azure_native.devcenter.Pool("examplepoolResourceResourceFromDevcenter",
dev_box_definition_name="string",
license_type="string",
local_administrator="string",
network_connection_name="string",
project_name="string",
resource_group_name="string",
location="string",
pool_name="string",
stop_on_disconnect={
"gracePeriodMinutes": 0,
"status": "string",
},
tags={
"string": "string",
})
const examplepoolResourceResourceFromDevcenter = new azure_native.devcenter.Pool("examplepoolResourceResourceFromDevcenter", {
devBoxDefinitionName: "string",
licenseType: "string",
localAdministrator: "string",
networkConnectionName: "string",
projectName: "string",
resourceGroupName: "string",
location: "string",
poolName: "string",
stopOnDisconnect: {
gracePeriodMinutes: 0,
status: "string",
},
tags: {
string: "string",
},
});
type: azure-native:devcenter:Pool
properties:
devBoxDefinitionName: string
licenseType: string
localAdministrator: string
location: string
networkConnectionName: string
poolName: string
projectName: string
resourceGroupName: string
stopOnDisconnect:
gracePeriodMinutes: 0
status: string
tags:
string: string
Pool 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 Pool resource accepts the following input properties:
- Dev
Box stringDefinition Name - Name of a Dev Box definition in parent Project of this Pool
- License
Type string | Pulumi.Azure Native. Dev Center. License Type - Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
- Local
Administrator string | Pulumi.Azure Native. Dev Center. Local Admin Status - Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
- Network
Connection stringName - Name of a Network Connection in parent Project of this Pool
- Project
Name string - The name of the project.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Pool
Name string - Name of the pool.
- Stop
On Pulumi.Disconnect Azure Native. Dev Center. Inputs. Stop On Disconnect Configuration - Stop on disconnect configuration settings for Dev Boxes created in this pool.
- Dictionary<string, string>
- Resource tags.
- Dev
Box stringDefinition Name - Name of a Dev Box definition in parent Project of this Pool
- License
Type string | LicenseType - Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
- Local
Administrator string | LocalAdmin Status - Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
- Network
Connection stringName - Name of a Network Connection in parent Project of this Pool
- Project
Name string - The name of the project.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Pool
Name string - Name of the pool.
- Stop
On StopDisconnect On Disconnect Configuration Args - Stop on disconnect configuration settings for Dev Boxes created in this pool.
- map[string]string
- Resource tags.
- dev
Box StringDefinition Name - Name of a Dev Box definition in parent Project of this Pool
- license
Type String | LicenseType - Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
- local
Administrator String | LocalAdmin Status - Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
- network
Connection StringName - Name of a Network Connection in parent Project of this Pool
- project
Name String - The name of the project.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- pool
Name String - Name of the pool.
- stop
On StopDisconnect On Disconnect Configuration - Stop on disconnect configuration settings for Dev Boxes created in this pool.
- Map<String,String>
- Resource tags.
- dev
Box stringDefinition Name - Name of a Dev Box definition in parent Project of this Pool
- license
Type string | LicenseType - Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
- local
Administrator string | LocalAdmin Status - Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
- network
Connection stringName - Name of a Network Connection in parent Project of this Pool
- project
Name string - The name of the project.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- pool
Name string - Name of the pool.
- stop
On StopDisconnect On Disconnect Configuration - Stop on disconnect configuration settings for Dev Boxes created in this pool.
- {[key: string]: string}
- Resource tags.
- dev_
box_ strdefinition_ name - Name of a Dev Box definition in parent Project of this Pool
- license_
type str | LicenseType - Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
- local_
administrator str | LocalAdmin Status - Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
- network_
connection_ strname - Name of a Network Connection in parent Project of this Pool
- project_
name str - The name of the project.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- pool_
name str - Name of the pool.
- stop_
on_ Stopdisconnect On Disconnect Configuration Args - Stop on disconnect configuration settings for Dev Boxes created in this pool.
- Mapping[str, str]
- Resource tags.
- dev
Box StringDefinition Name - Name of a Dev Box definition in parent Project of this Pool
- license
Type String | "Windows_Client" - Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
- local
Administrator String | "Disabled" | "Enabled" - Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
- network
Connection StringName - Name of a Network Connection in parent Project of this Pool
- project
Name String - The name of the project.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- pool
Name String - Name of the pool.
- stop
On Property MapDisconnect - Stop on disconnect configuration settings for Dev Boxes created in this pool.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Pool resource produces the following output properties:
- Health
Status string - Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
- Health
Status List<Pulumi.Details Azure Native. Dev Center. Outputs. Health Status Detail Response> - Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
- Id string
- The provider-assigned unique ID for this managed resource.
- 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"
- Health
Status string - Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
- Health
Status []HealthDetails Status Detail Response - Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
- Id string
- The provider-assigned unique ID for this managed resource.
- 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"
- health
Status String - Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
- health
Status List<HealthDetails Status Detail Response> - Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
- id String
- The provider-assigned unique ID for this managed resource.
- 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"
- health
Status string - Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
- health
Status HealthDetails Status Detail Response[] - Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
- id string
- The provider-assigned unique ID for this managed resource.
- 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"
- health_
status str - Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
- health_
status_ Sequence[Healthdetails Status Detail Response] - Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
- 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 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"
- health
Status String - Overall health status of the Pool. Indicates whether or not the Pool is available to create Dev Boxes.
- health
Status List<Property Map>Details - Details on the Pool health status to help diagnose issues. This is only populated when the pool status indicates the pool is in a non-healthy state
- id String
- The provider-assigned unique ID for this managed resource.
- 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
HealthStatusDetailResponse, HealthStatusDetailResponseArgs
LicenseType, LicenseTypeArgs
- Windows_Client
- Windows_Client
- License
Type_Windows_Client - Windows_Client
- Windows_Client
- Windows_Client
- Windows_Client
- Windows_Client
- WINDOWS_CLIENT
- Windows_Client
- "Windows_Client"
- Windows_Client
LocalAdminStatus, LocalAdminStatusArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Local
Admin Status Disabled - Disabled
- Local
Admin Status Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
StopOnDisconnectConfiguration, StopOnDisconnectConfigurationArgs
- Grace
Period intMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- Status
string | Pulumi.
Azure Native. Dev Center. Stop On Disconnect Enable Status - Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- Grace
Period intMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- Status
string | Stop
On Disconnect Enable Status - Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace
Period IntegerMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status
String | Stop
On Disconnect Enable Status - Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace
Period numberMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status
string | Stop
On Disconnect Enable Status - Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace_
period_ intminutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status
str | Stop
On Disconnect Enable Status - Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace
Period NumberMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status String | "Enabled" | "Disabled"
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
StopOnDisconnectConfigurationResponse, StopOnDisconnectConfigurationResponseArgs
- Grace
Period intMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- Status string
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- Grace
Period intMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- Status string
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace
Period IntegerMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status String
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace
Period numberMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status string
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace_
period_ intminutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status str
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
- grace
Period NumberMinutes - The specified time in minutes to wait before stopping a Dev Box once disconnect is detected.
- status String
- Whether the feature to stop the Dev Box on disconnect once the grace period has lapsed is enabled.
StopOnDisconnectEnableStatus, StopOnDisconnectEnableStatusArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Stop
On Disconnect Enable Status Enabled - Enabled
- Stop
On Disconnect Enable Status Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
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:Pool DevPool /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/projects/{projectName}/pools/{poolName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0