1. Packages
  2. Volcengine
  3. API Docs
  4. transit_router
  5. RouteTable
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

volcengine.transit_router.RouteTable

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

    Provides a resource to manage transit router route table

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooTransitRouter = new Volcengine.Transit_router.TransitRouter("fooTransitRouter", new()
        {
            TransitRouterName = "test-tf-acc",
            Description = "test-tf-acc",
        });
    
        var fooRouteTable = new Volcengine.Transit_router.RouteTable("fooRouteTable", new()
        {
            Description = "tf-test-acc-description",
            TransitRouterRouteTableName = "tf-table-test-acc",
            TransitRouterId = fooTransitRouter.Id,
            Tags = new[]
            {
                new Volcengine.Transit_router.Inputs.RouteTableTagArgs
                {
                    Key = "k1",
                    Value = "v1",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/transit_router"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooTransitRouter, err := transit_router.NewTransitRouter(ctx, "fooTransitRouter", &transit_router.TransitRouterArgs{
    			TransitRouterName: pulumi.String("test-tf-acc"),
    			Description:       pulumi.String("test-tf-acc"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = transit_router.NewRouteTable(ctx, "fooRouteTable", &transit_router.RouteTableArgs{
    			Description:                 pulumi.String("tf-test-acc-description"),
    			TransitRouterRouteTableName: pulumi.String("tf-table-test-acc"),
    			TransitRouterId:             fooTransitRouter.ID(),
    			Tags: transit_router.RouteTableTagArray{
    				&transit_router.RouteTableTagArgs{
    					Key:   pulumi.String("k1"),
    					Value: pulumi.String("v1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.transit_router.TransitRouter;
    import com.pulumi.volcengine.transit_router.TransitRouterArgs;
    import com.pulumi.volcengine.transit_router.RouteTable;
    import com.pulumi.volcengine.transit_router.RouteTableArgs;
    import com.pulumi.volcengine.transit_router.inputs.RouteTableTagArgs;
    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 fooTransitRouter = new TransitRouter("fooTransitRouter", TransitRouterArgs.builder()        
                .transitRouterName("test-tf-acc")
                .description("test-tf-acc")
                .build());
    
            var fooRouteTable = new RouteTable("fooRouteTable", RouteTableArgs.builder()        
                .description("tf-test-acc-description")
                .transitRouterRouteTableName("tf-table-test-acc")
                .transitRouterId(fooTransitRouter.id())
                .tags(RouteTableTagArgs.builder()
                    .key("k1")
                    .value("v1")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_transit_router = volcengine.transit_router.TransitRouter("fooTransitRouter",
        transit_router_name="test-tf-acc",
        description="test-tf-acc")
    foo_route_table = volcengine.transit_router.RouteTable("fooRouteTable",
        description="tf-test-acc-description",
        transit_router_route_table_name="tf-table-test-acc",
        transit_router_id=foo_transit_router.id,
        tags=[volcengine.transit_router.RouteTableTagArgs(
            key="k1",
            value="v1",
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooTransitRouter = new volcengine.transit_router.TransitRouter("fooTransitRouter", {
        transitRouterName: "test-tf-acc",
        description: "test-tf-acc",
    });
    const fooRouteTable = new volcengine.transit_router.RouteTable("fooRouteTable", {
        description: "tf-test-acc-description",
        transitRouterRouteTableName: "tf-table-test-acc",
        transitRouterId: fooTransitRouter.id,
        tags: [{
            key: "k1",
            value: "v1",
        }],
    });
    
    resources:
      fooTransitRouter:
        type: volcengine:transit_router:TransitRouter
        properties:
          transitRouterName: test-tf-acc
          description: test-tf-acc
      fooRouteTable:
        type: volcengine:transit_router:RouteTable
        properties:
          description: tf-test-acc-description
          transitRouterRouteTableName: tf-table-test-acc
          transitRouterId: ${fooTransitRouter.id}
          tags:
            - key: k1
              value: v1
    

    Create RouteTable Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RouteTable(name: string, args: RouteTableArgs, opts?: CustomResourceOptions);
    @overload
    def RouteTable(resource_name: str,
                   args: RouteTableArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def RouteTable(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   transit_router_id: Optional[str] = None,
                   description: Optional[str] = None,
                   tags: Optional[Sequence[RouteTableTagArgs]] = None,
                   transit_router_route_table_name: Optional[str] = None)
    func NewRouteTable(ctx *Context, name string, args RouteTableArgs, opts ...ResourceOption) (*RouteTable, error)
    public RouteTable(string name, RouteTableArgs args, CustomResourceOptions? opts = null)
    public RouteTable(String name, RouteTableArgs args)
    public RouteTable(String name, RouteTableArgs args, CustomResourceOptions options)
    
    type: volcengine:transit_router:RouteTable
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RouteTableArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RouteTableArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RouteTableArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteTableArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteTableArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var routeTableResource = new Volcengine.Transit_router.RouteTable("routeTableResource", new()
    {
        TransitRouterId = "string",
        Description = "string",
        Tags = new[]
        {
            new Volcengine.Transit_router.Inputs.RouteTableTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        TransitRouterRouteTableName = "string",
    });
    
    example, err := transit_router.NewRouteTable(ctx, "routeTableResource", &transit_router.RouteTableArgs{
    	TransitRouterId: pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	Tags: transit_router.RouteTableTagArray{
    		&transit_router.RouteTableTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	TransitRouterRouteTableName: pulumi.String("string"),
    })
    
    var routeTableResource = new RouteTable("routeTableResource", RouteTableArgs.builder()
        .transitRouterId("string")
        .description("string")
        .tags(RouteTableTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .transitRouterRouteTableName("string")
        .build());
    
    route_table_resource = volcengine.transit_router.RouteTable("routeTableResource",
        transit_router_id="string",
        description="string",
        tags=[volcengine.transit_router.RouteTableTagArgs(
            key="string",
            value="string",
        )],
        transit_router_route_table_name="string")
    
    const routeTableResource = new volcengine.transit_router.RouteTable("routeTableResource", {
        transitRouterId: "string",
        description: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
        transitRouterRouteTableName: "string",
    });
    
    type: volcengine:transit_router:RouteTable
    properties:
        description: string
        tags:
            - key: string
              value: string
        transitRouterId: string
        transitRouterRouteTableName: string
    

    RouteTable Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The RouteTable resource accepts the following input properties:

    TransitRouterId string
    Id of the transit router.
    Description string
    Description of the transit router route table.
    Tags List<RouteTableTag>
    Tags.
    TransitRouterRouteTableName string
    The name of the route table.
    TransitRouterId string
    Id of the transit router.
    Description string
    Description of the transit router route table.
    Tags []RouteTableTagArgs
    Tags.
    TransitRouterRouteTableName string
    The name of the route table.
    transitRouterId String
    Id of the transit router.
    description String
    Description of the transit router route table.
    tags List<RouteTableTag>
    Tags.
    transitRouterRouteTableName String
    The name of the route table.
    transitRouterId string
    Id of the transit router.
    description string
    Description of the transit router route table.
    tags RouteTableTag[]
    Tags.
    transitRouterRouteTableName string
    The name of the route table.
    transit_router_id str
    Id of the transit router.
    description str
    Description of the transit router route table.
    tags Sequence[RouteTableTagArgs]
    Tags.
    transit_router_route_table_name str
    The name of the route table.
    transitRouterId String
    Id of the transit router.
    description String
    Description of the transit router route table.
    tags List<Property Map>
    Tags.
    transitRouterRouteTableName String
    The name of the route table.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RouteTable resource produces the following output properties:

    CreationTime string
    The creation time of the route table.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the route table.
    TransitRouterRouteTableId string
    The id of the route table.
    TransitRouterRouteTableType string
    The type of route table.
    UpdateTime string
    The update time of the route table.
    CreationTime string
    The creation time of the route table.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the route table.
    TransitRouterRouteTableId string
    The id of the route table.
    TransitRouterRouteTableType string
    The type of route table.
    UpdateTime string
    The update time of the route table.
    creationTime String
    The creation time of the route table.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the route table.
    transitRouterRouteTableId String
    The id of the route table.
    transitRouterRouteTableType String
    The type of route table.
    updateTime String
    The update time of the route table.
    creationTime string
    The creation time of the route table.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the route table.
    transitRouterRouteTableId string
    The id of the route table.
    transitRouterRouteTableType string
    The type of route table.
    updateTime string
    The update time of the route table.
    creation_time str
    The creation time of the route table.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the route table.
    transit_router_route_table_id str
    The id of the route table.
    transit_router_route_table_type str
    The type of route table.
    update_time str
    The update time of the route table.
    creationTime String
    The creation time of the route table.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the route table.
    transitRouterRouteTableId String
    The id of the route table.
    transitRouterRouteTableType String
    The type of route table.
    updateTime String
    The update time of the route table.

    Look up Existing RouteTable Resource

    Get an existing RouteTable resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RouteTableState, opts?: CustomResourceOptions): RouteTable
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            creation_time: Optional[str] = None,
            description: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[RouteTableTagArgs]] = None,
            transit_router_id: Optional[str] = None,
            transit_router_route_table_id: Optional[str] = None,
            transit_router_route_table_name: Optional[str] = None,
            transit_router_route_table_type: Optional[str] = None,
            update_time: Optional[str] = None) -> RouteTable
    func GetRouteTable(ctx *Context, name string, id IDInput, state *RouteTableState, opts ...ResourceOption) (*RouteTable, error)
    public static RouteTable Get(string name, Input<string> id, RouteTableState? state, CustomResourceOptions? opts = null)
    public static RouteTable get(String name, Output<String> id, RouteTableState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreationTime string
    The creation time of the route table.
    Description string
    Description of the transit router route table.
    Status string
    The status of the route table.
    Tags List<RouteTableTag>
    Tags.
    TransitRouterId string
    Id of the transit router.
    TransitRouterRouteTableId string
    The id of the route table.
    TransitRouterRouteTableName string
    The name of the route table.
    TransitRouterRouteTableType string
    The type of route table.
    UpdateTime string
    The update time of the route table.
    CreationTime string
    The creation time of the route table.
    Description string
    Description of the transit router route table.
    Status string
    The status of the route table.
    Tags []RouteTableTagArgs
    Tags.
    TransitRouterId string
    Id of the transit router.
    TransitRouterRouteTableId string
    The id of the route table.
    TransitRouterRouteTableName string
    The name of the route table.
    TransitRouterRouteTableType string
    The type of route table.
    UpdateTime string
    The update time of the route table.
    creationTime String
    The creation time of the route table.
    description String
    Description of the transit router route table.
    status String
    The status of the route table.
    tags List<RouteTableTag>
    Tags.
    transitRouterId String
    Id of the transit router.
    transitRouterRouteTableId String
    The id of the route table.
    transitRouterRouteTableName String
    The name of the route table.
    transitRouterRouteTableType String
    The type of route table.
    updateTime String
    The update time of the route table.
    creationTime string
    The creation time of the route table.
    description string
    Description of the transit router route table.
    status string
    The status of the route table.
    tags RouteTableTag[]
    Tags.
    transitRouterId string
    Id of the transit router.
    transitRouterRouteTableId string
    The id of the route table.
    transitRouterRouteTableName string
    The name of the route table.
    transitRouterRouteTableType string
    The type of route table.
    updateTime string
    The update time of the route table.
    creation_time str
    The creation time of the route table.
    description str
    Description of the transit router route table.
    status str
    The status of the route table.
    tags Sequence[RouteTableTagArgs]
    Tags.
    transit_router_id str
    Id of the transit router.
    transit_router_route_table_id str
    The id of the route table.
    transit_router_route_table_name str
    The name of the route table.
    transit_router_route_table_type str
    The type of route table.
    update_time str
    The update time of the route table.
    creationTime String
    The creation time of the route table.
    description String
    Description of the transit router route table.
    status String
    The status of the route table.
    tags List<Property Map>
    Tags.
    transitRouterId String
    Id of the transit router.
    transitRouterRouteTableId String
    The id of the route table.
    transitRouterRouteTableName String
    The name of the route table.
    transitRouterRouteTableType String
    The type of route table.
    updateTime String
    The update time of the route table.

    Supporting Types

    RouteTableTag, RouteTableTagArgs

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    Import

    transit router route table can be imported using the router id and route table id, e.g.

     $ pulumi import volcengine:transit_router/routeTable:RouteTable default tr-2ff4v69tkxji859gp684cm14e:tr-rtb-hy13n2l4c6c0v****
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine