All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.devtest.kotlin.LabArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.devtest.kotlin

import com.pulumi.azure.devtest.LabArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Deprecated
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Manages a Dev Test Lab.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as azure from "@pulumi/azure";
 * const example = new azure.core.ResourceGroup("example", {
 *     name: "example-resources",
 *     location: "West Europe",
 * });
 * const exampleLab = new azure.devtest.Lab("example", {
 *     name: "example-devtestlab",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     tags: {
 *         Sydney: "Australia",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_lab = azure.devtest.Lab("example",
 *     name="example-devtestlab",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     tags={
 *         "Sydney": "Australia",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Azure = Pulumi.Azure;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Azure.Core.ResourceGroup("example", new()
 *     {
 *         Name = "example-resources",
 *         Location = "West Europe",
 *     });
 *     var exampleLab = new Azure.DevTest.Lab("example", new()
 *     {
 *         Name = "example-devtestlab",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         Tags =
 *         {
 *             { "Sydney", "Australia" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/devtest"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
 * 			Name:     pulumi.String("example-resources"),
 * 			Location: pulumi.String("West Europe"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = devtest.NewLab(ctx, "example", &devtest.LabArgs{
 * 			Name:              pulumi.String("example-devtestlab"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			Tags: pulumi.StringMap{
 * 				"Sydney": pulumi.String("Australia"),
 * 			},
 * 		})
 * 		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.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.devtest.Lab;
 * import com.pulumi.azure.devtest.LabArgs;
 * 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-resources")
 *             .location("West Europe")
 *             .build());
 *         var exampleLab = new Lab("exampleLab", LabArgs.builder()
 *             .name("example-devtestlab")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .tags(Map.of("Sydney", "Australia"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleLab:
 *     type: azure:devtest:Lab
 *     name: example
 *     properties:
 *       name: example-devtestlab
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       tags:
 *         Sydney: Australia
 * ```
 * 
 * ## Import
 * Dev Test Labs can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:devtest/lab:Lab lab1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DevTestLab/labs/lab1
 * ```
 * @property location Specifies the supported Azure location where the Dev Test Lab should exist. Changing this forces a new resource to be created.
 * @property name Specifies the name of the Dev Test Lab. Changing this forces a new resource to be created.
 * @property resourceGroupName The name of the resource group under which the Dev Test Lab resource has to be created. Changing this forces a new resource to be created.
 * @property storageType The type of storage used by the Dev Test Lab. Possible values are `Standard` and `Premium`. Defaults to `Premium`.
 * > **Note:** `storage_type` has been deprecated as the API no longer supports it and will be removed in Version 4.0 of the provider.
 * @property tags A mapping of tags to assign to the resource.
 */
public data class LabArgs(
    public val location: Output? = null,
    public val name: Output? = null,
    public val resourceGroupName: Output? = null,
    @Deprecated(
        message = """
  `storage_type` is deprecated in version 3.0 of the AzureRM provider and will be removed in version
      4.0.
  """,
    )
    public val storageType: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.devtest.LabArgs =
        com.pulumi.azure.devtest.LabArgs.builder()
            .location(location?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .storageType(storageType?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [LabArgs].
 */
@PulumiTagMarker
public class LabArgsBuilder internal constructor() {
    private var location: Output? = null

    private var name: Output? = null

    private var resourceGroupName: Output? = null

    private var storageType: Output? = null

    private var tags: Output>? = null

    /**
     * @param value Specifies the supported Azure location where the Dev Test Lab should exist. Changing this forces a new resource to be created.
     */
    @JvmName("tacchwkagndthmrs")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value Specifies the name of the Dev Test Lab. Changing this forces a new resource to be created.
     */
    @JvmName("mspalcwssciyptxo")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The name of the resource group under which the Dev Test Lab resource has to be created. Changing this forces a new resource to be created.
     */
    @JvmName("lnryaxukjaqcyeuc")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value The type of storage used by the Dev Test Lab. Possible values are `Standard` and `Premium`. Defaults to `Premium`.
     * > **Note:** `storage_type` has been deprecated as the API no longer supports it and will be removed in Version 4.0 of the provider.
     */
    @Deprecated(
        message = """
  `storage_type` is deprecated in version 3.0 of the AzureRM provider and will be removed in version
      4.0.
  """,
    )
    @JvmName("pxmrdsrwjihgxpwc")
    public suspend fun storageType(`value`: Output) {
        this.storageType = value
    }

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("rancfxqgojbajsdx")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value Specifies the supported Azure location where the Dev Test Lab should exist. Changing this forces a new resource to be created.
     */
    @JvmName("yhibjabcoredwtbd")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value Specifies the name of the Dev Test Lab. Changing this forces a new resource to be created.
     */
    @JvmName("surkhgdjcpmlhrnr")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The name of the resource group under which the Dev Test Lab resource has to be created. Changing this forces a new resource to be created.
     */
    @JvmName("qdijrtgoxjfbrhug")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value The type of storage used by the Dev Test Lab. Possible values are `Standard` and `Premium`. Defaults to `Premium`.
     * > **Note:** `storage_type` has been deprecated as the API no longer supports it and will be removed in Version 4.0 of the provider.
     */
    @Deprecated(
        message = """
  `storage_type` is deprecated in version 3.0 of the AzureRM provider and will be removed in version
      4.0.
  """,
    )
    @JvmName("qjoguffjpuqmmacf")
    public suspend fun storageType(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageType = mapped
    }

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("pjkmgufeqrjniuvc")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values A mapping of tags to assign to the resource.
     */
    @JvmName("onsiiutdbqujckpq")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): LabArgs = LabArgs(
        location = location,
        name = name,
        resourceGroupName = resourceGroupName,
        storageType = storageType,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy