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

com.pulumi.alicloud.vpc.kotlin.RouteTableArgs.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: 3.62.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.alicloud.vpc.kotlin

import com.pulumi.alicloud.vpc.RouteTableArgs.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

/**
 * Provides a VPC Route Table resource. Currently, customized route tables are available in most regions apart from China (Beijing), China (Hangzhou), and China (Shenzhen) regions.
 * For information about VPC Route Table and how to use it, see [What is Route Table](https://www.alibabacloud.com/help/doc-detail/87057.htm).
 * ## Example Usage
 * Basic Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as alicloud from "@pulumi/alicloud";
 * const config = new pulumi.Config();
 * const name = config.get("name") || "terraform-example";
 * const defaultVpc = new alicloud.vpc.Network("defaultVpc", {vpcName: name});
 * const _default = new alicloud.vpc.RouteTable("default", {
 *     description: "test-description",
 *     vpcId: defaultVpc.id,
 *     routeTableName: name,
 *     associateType: "VSwitch",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_alicloud as alicloud
 * config = pulumi.Config()
 * name = config.get("name")
 * if name is None:
 *     name = "terraform-example"
 * default_vpc = alicloud.vpc.Network("defaultVpc", vpc_name=name)
 * default = alicloud.vpc.RouteTable("default",
 *     description="test-description",
 *     vpc_id=default_vpc.id,
 *     route_table_name=name,
 *     associate_type="VSwitch")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AliCloud = Pulumi.AliCloud;
 * return await Deployment.RunAsync(() =>
 * {
 *     var config = new Config();
 *     var name = config.Get("name") ?? "terraform-example";
 *     var defaultVpc = new AliCloud.Vpc.Network("defaultVpc", new()
 *     {
 *         VpcName = name,
 *     });
 *     var @default = new AliCloud.Vpc.RouteTable("default", new()
 *     {
 *         Description = "test-description",
 *         VpcId = defaultVpc.Id,
 *         RouteTableName = name,
 *         AssociateType = "VSwitch",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		cfg := config.New(ctx, "")
 * 		name := "terraform-example"
 * 		if param := cfg.Get("name"); param != "" {
 * 			name = param
 * 		}
 * 		defaultVpc, err := vpc.NewNetwork(ctx, "defaultVpc", &vpc.NetworkArgs{
 * 			VpcName: pulumi.String(name),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = vpc.NewRouteTable(ctx, "default", &vpc.RouteTableArgs{
 * 			Description:    pulumi.String("test-description"),
 * 			VpcId:          defaultVpc.ID(),
 * 			RouteTableName: pulumi.String(name),
 * 			AssociateType:  pulumi.String("VSwitch"),
 * 		})
 * 		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.alicloud.vpc.Network;
 * import com.pulumi.alicloud.vpc.NetworkArgs;
 * import com.pulumi.alicloud.vpc.RouteTable;
 * import com.pulumi.alicloud.vpc.RouteTableArgs;
 * 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) {
 *         final var config = ctx.config();
 *         final var name = config.get("name").orElse("terraform-example");
 *         var defaultVpc = new Network("defaultVpc", NetworkArgs.builder()
 *             .vpcName(name)
 *             .build());
 *         var default_ = new RouteTable("default", RouteTableArgs.builder()
 *             .description("test-description")
 *             .vpcId(defaultVpc.id())
 *             .routeTableName(name)
 *             .associateType("VSwitch")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * configuration:
 *   name:
 *     type: string
 *     default: terraform-example
 * resources:
 *   defaultVpc:
 *     type: alicloud:vpc:Network
 *     properties:
 *       vpcName: ${name}
 *   default:
 *     type: alicloud:vpc:RouteTable
 *     properties:
 *       description: test-description
 *       vpcId: ${defaultVpc.id}
 *       routeTableName: ${name}
 *       associateType: VSwitch
 * ```
 * 
 * ## Import
 * VPC Route Table can be imported using the id, e.g.
 * ```sh
 * $ pulumi import alicloud:vpc/routeTable:RouteTable example 
 * ```
 * @property associateType The type of cloud resource that is bound to the routing table. Value:
 * - **VSwitch**: switch.
 * - **Gateway**:IPv4 Gateway.
 * @property description Description of the routing table.
 * @property name Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
 * @property routeTableName The name of the routing table.
 * @property tags The tag.
 * @property vpcId The ID of VPC.
 * The following arguments will be discarded. Please use new fields as soon as possible:
 */
public data class RouteTableArgs(
    public val associateType: Output? = null,
    public val description: Output? = null,
    @Deprecated(
        message = """
  Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name'
      instead.
  """,
    )
    public val name: Output? = null,
    public val routeTableName: Output? = null,
    public val tags: Output>? = null,
    public val vpcId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.alicloud.vpc.RouteTableArgs =
        com.pulumi.alicloud.vpc.RouteTableArgs.builder()
            .associateType(associateType?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .routeTableName(routeTableName?.applyValue({ args0 -> args0 }))
            .tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .vpcId(vpcId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RouteTableArgs].
 */
@PulumiTagMarker
public class RouteTableArgsBuilder internal constructor() {
    private var associateType: Output? = null

    private var description: Output? = null

    private var name: Output? = null

    private var routeTableName: Output? = null

    private var tags: Output>? = null

    private var vpcId: Output? = null

    /**
     * @param value The type of cloud resource that is bound to the routing table. Value:
     * - **VSwitch**: switch.
     * - **Gateway**:IPv4 Gateway.
     */
    @JvmName("hnarmrsghbxpyvwf")
    public suspend fun associateType(`value`: Output) {
        this.associateType = value
    }

    /**
     * @param value Description of the routing table.
     */
    @JvmName("isvwscjbvlrhkqyc")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
     */
    @Deprecated(
        message = """
  Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name'
      instead.
  """,
    )
    @JvmName("kbidbgscffttxmsw")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The name of the routing table.
     */
    @JvmName("jaysjemybteotyuj")
    public suspend fun routeTableName(`value`: Output) {
        this.routeTableName = value
    }

    /**
     * @param value The tag.
     */
    @JvmName("eevadkmwtcjaiccj")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value The ID of VPC.
     * The following arguments will be discarded. Please use new fields as soon as possible:
     */
    @JvmName("ywgddjbflfshctfo")
    public suspend fun vpcId(`value`: Output) {
        this.vpcId = value
    }

    /**
     * @param value The type of cloud resource that is bound to the routing table. Value:
     * - **VSwitch**: switch.
     * - **Gateway**:IPv4 Gateway.
     */
    @JvmName("wlbrbptlpdtgghlf")
    public suspend fun associateType(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.associateType = mapped
    }

    /**
     * @param value Description of the routing table.
     */
    @JvmName("lwexpcypmhylxpem")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
     */
    @Deprecated(
        message = """
  Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name'
      instead.
  """,
    )
    @JvmName("rguwhvtisjctvclw")
    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 routing table.
     */
    @JvmName("qqlddarpjoyubruk")
    public suspend fun routeTableName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.routeTableName = mapped
    }

    /**
     * @param value The tag.
     */
    @JvmName("jdhdbixysunieefi")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values The tag.
     */
    @JvmName("qtijfwbkrllvtqri")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value The ID of VPC.
     * The following arguments will be discarded. Please use new fields as soon as possible:
     */
    @JvmName("kvtqtkegsippkted")
    public suspend fun vpcId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.vpcId = mapped
    }

    internal fun build(): RouteTableArgs = RouteTableArgs(
        associateType = associateType,
        description = description,
        name = name,
        routeTableName = routeTableName,
        tags = tags,
        vpcId = vpcId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy