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

com.pulumi.azure.devtest.kotlin.VirtualNetworkArgs.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.devtest.kotlin

import com.pulumi.azure.devtest.VirtualNetworkArgs.builder
import com.pulumi.azure.devtest.kotlin.inputs.VirtualNetworkSubnetArgs
import com.pulumi.azure.devtest.kotlin.inputs.VirtualNetworkSubnetArgsBuilder
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 Virtual Network within a DevTest 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",
 *     },
 * });
 * const exampleVirtualNetwork = new azure.devtest.VirtualNetwork("example", {
 *     name: "example-network",
 *     labName: exampleLab.name,
 *     resourceGroupName: example.name,
 *     subnet: {
 *         usePublicIpAddress: "Allow",
 *         useInVirtualMachineCreation: "Allow",
 *     },
 * });
 * ```
 * ```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",
 *     })
 * example_virtual_network = azure.devtest.VirtualNetwork("example",
 *     name="example-network",
 *     lab_name=example_lab.name,
 *     resource_group_name=example.name,
 *     subnet=azure.devtest.VirtualNetworkSubnetArgs(
 *         use_public_ip_address="Allow",
 *         use_in_virtual_machine_creation="Allow",
 *     ))
 * ```
 * ```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" },
 *         },
 *     });
 *     var exampleVirtualNetwork = new Azure.DevTest.VirtualNetwork("example", new()
 *     {
 *         Name = "example-network",
 *         LabName = exampleLab.Name,
 *         ResourceGroupName = example.Name,
 *         Subnet = new Azure.DevTest.Inputs.VirtualNetworkSubnetArgs
 *         {
 *             UsePublicIpAddress = "Allow",
 *             UseInVirtualMachineCreation = "Allow",
 *         },
 *     });
 * });
 * ```
 * ```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
 * 		}
 * 		exampleLab, 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
 * 		}
 * 		_, err = devtest.NewVirtualNetwork(ctx, "example", &devtest.VirtualNetworkArgs{
 * 			Name:              pulumi.String("example-network"),
 * 			LabName:           exampleLab.Name,
 * 			ResourceGroupName: example.Name,
 * 			Subnet: &devtest.VirtualNetworkSubnetArgs{
 * 				UsePublicIpAddress:          pulumi.String("Allow"),
 * 				UseInVirtualMachineCreation: pulumi.String("Allow"),
 * 			},
 * 		})
 * 		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 com.pulumi.azure.devtest.VirtualNetwork;
 * import com.pulumi.azure.devtest.VirtualNetworkArgs;
 * import com.pulumi.azure.devtest.inputs.VirtualNetworkSubnetArgs;
 * 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());
 *         var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
 *             .name("example-network")
 *             .labName(exampleLab.name())
 *             .resourceGroupName(example.name())
 *             .subnet(VirtualNetworkSubnetArgs.builder()
 *                 .usePublicIpAddress("Allow")
 *                 .useInVirtualMachineCreation("Allow")
 *                 .build())
 *             .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
 *   exampleVirtualNetwork:
 *     type: azure:devtest:VirtualNetwork
 *     name: example
 *     properties:
 *       name: example-network
 *       labName: ${exampleLab.name}
 *       resourceGroupName: ${example.name}
 *       subnet:
 *         usePublicIpAddress: Allow
 *         useInVirtualMachineCreation: Allow
 * ```
 * 
 * ## Import
 * DevTest Virtual Networks can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:devtest/virtualNetwork:VirtualNetwork network1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DevTestLab/labs/lab1/virtualNetworks/network1
 * ```
 * @property description A description for the Virtual Network.
 * @property labName Specifies the name of the Dev Test Lab in which the Virtual Network should be created. Changing this forces a new resource to be created.
 * @property name Specifies the name of the Dev Test Virtual Network. Changing this forces a new resource to be created.
 * @property resourceGroupName The name of the resource group in which the Dev Test Lab resource exists. Changing this forces a new resource to be created.
 * @property subnet A `subnet` block as defined below.
 * @property tags A mapping of tags to assign to the resource.
 */
public data class VirtualNetworkArgs(
    public val description: Output? = null,
    public val labName: Output? = null,
    public val name: Output? = null,
    public val resourceGroupName: Output? = null,
    public val subnet: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.devtest.VirtualNetworkArgs =
        com.pulumi.azure.devtest.VirtualNetworkArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .labName(labName?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .subnet(subnet?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [VirtualNetworkArgs].
 */
@PulumiTagMarker
public class VirtualNetworkArgsBuilder internal constructor() {
    private var description: Output? = null

    private var labName: Output? = null

    private var name: Output? = null

    private var resourceGroupName: Output? = null

    private var subnet: Output? = null

    private var tags: Output>? = null

    /**
     * @param value A description for the Virtual Network.
     */
    @JvmName("teixxousfrrqciip")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

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

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

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

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

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

    /**
     * @param value A description for the Virtual Network.
     */
    @JvmName("hhwrndosiwbegynm")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

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

    /**
     * @param value Specifies the name of the Dev Test Virtual Network. Changing this forces a new resource to be created.
     */
    @JvmName("sedwymwsqkcxnmns")
    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 in which the Dev Test Lab resource exists. Changing this forces a new resource to be created.
     */
    @JvmName("mustlmvuscaadhgs")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

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

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

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("exhxjjydgipwbiuy")
    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("wwfwmmqmyjixbsvp")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): VirtualNetworkArgs = VirtualNetworkArgs(
        description = description,
        labName = labName,
        name = name,
        resourceGroupName = resourceGroupName,
        subnet = subnet,
        tags = tags,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy