1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. cen
  5. TransitRouterRouteTable
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.cen.TransitRouterRouteTable

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a CEN transit router route table resource.What is Cen Transit Router Route Table

    NOTE: Available since v1.126.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const exampleInstance = new alicloud.cen.Instance("exampleInstance", {
        cenInstanceName: "tf_example",
        description: "an example for cen",
    });
    const exampleTransitRouter = new alicloud.cen.TransitRouter("exampleTransitRouter", {
        transitRouterName: "tf_example",
        cenId: exampleInstance.id,
    });
    const exampleTransitRouterRouteTable = new alicloud.cen.TransitRouterRouteTable("exampleTransitRouterRouteTable", {transitRouterId: exampleTransitRouter.transitRouterId});
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    example_instance = alicloud.cen.Instance("exampleInstance",
        cen_instance_name="tf_example",
        description="an example for cen")
    example_transit_router = alicloud.cen.TransitRouter("exampleTransitRouter",
        transit_router_name="tf_example",
        cen_id=example_instance.id)
    example_transit_router_route_table = alicloud.cen.TransitRouterRouteTable("exampleTransitRouterRouteTable", transit_router_id=example_transit_router.transit_router_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cen"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleInstance, err := cen.NewInstance(ctx, "exampleInstance", &cen.InstanceArgs{
    			CenInstanceName: pulumi.String("tf_example"),
    			Description:     pulumi.String("an example for cen"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleTransitRouter, err := cen.NewTransitRouter(ctx, "exampleTransitRouter", &cen.TransitRouterArgs{
    			TransitRouterName: pulumi.String("tf_example"),
    			CenId:             exampleInstance.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cen.NewTransitRouterRouteTable(ctx, "exampleTransitRouterRouteTable", &cen.TransitRouterRouteTableArgs{
    			TransitRouterId: exampleTransitRouter.TransitRouterId,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleInstance = new AliCloud.Cen.Instance("exampleInstance", new()
        {
            CenInstanceName = "tf_example",
            Description = "an example for cen",
        });
    
        var exampleTransitRouter = new AliCloud.Cen.TransitRouter("exampleTransitRouter", new()
        {
            TransitRouterName = "tf_example",
            CenId = exampleInstance.Id,
        });
    
        var exampleTransitRouterRouteTable = new AliCloud.Cen.TransitRouterRouteTable("exampleTransitRouterRouteTable", new()
        {
            TransitRouterId = exampleTransitRouter.TransitRouterId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cen.Instance;
    import com.pulumi.alicloud.cen.InstanceArgs;
    import com.pulumi.alicloud.cen.TransitRouter;
    import com.pulumi.alicloud.cen.TransitRouterArgs;
    import com.pulumi.alicloud.cen.TransitRouterRouteTable;
    import com.pulumi.alicloud.cen.TransitRouterRouteTableArgs;
    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 exampleInstance = new Instance("exampleInstance", InstanceArgs.builder()        
                .cenInstanceName("tf_example")
                .description("an example for cen")
                .build());
    
            var exampleTransitRouter = new TransitRouter("exampleTransitRouter", TransitRouterArgs.builder()        
                .transitRouterName("tf_example")
                .cenId(exampleInstance.id())
                .build());
    
            var exampleTransitRouterRouteTable = new TransitRouterRouteTable("exampleTransitRouterRouteTable", TransitRouterRouteTableArgs.builder()        
                .transitRouterId(exampleTransitRouter.transitRouterId())
                .build());
    
        }
    }
    
    resources:
      exampleInstance:
        type: alicloud:cen:Instance
        properties:
          cenInstanceName: tf_example
          description: an example for cen
      exampleTransitRouter:
        type: alicloud:cen:TransitRouter
        properties:
          transitRouterName: tf_example
          cenId: ${exampleInstance.id}
      exampleTransitRouterRouteTable:
        type: alicloud:cen:TransitRouterRouteTable
        properties:
          transitRouterId: ${exampleTransitRouter.transitRouterId}
    

    Create TransitRouterRouteTable Resource

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

    Constructor syntax

    new TransitRouterRouteTable(name: string, args: TransitRouterRouteTableArgs, opts?: CustomResourceOptions);
    @overload
    def TransitRouterRouteTable(resource_name: str,
                                args: TransitRouterRouteTableArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def TransitRouterRouteTable(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                transit_router_id: Optional[str] = None,
                                dry_run: Optional[bool] = None,
                                tags: Optional[Mapping[str, Any]] = None,
                                transit_router_route_table_description: Optional[str] = None,
                                transit_router_route_table_name: Optional[str] = None)
    func NewTransitRouterRouteTable(ctx *Context, name string, args TransitRouterRouteTableArgs, opts ...ResourceOption) (*TransitRouterRouteTable, error)
    public TransitRouterRouteTable(string name, TransitRouterRouteTableArgs args, CustomResourceOptions? opts = null)
    public TransitRouterRouteTable(String name, TransitRouterRouteTableArgs args)
    public TransitRouterRouteTable(String name, TransitRouterRouteTableArgs args, CustomResourceOptions options)
    
    type: alicloud:cen:TransitRouterRouteTable
    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 TransitRouterRouteTableArgs
    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 TransitRouterRouteTableArgs
    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 TransitRouterRouteTableArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransitRouterRouteTableArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransitRouterRouteTableArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var transitRouterRouteTableResource = new AliCloud.Cen.TransitRouterRouteTable("transitRouterRouteTableResource", new()
    {
        TransitRouterId = "string",
        DryRun = false,
        Tags = 
        {
            { "string", "any" },
        },
        TransitRouterRouteTableDescription = "string",
        TransitRouterRouteTableName = "string",
    });
    
    example, err := cen.NewTransitRouterRouteTable(ctx, "transitRouterRouteTableResource", &cen.TransitRouterRouteTableArgs{
    	TransitRouterId: pulumi.String("string"),
    	DryRun:          pulumi.Bool(false),
    	Tags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	TransitRouterRouteTableDescription: pulumi.String("string"),
    	TransitRouterRouteTableName:        pulumi.String("string"),
    })
    
    var transitRouterRouteTableResource = new TransitRouterRouteTable("transitRouterRouteTableResource", TransitRouterRouteTableArgs.builder()        
        .transitRouterId("string")
        .dryRun(false)
        .tags(Map.of("string", "any"))
        .transitRouterRouteTableDescription("string")
        .transitRouterRouteTableName("string")
        .build());
    
    transit_router_route_table_resource = alicloud.cen.TransitRouterRouteTable("transitRouterRouteTableResource",
        transit_router_id="string",
        dry_run=False,
        tags={
            "string": "any",
        },
        transit_router_route_table_description="string",
        transit_router_route_table_name="string")
    
    const transitRouterRouteTableResource = new alicloud.cen.TransitRouterRouteTable("transitRouterRouteTableResource", {
        transitRouterId: "string",
        dryRun: false,
        tags: {
            string: "any",
        },
        transitRouterRouteTableDescription: "string",
        transitRouterRouteTableName: "string",
    });
    
    type: alicloud:cen:TransitRouterRouteTable
    properties:
        dryRun: false
        tags:
            string: any
        transitRouterId: string
        transitRouterRouteTableDescription: string
        transitRouterRouteTableName: string
    

    TransitRouterRouteTable 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 TransitRouterRouteTable resource accepts the following input properties:

    TransitRouterId string
    The ID of the transit router.
    DryRun bool
    The dry run.
    Tags Dictionary<string, object>
    A mapping of tags to assign to the resource.
    TransitRouterRouteTableDescription string
    The description of the transit router route table.
    TransitRouterRouteTableName string
    The name of the transit router route table.
    TransitRouterId string
    The ID of the transit router.
    DryRun bool
    The dry run.
    Tags map[string]interface{}
    A mapping of tags to assign to the resource.
    TransitRouterRouteTableDescription string
    The description of the transit router route table.
    TransitRouterRouteTableName string
    The name of the transit router route table.
    transitRouterId String
    The ID of the transit router.
    dryRun Boolean
    The dry run.
    tags Map<String,Object>
    A mapping of tags to assign to the resource.
    transitRouterRouteTableDescription String
    The description of the transit router route table.
    transitRouterRouteTableName String
    The name of the transit router route table.
    transitRouterId string
    The ID of the transit router.
    dryRun boolean
    The dry run.
    tags {[key: string]: any}
    A mapping of tags to assign to the resource.
    transitRouterRouteTableDescription string
    The description of the transit router route table.
    transitRouterRouteTableName string
    The name of the transit router route table.
    transit_router_id str
    The ID of the transit router.
    dry_run bool
    The dry run.
    tags Mapping[str, Any]
    A mapping of tags to assign to the resource.
    transit_router_route_table_description str
    The description of the transit router route table.
    transit_router_route_table_name str
    The name of the transit router route table.
    transitRouterId String
    The ID of the transit router.
    dryRun Boolean
    The dry run.
    tags Map<Any>
    A mapping of tags to assign to the resource.
    transitRouterRouteTableDescription String
    The description of the transit router route table.
    transitRouterRouteTableName String
    The name of the transit router route table.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The associating status of the Transit Router.
    TransitRouterRouteTableId string
    The id of the transit router route table.
    TransitRouterRouteTableType string
    The type of the transit router route table. Valid values: Custom, System.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The associating status of the Transit Router.
    TransitRouterRouteTableId string
    The id of the transit router route table.
    TransitRouterRouteTableType string
    The type of the transit router route table. Valid values: Custom, System.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The associating status of the Transit Router.
    transitRouterRouteTableId String
    The id of the transit router route table.
    transitRouterRouteTableType String
    The type of the transit router route table. Valid values: Custom, System.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The associating status of the Transit Router.
    transitRouterRouteTableId string
    The id of the transit router route table.
    transitRouterRouteTableType string
    The type of the transit router route table. Valid values: Custom, System.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The associating status of the Transit Router.
    transit_router_route_table_id str
    The id of the transit router route table.
    transit_router_route_table_type str
    The type of the transit router route table. Valid values: Custom, System.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The associating status of the Transit Router.
    transitRouterRouteTableId String
    The id of the transit router route table.
    transitRouterRouteTableType String
    The type of the transit router route table. Valid values: Custom, System.

    Look up Existing TransitRouterRouteTable Resource

    Get an existing TransitRouterRouteTable 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?: TransitRouterRouteTableState, opts?: CustomResourceOptions): TransitRouterRouteTable
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dry_run: Optional[bool] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, Any]] = None,
            transit_router_id: Optional[str] = None,
            transit_router_route_table_description: 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) -> TransitRouterRouteTable
    func GetTransitRouterRouteTable(ctx *Context, name string, id IDInput, state *TransitRouterRouteTableState, opts ...ResourceOption) (*TransitRouterRouteTable, error)
    public static TransitRouterRouteTable Get(string name, Input<string> id, TransitRouterRouteTableState? state, CustomResourceOptions? opts = null)
    public static TransitRouterRouteTable get(String name, Output<String> id, TransitRouterRouteTableState 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:
    DryRun bool
    The dry run.
    Status string
    The associating status of the Transit Router.
    Tags Dictionary<string, object>
    A mapping of tags to assign to the resource.
    TransitRouterId string
    The ID of the transit router.
    TransitRouterRouteTableDescription string
    The description of the transit router route table.
    TransitRouterRouteTableId string
    The id of the transit router route table.
    TransitRouterRouteTableName string
    The name of the transit router route table.
    TransitRouterRouteTableType string
    The type of the transit router route table. Valid values: Custom, System.
    DryRun bool
    The dry run.
    Status string
    The associating status of the Transit Router.
    Tags map[string]interface{}
    A mapping of tags to assign to the resource.
    TransitRouterId string
    The ID of the transit router.
    TransitRouterRouteTableDescription string
    The description of the transit router route table.
    TransitRouterRouteTableId string
    The id of the transit router route table.
    TransitRouterRouteTableName string
    The name of the transit router route table.
    TransitRouterRouteTableType string
    The type of the transit router route table. Valid values: Custom, System.
    dryRun Boolean
    The dry run.
    status String
    The associating status of the Transit Router.
    tags Map<String,Object>
    A mapping of tags to assign to the resource.
    transitRouterId String
    The ID of the transit router.
    transitRouterRouteTableDescription String
    The description of the transit router route table.
    transitRouterRouteTableId String
    The id of the transit router route table.
    transitRouterRouteTableName String
    The name of the transit router route table.
    transitRouterRouteTableType String
    The type of the transit router route table. Valid values: Custom, System.
    dryRun boolean
    The dry run.
    status string
    The associating status of the Transit Router.
    tags {[key: string]: any}
    A mapping of tags to assign to the resource.
    transitRouterId string
    The ID of the transit router.
    transitRouterRouteTableDescription string
    The description of the transit router route table.
    transitRouterRouteTableId string
    The id of the transit router route table.
    transitRouterRouteTableName string
    The name of the transit router route table.
    transitRouterRouteTableType string
    The type of the transit router route table. Valid values: Custom, System.
    dry_run bool
    The dry run.
    status str
    The associating status of the Transit Router.
    tags Mapping[str, Any]
    A mapping of tags to assign to the resource.
    transit_router_id str
    The ID of the transit router.
    transit_router_route_table_description str
    The description of the transit router route table.
    transit_router_route_table_id str
    The id of the transit router route table.
    transit_router_route_table_name str
    The name of the transit router route table.
    transit_router_route_table_type str
    The type of the transit router route table. Valid values: Custom, System.
    dryRun Boolean
    The dry run.
    status String
    The associating status of the Transit Router.
    tags Map<Any>
    A mapping of tags to assign to the resource.
    transitRouterId String
    The ID of the transit router.
    transitRouterRouteTableDescription String
    The description of the transit router route table.
    transitRouterRouteTableId String
    The id of the transit router route table.
    transitRouterRouteTableName String
    The name of the transit router route table.
    transitRouterRouteTableType String
    The type of the transit router route table. Valid values: Custom, System.

    Import

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

    $ pulumi import alicloud:cen/transitRouterRouteTable:TransitRouterRouteTable default tr-*********:vtb-********
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi