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

com.pulumi.azure.digitaltwins.kotlin.InstanceArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.digitaltwins.kotlin

import com.pulumi.azure.digitaltwins.InstanceArgs.builder
import com.pulumi.azure.digitaltwins.kotlin.inputs.InstanceIdentityArgs
import com.pulumi.azure.digitaltwins.kotlin.inputs.InstanceIdentityArgsBuilder
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

/**
 * Manages a Digital Twins instance.
 * ## 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 exampleInstance = new azure.digitaltwins.Instance("example", {
 *     name: "example-DT",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     tags: {
 *         foo: "bar",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example_resources",
 *     location="West Europe")
 * example_instance = azure.digitaltwins.Instance("example",
 *     name="example-DT",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     tags={
 *         "foo": "bar",
 *     })
 * ```
 * ```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 exampleInstance = new Azure.DigitalTwins.Instance("example", new()
 *     {
 *         Name = "example-DT",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         Tags =
 *         {
 *             { "foo", "bar" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/digitaltwins"
 * 	"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 = digitaltwins.NewInstance(ctx, "example", &digitaltwins.InstanceArgs{
 * 			Name:              pulumi.String("example-DT"),
 * 			ResourceGroupName: example.Name,
 * 			Location:          example.Location,
 * 			Tags: pulumi.StringMap{
 * 				"foo": pulumi.String("bar"),
 * 			},
 * 		})
 * 		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.digitaltwins.Instance;
 * import com.pulumi.azure.digitaltwins.InstanceArgs;
 * 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 exampleInstance = new Instance("exampleInstance", InstanceArgs.builder()
 *             .name("example-DT")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .tags(Map.of("foo", "bar"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example_resources
 *       location: West Europe
 *   exampleInstance:
 *     type: azure:digitaltwins:Instance
 *     name: example
 *     properties:
 *       name: example-DT
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       tags:
 *         foo: bar
 * ```
 * 
 * ## Import
 * Digital Twins instances can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:digitaltwins/instance:Instance example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DigitalTwins/digitalTwinsInstances/dt1
 * ```
 * @property identity An `identity` block as defined below.
 * @property location The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
 * @property name The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
 * @property resourceGroupName The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
 * @property tags A mapping of tags which should be assigned to the Digital Twins instance.
 */
public data class InstanceArgs(
    public val identity: Output? = null,
    public val location: Output? = null,
    public val name: Output? = null,
    public val resourceGroupName: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.digitaltwins.InstanceArgs =
        com.pulumi.azure.digitaltwins.InstanceArgs.builder()
            .identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .location(location?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [InstanceArgs].
 */
@PulumiTagMarker
public class InstanceArgsBuilder internal constructor() {
    private var identity: Output? = null

    private var location: Output? = null

    private var name: Output? = null

    private var resourceGroupName: Output? = null

    private var tags: Output>? = null

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("kkyopiixkddjurre")
    public suspend fun identity(`value`: Output) {
        this.identity = value
    }

    /**
     * @param value The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
     */
    @JvmName("vqblqpgqntrvkkvr")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
     */
    @JvmName("ajwxnfbvsnxwinll")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
     */
    @JvmName("raagflwjgtdagqrj")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value A mapping of tags which should be assigned to the Digital Twins instance.
     */
    @JvmName("miliacmnabgdkapc")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("xlogmsckedgwrghw")
    public suspend fun identity(`value`: InstanceIdentityArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identity = mapped
    }

    /**
     * @param argument An `identity` block as defined below.
     */
    @JvmName("vcjkcckgklrvajxc")
    public suspend fun identity(argument: suspend InstanceIdentityArgsBuilder.() -> Unit) {
        val toBeMapped = InstanceIdentityArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.identity = mapped
    }

    /**
     * @param value The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
     */
    @JvmName("veledtfwnjxmhkcv")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
     */
    @JvmName("fulvwdxxbblmstmp")
    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 where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
     */
    @JvmName("cxwqhdpyjwybdpvk")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value A mapping of tags which should be assigned to the Digital Twins instance.
     */
    @JvmName("nwgbcsbrhaoxntgx")
    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 which should be assigned to the Digital Twins instance.
     */
    @JvmName("xwgidnvtboxecvgv")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): InstanceArgs = InstanceArgs(
        identity = identity,
        location = location,
        name = name,
        resourceGroupName = resourceGroupName,
        tags = tags,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy