1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. transitrouter
  6. RouteTablePropagation
Viewing docs for volcenginecc v0.0.42
published on Thursday, Jun 11, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.42
published on Thursday, Jun 11, 2026 by Volcengine

    Details of route learning that meet the criteria.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const routeTablePropagationDemo = new volcenginecc.transitrouter.RouteTablePropagation("RouteTablePropagationDemo", {
        transitRouterAttachmentId: "tr-attach-mjoxz9mx5ji85***",
        transitRouterRouteTableId: "tr-rtb-mjoxx4ofrt345sm****",
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    route_table_propagation_demo = volcenginecc.transitrouter.RouteTablePropagation("RouteTablePropagationDemo",
        transit_router_attachment_id="tr-attach-mjoxz9mx5ji85***",
        transit_router_route_table_id="tr-rtb-mjoxx4ofrt345sm****")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/transitrouter"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := transitrouter.NewRouteTablePropagation(ctx, "RouteTablePropagationDemo", &transitrouter.RouteTablePropagationArgs{
    			TransitRouterAttachmentId: pulumi.String("tr-attach-mjoxz9mx5ji85***"),
    			TransitRouterRouteTableId: pulumi.String("tr-rtb-mjoxx4ofrt345sm****"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var routeTablePropagationDemo = new Volcenginecc.Transitrouter.RouteTablePropagation("RouteTablePropagationDemo", new()
        {
            TransitRouterAttachmentId = "tr-attach-mjoxz9mx5ji85***",
            TransitRouterRouteTableId = "tr-rtb-mjoxx4ofrt345sm****",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.transitrouter.RouteTablePropagation;
    import com.volcengine.volcenginecc.transitrouter.RouteTablePropagationArgs;
    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 routeTablePropagationDemo = new RouteTablePropagation("routeTablePropagationDemo", RouteTablePropagationArgs.builder()
                .transitRouterAttachmentId("tr-attach-mjoxz9mx5ji85***")
                .transitRouterRouteTableId("tr-rtb-mjoxx4ofrt345sm****")
                .build());
    
        }
    }
    
    resources:
      routeTablePropagationDemo:
        type: volcenginecc:transitrouter:RouteTablePropagation
        name: RouteTablePropagationDemo
        properties:
          transitRouterAttachmentId: tr-attach-mjoxz9mx5ji85***
          transitRouterRouteTableId: tr-rtb-mjoxx4ofrt345sm****
    
    Example coming soon!
    

    Create RouteTablePropagation Resource

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

    Constructor syntax

    new RouteTablePropagation(name: string, args: RouteTablePropagationArgs, opts?: CustomResourceOptions);
    @overload
    def RouteTablePropagation(resource_name: str,
                              args: RouteTablePropagationArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def RouteTablePropagation(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              transit_router_attachment_id: Optional[str] = None,
                              transit_router_route_table_id: Optional[str] = None)
    func NewRouteTablePropagation(ctx *Context, name string, args RouteTablePropagationArgs, opts ...ResourceOption) (*RouteTablePropagation, error)
    public RouteTablePropagation(string name, RouteTablePropagationArgs args, CustomResourceOptions? opts = null)
    public RouteTablePropagation(String name, RouteTablePropagationArgs args)
    public RouteTablePropagation(String name, RouteTablePropagationArgs args, CustomResourceOptions options)
    
    type: volcenginecc:transitrouter:RouteTablePropagation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "volcenginecc_transitrouter_routetablepropagation" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args RouteTablePropagationArgs
    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 RouteTablePropagationArgs
    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 RouteTablePropagationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteTablePropagationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteTablePropagationArgs
    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 routeTablePropagationResource = new Volcenginecc.Transitrouter.RouteTablePropagation("routeTablePropagationResource", new()
    {
        TransitRouterAttachmentId = "string",
        TransitRouterRouteTableId = "string",
    });
    
    example, err := transitrouter.NewRouteTablePropagation(ctx, "routeTablePropagationResource", &transitrouter.RouteTablePropagationArgs{
    	TransitRouterAttachmentId: pulumi.String("string"),
    	TransitRouterRouteTableId: pulumi.String("string"),
    })
    
    resource "volcenginecc_transitrouter_routetablepropagation" "routeTablePropagationResource" {
      transit_router_attachment_id  = "string"
      transit_router_route_table_id = "string"
    }
    
    var routeTablePropagationResource = new RouteTablePropagation("routeTablePropagationResource", RouteTablePropagationArgs.builder()
        .transitRouterAttachmentId("string")
        .transitRouterRouteTableId("string")
        .build());
    
    route_table_propagation_resource = volcenginecc.transitrouter.RouteTablePropagation("routeTablePropagationResource",
        transit_router_attachment_id="string",
        transit_router_route_table_id="string")
    
    const routeTablePropagationResource = new volcenginecc.transitrouter.RouteTablePropagation("routeTablePropagationResource", {
        transitRouterAttachmentId: "string",
        transitRouterRouteTableId: "string",
    });
    
    type: volcenginecc:transitrouter:RouteTablePropagation
    properties:
        transitRouterAttachmentId: string
        transitRouterRouteTableId: string
    

    RouteTablePropagation Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RouteTablePropagation resource accepts the following input properties:

    TransitRouterAttachmentId string
    ID of the network instance connection.
    TransitRouterRouteTableId string
    ID of the route table associated with the transit router instance.
    TransitRouterAttachmentId string
    ID of the network instance connection.
    TransitRouterRouteTableId string
    ID of the route table associated with the transit router instance.
    transit_router_attachment_id string
    ID of the network instance connection.
    transit_router_route_table_id string
    ID of the route table associated with the transit router instance.
    transitRouterAttachmentId String
    ID of the network instance connection.
    transitRouterRouteTableId String
    ID of the route table associated with the transit router instance.
    transitRouterAttachmentId string
    ID of the network instance connection.
    transitRouterRouteTableId string
    ID of the route table associated with the transit router instance.
    transit_router_attachment_id str
    ID of the network instance connection.
    transit_router_route_table_id str
    ID of the route table associated with the transit router instance.
    transitRouterAttachmentId String
    ID of the network instance connection.
    transitRouterRouteTableId String
    ID of the route table associated with the transit router instance.

    Outputs

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

    CreationTime string
    Route learning creation time.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    CreationTime string
    Route learning creation time.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    creation_time string
    Route learning creation time.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    creationTime String
    Route learning creation time.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    creationTime string
    Route learning creation time.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    creation_time str
    Route learning creation time.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    creationTime String
    Route learning creation time.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.

    Look up Existing RouteTablePropagation Resource

    Get an existing RouteTablePropagation 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?: RouteTablePropagationState, opts?: CustomResourceOptions): RouteTablePropagation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            creation_time: Optional[str] = None,
            status: Optional[str] = None,
            transit_router_attachment_id: Optional[str] = None,
            transit_router_route_table_id: Optional[str] = None) -> RouteTablePropagation
    func GetRouteTablePropagation(ctx *Context, name string, id IDInput, state *RouteTablePropagationState, opts ...ResourceOption) (*RouteTablePropagation, error)
    public static RouteTablePropagation Get(string name, Input<string> id, RouteTablePropagationState? state, CustomResourceOptions? opts = null)
    public static RouteTablePropagation get(String name, Output<String> id, RouteTablePropagationState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:transitrouter:RouteTablePropagation    get:      id: ${id}
    import {
      to = volcenginecc_transitrouter_routetablepropagation.example
      id = "${id}"
    }
    
    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
    Route learning creation time.
    Status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    TransitRouterAttachmentId string
    ID of the network instance connection.
    TransitRouterRouteTableId string
    ID of the route table associated with the transit router instance.
    CreationTime string
    Route learning creation time.
    Status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    TransitRouterAttachmentId string
    ID of the network instance connection.
    TransitRouterRouteTableId string
    ID of the route table associated with the transit router instance.
    creation_time string
    Route learning creation time.
    status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    transit_router_attachment_id string
    ID of the network instance connection.
    transit_router_route_table_id string
    ID of the route table associated with the transit router instance.
    creationTime String
    Route learning creation time.
    status String
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    transitRouterAttachmentId String
    ID of the network instance connection.
    transitRouterRouteTableId String
    ID of the route table associated with the transit router instance.
    creationTime string
    Route learning creation time.
    status string
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    transitRouterAttachmentId string
    ID of the network instance connection.
    transitRouterRouteTableId string
    ID of the route table associated with the transit router instance.
    creation_time str
    Route learning creation time.
    status str
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    transit_router_attachment_id str
    ID of the network instance connection.
    transit_router_route_table_id str
    ID of the route table associated with the transit router instance.
    creationTime String
    Route learning creation time.
    status String
    Route learning status. Available: Available. Creating: Creating. Pending: Pending. Deleting: Deleting.
    transitRouterAttachmentId String
    ID of the network instance connection.
    transitRouterRouteTableId String
    ID of the route table associated with the transit router instance.

    Import

    $ pulumi import volcenginecc:transitrouter/routeTablePropagation:RouteTablePropagation example "transit_router_route_table_id|transit_router_attachment_id"
    

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

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.42
    published on Thursday, Jun 11, 2026 by Volcengine

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial