Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.devcenter.kotlin
import com.pulumi.azurenative.devcenter.PoolArgs.builder
import com.pulumi.azurenative.devcenter.kotlin.enums.LicenseType
import com.pulumi.azurenative.devcenter.kotlin.enums.LocalAdminStatus
import com.pulumi.azurenative.devcenter.kotlin.inputs.StopOnDisconnectConfigurationArgs
import com.pulumi.azurenative.devcenter.kotlin.inputs.StopOnDisconnectConfigurationArgsBuilder
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* 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
* ```csharp
* 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,
* },
* });
* });
* ```
* ```go
* 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
* })
* }
* ```
* ```java
* 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
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:devcenter:Pool DevPool /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/projects/{projectName}/pools/{poolName}
* ```
* @property devBoxDefinitionName Name of a Dev Box definition in parent Project of this Pool
* @property licenseType Specifies the license type indicating the caller has already acquired licenses for the Dev Boxes that will be created.
* @property localAdministrator Indicates whether owners of Dev Boxes in this pool are added as local administrators on the Dev Box.
* @property location The geo-location where the resource lives
* @property networkConnectionName Name of a Network Connection in parent Project of this Pool
* @property poolName Name of the pool.
* @property projectName The name of the project.
* @property resourceGroupName The name of the resource group. The name is case insensitive.
* @property stopOnDisconnect Stop on disconnect configuration settings for Dev Boxes created in this pool.
* @property tags Resource tags.
*/
public data class PoolArgs(
public val devBoxDefinitionName: Output? = null,
public val licenseType: Output>? = null,
public val localAdministrator: Output>? = null,
public val location: Output? = null,
public val networkConnectionName: Output? = null,
public val poolName: Output? = null,
public val projectName: Output? = null,
public val resourceGroupName: Output? = null,
public val stopOnDisconnect: Output? = null,
public val tags: Output