1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cen
  5. TransitRouterPrefixListAssociation
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.cen.TransitRouterPrefixListAssociation

Explore with Pulumi AI

Provides a Cloud Enterprise Network (CEN) Transit Router Prefix List Association resource.

For information about Cloud Enterprise Network (CEN) Transit Router Prefix List Association and how to use it, see What is Transit Router Prefix List Association.

NOTE: Available since v1.188.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const _default = alicloud.getAccount({});
const example = new alicloud.vpc.PrefixList("example", {entrys: [{
    cidr: "192.168.0.0/16",
}]});
const exampleInstance = new alicloud.cen.Instance("example", {
    cenInstanceName: "tf_example",
    description: "an example for cen",
});
const exampleTransitRouter = new alicloud.cen.TransitRouter("example", {
    transitRouterName: "tf_example",
    cenId: exampleInstance.id,
});
const exampleTransitRouterRouteTable = new alicloud.cen.TransitRouterRouteTable("example", {transitRouterId: exampleTransitRouter.transitRouterId});
const exampleTransitRouterPrefixListAssociation = new alicloud.cen.TransitRouterPrefixListAssociation("example", {
    prefixListId: example.id,
    transitRouterId: exampleTransitRouter.transitRouterId,
    transitRouterTableId: exampleTransitRouterRouteTable.transitRouterRouteTableId,
    nextHop: "BlackHole",
    nextHopType: "BlackHole",
    ownerUid: _default.then(_default => _default.id),
});
Copy
import pulumi
import pulumi_alicloud as alicloud

default = alicloud.get_account()
example = alicloud.vpc.PrefixList("example", entrys=[{
    "cidr": "192.168.0.0/16",
}])
example_instance = alicloud.cen.Instance("example",
    cen_instance_name="tf_example",
    description="an example for cen")
example_transit_router = alicloud.cen.TransitRouter("example",
    transit_router_name="tf_example",
    cen_id=example_instance.id)
example_transit_router_route_table = alicloud.cen.TransitRouterRouteTable("example", transit_router_id=example_transit_router.transit_router_id)
example_transit_router_prefix_list_association = alicloud.cen.TransitRouterPrefixListAssociation("example",
    prefix_list_id=example.id,
    transit_router_id=example_transit_router.transit_router_id,
    transit_router_table_id=example_transit_router_route_table.transit_router_route_table_id,
    next_hop="BlackHole",
    next_hop_type="BlackHole",
    owner_uid=default.id)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cen"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := alicloud.GetAccount(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		example, err := vpc.NewPrefixList(ctx, "example", &vpc.PrefixListArgs{
			Entrys: vpc.PrefixListEntryArray{
				&vpc.PrefixListEntryArgs{
					Cidr: pulumi.String("192.168.0.0/16"),
				},
			},
		})
		if err != nil {
			return err
		}
		exampleInstance, err := cen.NewInstance(ctx, "example", &cen.InstanceArgs{
			CenInstanceName: pulumi.String("tf_example"),
			Description:     pulumi.String("an example for cen"),
		})
		if err != nil {
			return err
		}
		exampleTransitRouter, err := cen.NewTransitRouter(ctx, "example", &cen.TransitRouterArgs{
			TransitRouterName: pulumi.String("tf_example"),
			CenId:             exampleInstance.ID(),
		})
		if err != nil {
			return err
		}
		exampleTransitRouterRouteTable, err := cen.NewTransitRouterRouteTable(ctx, "example", &cen.TransitRouterRouteTableArgs{
			TransitRouterId: exampleTransitRouter.TransitRouterId,
		})
		if err != nil {
			return err
		}
		_, err = cen.NewTransitRouterPrefixListAssociation(ctx, "example", &cen.TransitRouterPrefixListAssociationArgs{
			PrefixListId:         example.ID(),
			TransitRouterId:      exampleTransitRouter.TransitRouterId,
			TransitRouterTableId: exampleTransitRouterRouteTable.TransitRouterRouteTableId,
			NextHop:              pulumi.String("BlackHole"),
			NextHopType:          pulumi.String("BlackHole"),
			OwnerUid:             pulumi.String(_default.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var @default = AliCloud.GetAccount.Invoke();

    var example = new AliCloud.Vpc.PrefixList("example", new()
    {
        Entrys = new[]
        {
            new AliCloud.Vpc.Inputs.PrefixListEntryArgs
            {
                Cidr = "192.168.0.0/16",
            },
        },
    });

    var exampleInstance = new AliCloud.Cen.Instance("example", new()
    {
        CenInstanceName = "tf_example",
        Description = "an example for cen",
    });

    var exampleTransitRouter = new AliCloud.Cen.TransitRouter("example", new()
    {
        TransitRouterName = "tf_example",
        CenId = exampleInstance.Id,
    });

    var exampleTransitRouterRouteTable = new AliCloud.Cen.TransitRouterRouteTable("example", new()
    {
        TransitRouterId = exampleTransitRouter.TransitRouterId,
    });

    var exampleTransitRouterPrefixListAssociation = new AliCloud.Cen.TransitRouterPrefixListAssociation("example", new()
    {
        PrefixListId = example.Id,
        TransitRouterId = exampleTransitRouter.TransitRouterId,
        TransitRouterTableId = exampleTransitRouterRouteTable.TransitRouterRouteTableId,
        NextHop = "BlackHole",
        NextHopType = "BlackHole",
        OwnerUid = @default.Apply(@default => @default.Apply(getAccountResult => getAccountResult.Id)),
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.vpc.PrefixList;
import com.pulumi.alicloud.vpc.PrefixListArgs;
import com.pulumi.alicloud.vpc.inputs.PrefixListEntryArgs;
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 com.pulumi.alicloud.cen.TransitRouterPrefixListAssociation;
import com.pulumi.alicloud.cen.TransitRouterPrefixListAssociationArgs;
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 default = AlicloudFunctions.getAccount();

        var example = new PrefixList("example", PrefixListArgs.builder()
            .entrys(PrefixListEntryArgs.builder()
                .cidr("192.168.0.0/16")
                .build())
            .build());

        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());

        var exampleTransitRouterPrefixListAssociation = new TransitRouterPrefixListAssociation("exampleTransitRouterPrefixListAssociation", TransitRouterPrefixListAssociationArgs.builder()
            .prefixListId(example.id())
            .transitRouterId(exampleTransitRouter.transitRouterId())
            .transitRouterTableId(exampleTransitRouterRouteTable.transitRouterRouteTableId())
            .nextHop("BlackHole")
            .nextHopType("BlackHole")
            .ownerUid(default_.id())
            .build());

    }
}
Copy
resources:
  example:
    type: alicloud:vpc:PrefixList
    properties:
      entrys:
        - cidr: 192.168.0.0/16
  exampleInstance:
    type: alicloud:cen:Instance
    name: example
    properties:
      cenInstanceName: tf_example
      description: an example for cen
  exampleTransitRouter:
    type: alicloud:cen:TransitRouter
    name: example
    properties:
      transitRouterName: tf_example
      cenId: ${exampleInstance.id}
  exampleTransitRouterRouteTable:
    type: alicloud:cen:TransitRouterRouteTable
    name: example
    properties:
      transitRouterId: ${exampleTransitRouter.transitRouterId}
  exampleTransitRouterPrefixListAssociation:
    type: alicloud:cen:TransitRouterPrefixListAssociation
    name: example
    properties:
      prefixListId: ${example.id}
      transitRouterId: ${exampleTransitRouter.transitRouterId}
      transitRouterTableId: ${exampleTransitRouterRouteTable.transitRouterRouteTableId}
      nextHop: BlackHole
      nextHopType: BlackHole
      ownerUid: ${default.id}
variables:
  default:
    fn::invoke:
      function: alicloud:getAccount
      arguments: {}
Copy

Create TransitRouterPrefixListAssociation Resource

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

Constructor syntax

new TransitRouterPrefixListAssociation(name: string, args: TransitRouterPrefixListAssociationArgs, opts?: CustomResourceOptions);
@overload
def TransitRouterPrefixListAssociation(resource_name: str,
                                       args: TransitRouterPrefixListAssociationArgs,
                                       opts: Optional[ResourceOptions] = None)

@overload
def TransitRouterPrefixListAssociation(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       next_hop: Optional[str] = None,
                                       prefix_list_id: Optional[str] = None,
                                       transit_router_id: Optional[str] = None,
                                       transit_router_table_id: Optional[str] = None,
                                       next_hop_type: Optional[str] = None,
                                       owner_uid: Optional[int] = None)
func NewTransitRouterPrefixListAssociation(ctx *Context, name string, args TransitRouterPrefixListAssociationArgs, opts ...ResourceOption) (*TransitRouterPrefixListAssociation, error)
public TransitRouterPrefixListAssociation(string name, TransitRouterPrefixListAssociationArgs args, CustomResourceOptions? opts = null)
public TransitRouterPrefixListAssociation(String name, TransitRouterPrefixListAssociationArgs args)
public TransitRouterPrefixListAssociation(String name, TransitRouterPrefixListAssociationArgs args, CustomResourceOptions options)
type: alicloud:cen:TransitRouterPrefixListAssociation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. TransitRouterPrefixListAssociationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. TransitRouterPrefixListAssociationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. TransitRouterPrefixListAssociationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. TransitRouterPrefixListAssociationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. TransitRouterPrefixListAssociationArgs
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 transitRouterPrefixListAssociationResource = new AliCloud.Cen.TransitRouterPrefixListAssociation("transitRouterPrefixListAssociationResource", new()
{
    NextHop = "string",
    PrefixListId = "string",
    TransitRouterId = "string",
    TransitRouterTableId = "string",
    NextHopType = "string",
    OwnerUid = 0,
});
Copy
example, err := cen.NewTransitRouterPrefixListAssociation(ctx, "transitRouterPrefixListAssociationResource", &cen.TransitRouterPrefixListAssociationArgs{
	NextHop:              pulumi.String("string"),
	PrefixListId:         pulumi.String("string"),
	TransitRouterId:      pulumi.String("string"),
	TransitRouterTableId: pulumi.String("string"),
	NextHopType:          pulumi.String("string"),
	OwnerUid:             pulumi.Int(0),
})
Copy
var transitRouterPrefixListAssociationResource = new TransitRouterPrefixListAssociation("transitRouterPrefixListAssociationResource", TransitRouterPrefixListAssociationArgs.builder()
    .nextHop("string")
    .prefixListId("string")
    .transitRouterId("string")
    .transitRouterTableId("string")
    .nextHopType("string")
    .ownerUid(0)
    .build());
Copy
transit_router_prefix_list_association_resource = alicloud.cen.TransitRouterPrefixListAssociation("transitRouterPrefixListAssociationResource",
    next_hop="string",
    prefix_list_id="string",
    transit_router_id="string",
    transit_router_table_id="string",
    next_hop_type="string",
    owner_uid=0)
Copy
const transitRouterPrefixListAssociationResource = new alicloud.cen.TransitRouterPrefixListAssociation("transitRouterPrefixListAssociationResource", {
    nextHop: "string",
    prefixListId: "string",
    transitRouterId: "string",
    transitRouterTableId: "string",
    nextHopType: "string",
    ownerUid: 0,
});
Copy
type: alicloud:cen:TransitRouterPrefixListAssociation
properties:
    nextHop: string
    nextHopType: string
    ownerUid: 0
    prefixListId: string
    transitRouterId: string
    transitRouterTableId: string
Copy

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

NextHop
This property is required.
Changes to this property will trigger replacement.
string
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
PrefixListId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the prefix list.
TransitRouterId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the transit router.
TransitRouterTableId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the route table of the transit router.
NextHopType Changes to this property will trigger replacement. string
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
OwnerUid Changes to this property will trigger replacement. int
The ID of the Alibaba Cloud account to which the prefix list belongs.
NextHop
This property is required.
Changes to this property will trigger replacement.
string
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
PrefixListId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the prefix list.
TransitRouterId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the transit router.
TransitRouterTableId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the route table of the transit router.
NextHopType Changes to this property will trigger replacement. string
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
OwnerUid Changes to this property will trigger replacement. int
The ID of the Alibaba Cloud account to which the prefix list belongs.
nextHop
This property is required.
Changes to this property will trigger replacement.
String
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
prefixListId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the prefix list.
transitRouterId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the transit router.
transitRouterTableId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the route table of the transit router.
nextHopType Changes to this property will trigger replacement. String
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
ownerUid Changes to this property will trigger replacement. Integer
The ID of the Alibaba Cloud account to which the prefix list belongs.
nextHop
This property is required.
Changes to this property will trigger replacement.
string
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
prefixListId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the prefix list.
transitRouterId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the transit router.
transitRouterTableId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the route table of the transit router.
nextHopType Changes to this property will trigger replacement. string
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
ownerUid Changes to this property will trigger replacement. number
The ID of the Alibaba Cloud account to which the prefix list belongs.
next_hop
This property is required.
Changes to this property will trigger replacement.
str
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
prefix_list_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the prefix list.
transit_router_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the transit router.
transit_router_table_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the route table of the transit router.
next_hop_type Changes to this property will trigger replacement. str
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
owner_uid Changes to this property will trigger replacement. int
The ID of the Alibaba Cloud account to which the prefix list belongs.
nextHop
This property is required.
Changes to this property will trigger replacement.
String
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
prefixListId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the prefix list.
transitRouterId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the transit router.
transitRouterTableId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the route table of the transit router.
nextHopType Changes to this property will trigger replacement. String
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
ownerUid Changes to this property will trigger replacement. Number
The ID of the Alibaba Cloud account to which the prefix list belongs.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the prefix list.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the prefix list.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the prefix list.
id string
The provider-assigned unique ID for this managed resource.
status string
The status of the prefix list.
id str
The provider-assigned unique ID for this managed resource.
status str
The status of the prefix list.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the prefix list.

Look up Existing TransitRouterPrefixListAssociation Resource

Get an existing TransitRouterPrefixListAssociation 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?: TransitRouterPrefixListAssociationState, opts?: CustomResourceOptions): TransitRouterPrefixListAssociation
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        next_hop: Optional[str] = None,
        next_hop_type: Optional[str] = None,
        owner_uid: Optional[int] = None,
        prefix_list_id: Optional[str] = None,
        status: Optional[str] = None,
        transit_router_id: Optional[str] = None,
        transit_router_table_id: Optional[str] = None) -> TransitRouterPrefixListAssociation
func GetTransitRouterPrefixListAssociation(ctx *Context, name string, id IDInput, state *TransitRouterPrefixListAssociationState, opts ...ResourceOption) (*TransitRouterPrefixListAssociation, error)
public static TransitRouterPrefixListAssociation Get(string name, Input<string> id, TransitRouterPrefixListAssociationState? state, CustomResourceOptions? opts = null)
public static TransitRouterPrefixListAssociation get(String name, Output<String> id, TransitRouterPrefixListAssociationState state, CustomResourceOptions options)
resources:  _:    type: alicloud:cen:TransitRouterPrefixListAssociation    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
NextHop Changes to this property will trigger replacement. string
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
NextHopType Changes to this property will trigger replacement. string
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
OwnerUid Changes to this property will trigger replacement. int
The ID of the Alibaba Cloud account to which the prefix list belongs.
PrefixListId Changes to this property will trigger replacement. string
The ID of the prefix list.
Status string
The status of the prefix list.
TransitRouterId Changes to this property will trigger replacement. string
The ID of the transit router.
TransitRouterTableId Changes to this property will trigger replacement. string
The ID of the route table of the transit router.
NextHop Changes to this property will trigger replacement. string
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
NextHopType Changes to this property will trigger replacement. string
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
OwnerUid Changes to this property will trigger replacement. int
The ID of the Alibaba Cloud account to which the prefix list belongs.
PrefixListId Changes to this property will trigger replacement. string
The ID of the prefix list.
Status string
The status of the prefix list.
TransitRouterId Changes to this property will trigger replacement. string
The ID of the transit router.
TransitRouterTableId Changes to this property will trigger replacement. string
The ID of the route table of the transit router.
nextHop Changes to this property will trigger replacement. String
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
nextHopType Changes to this property will trigger replacement. String
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
ownerUid Changes to this property will trigger replacement. Integer
The ID of the Alibaba Cloud account to which the prefix list belongs.
prefixListId Changes to this property will trigger replacement. String
The ID of the prefix list.
status String
The status of the prefix list.
transitRouterId Changes to this property will trigger replacement. String
The ID of the transit router.
transitRouterTableId Changes to this property will trigger replacement. String
The ID of the route table of the transit router.
nextHop Changes to this property will trigger replacement. string
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
nextHopType Changes to this property will trigger replacement. string
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
ownerUid Changes to this property will trigger replacement. number
The ID of the Alibaba Cloud account to which the prefix list belongs.
prefixListId Changes to this property will trigger replacement. string
The ID of the prefix list.
status string
The status of the prefix list.
transitRouterId Changes to this property will trigger replacement. string
The ID of the transit router.
transitRouterTableId Changes to this property will trigger replacement. string
The ID of the route table of the transit router.
next_hop Changes to this property will trigger replacement. str
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
next_hop_type Changes to this property will trigger replacement. str
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
owner_uid Changes to this property will trigger replacement. int
The ID of the Alibaba Cloud account to which the prefix list belongs.
prefix_list_id Changes to this property will trigger replacement. str
The ID of the prefix list.
status str
The status of the prefix list.
transit_router_id Changes to this property will trigger replacement. str
The ID of the transit router.
transit_router_table_id Changes to this property will trigger replacement. str
The ID of the route table of the transit router.
nextHop Changes to this property will trigger replacement. String
The ID of the next hop. NOTE: If next_hop is set to BlackHole, you must set this parameter to BlackHole.
nextHopType Changes to this property will trigger replacement. String
The type of the next hop. Valid values:

  • BlackHole: Specifies that all the CIDR blocks in the prefix list are blackhole routes. Packets destined for the CIDR blocks are dropped.
  • VPC: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual private cloud (VPC) connection.
  • VBR: Specifies that the next hop of the CIDR blocks in the prefix list is a virtual border router (VBR) connection.
  • TR: Specifies that the next hop of the CIDR blocks in the prefix list is an inter-region connection.
ownerUid Changes to this property will trigger replacement. Number
The ID of the Alibaba Cloud account to which the prefix list belongs.
prefixListId Changes to this property will trigger replacement. String
The ID of the prefix list.
status String
The status of the prefix list.
transitRouterId Changes to this property will trigger replacement. String
The ID of the transit router.
transitRouterTableId Changes to this property will trigger replacement. String
The ID of the route table of the transit router.

Import

Cloud Enterprise Network (CEN) Transit Router Prefix List Association can be imported using the id, e.g.

$ pulumi import alicloud:cen/transitRouterPrefixListAssociation:TransitRouterPrefixListAssociation default <prefix_list_id>:<transit_router_id>:<transit_router_table_id>:<next_hop>.
Copy

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.