VirtualBorderRouterArgs

data class VirtualBorderRouterArgs(val associatedPhysicalConnections: Output<String>? = null, val bandwidth: Output<Int>? = null, val circuitCode: Output<String>? = null, val description: Output<String>? = null, val detectMultiplier: Output<Int>? = null, val enableIpv6: Output<Boolean>? = null, val includeCrossAccountVbr: Output<Boolean>? = null, val localGatewayIp: Output<String>? = null, val localIpv6GatewayIp: Output<String>? = null, val minRxInterval: Output<Int>? = null, val minTxInterval: Output<Int>? = null, val peerGatewayIp: Output<String>? = null, val peerIpv6GatewayIp: Output<String>? = null, val peeringIpv6SubnetMask: Output<String>? = null, val peeringSubnetMask: Output<String>? = null, val physicalConnectionId: Output<String>? = null, val status: Output<String>? = null, val vbrOwnerId: Output<String>? = null, val virtualBorderRouterName: Output<String>? = null, val vlanId: Output<Int>? = null) : ConvertibleToJava<VirtualBorderRouterArgs>

Provides a Express Connect Virtual Border Router resource. For information about Express Connect Virtual Border Router and how to use it, see What is Virtual Border Router.

NOTE: Available since v1.134.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";
const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const example = alicloud.expressconnect.getPhysicalConnections({
nameRegex: "^preserved-NODELETING",
});
const vlanId = new random.index.Integer("vlan_id", {
max: 2999,
min: 1,
});
const exampleVirtualBorderRouter = new alicloud.expressconnect.VirtualBorderRouter("example", {
localGatewayIp: "10.0.0.1",
peerGatewayIp: "10.0.0.2",
peeringSubnetMask: "255.255.255.252",
physicalConnectionId: example.then(example => example.connections?.[0]?.id),
virtualBorderRouterName: name,
vlanId: vlanId.id,
minRxInterval: 1000,
minTxInterval: 1000,
detectMultiplier: 10,
});
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
example = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
vlan_id = random.index.Integer("vlan_id",
max=2999,
min=1)
example_virtual_border_router = alicloud.expressconnect.VirtualBorderRouter("example",
local_gateway_ip="10.0.0.1",
peer_gateway_ip="10.0.0.2",
peering_subnet_mask="255.255.255.252",
physical_connection_id=example.connections[0].id,
virtual_border_router_name=name,
vlan_id=vlan_id["id"],
min_rx_interval=1000,
min_tx_interval=1000,
detect_multiplier=10)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf-example";
var example = AliCloud.ExpressConnect.GetPhysicalConnections.Invoke(new()
{
NameRegex = "^preserved-NODELETING",
});
var vlanId = new Random.Index.Integer("vlan_id", new()
{
Max = 2999,
Min = 1,
});
var exampleVirtualBorderRouter = new AliCloud.ExpressConnect.VirtualBorderRouter("example", new()
{
LocalGatewayIp = "10.0.0.1",
PeerGatewayIp = "10.0.0.2",
PeeringSubnetMask = "255.255.255.252",
PhysicalConnectionId = example.Apply(getPhysicalConnectionsResult => getPhysicalConnectionsResult.Connections[0]?.Id),
VirtualBorderRouterName = name,
VlanId = vlanId.Id,
MinRxInterval = 1000,
MinTxInterval = 1000,
DetectMultiplier = 10,
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/expressconnect"
"github.com/pulumi/pulumi-random/sdk/v4/go/random"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
example, err := expressconnect.GetPhysicalConnections(ctx, &expressconnect.GetPhysicalConnectionsArgs{
NameRegex: pulumi.StringRef("^preserved-NODELETING"),
}, nil)
if err != nil {
return err
}
vlanId, err := random.NewInteger(ctx, "vlan_id", &random.IntegerArgs{
Max: 2999,
Min: 1,
})
if err != nil {
return err
}
_, err = expressconnect.NewVirtualBorderRouter(ctx, "example", &expressconnect.VirtualBorderRouterArgs{
LocalGatewayIp: pulumi.String("10.0.0.1"),
PeerGatewayIp: pulumi.String("10.0.0.2"),
PeeringSubnetMask: pulumi.String("255.255.255.252"),
PhysicalConnectionId: pulumi.String(example.Connections[0].Id),
VirtualBorderRouterName: pulumi.String(name),
VlanId: vlanId.Id,
MinRxInterval: pulumi.Int(1000),
MinTxInterval: pulumi.Int(1000),
DetectMultiplier: pulumi.Int(10),
})
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.alicloud.expressconnect.ExpressconnectFunctions;
import com.pulumi.alicloud.expressconnect.inputs.GetPhysicalConnectionsArgs;
import com.pulumi.random.integer;
import com.pulumi.random.integerArgs;
import com.pulumi.alicloud.expressconnect.VirtualBorderRouter;
import com.pulumi.alicloud.expressconnect.VirtualBorderRouterArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf-example");
final var example = ExpressconnectFunctions.getPhysicalConnections(GetPhysicalConnectionsArgs.builder()
.nameRegex("^preserved-NODELETING")
.build());
var vlanId = new Integer("vlanId", IntegerArgs.builder()
.max(2999)
.min(1)
.build());
var exampleVirtualBorderRouter = new VirtualBorderRouter("exampleVirtualBorderRouter", VirtualBorderRouterArgs.builder()
.localGatewayIp("10.0.0.1")
.peerGatewayIp("10.0.0.2")
.peeringSubnetMask("255.255.255.252")
.physicalConnectionId(example.connections()[0].id())
.virtualBorderRouterName(name)
.vlanId(vlanId.id())
.minRxInterval(1000)
.minTxInterval(1000)
.detectMultiplier(10)
.build());
}
}
configuration:
name:
type: string
default: tf-example
resources:
vlanId:
type: random:integer
name: vlan_id
properties:
max: 2999
min: 1
exampleVirtualBorderRouter:
type: alicloud:expressconnect:VirtualBorderRouter
name: example
properties:
localGatewayIp: 10.0.0.1
peerGatewayIp: 10.0.0.2
peeringSubnetMask: 255.255.255.252
physicalConnectionId: ${example.connections[0].id}
virtualBorderRouterName: ${name}
vlanId: ${vlanId.id}
minRxInterval: 1000
minTxInterval: 1000
detectMultiplier: 10
variables:
example:
fn::invoke:
function: alicloud:expressconnect:getPhysicalConnections
arguments:
nameRegex: ^preserved-NODELETING

Import

Express Connect Virtual Border Router can be imported using the id, e.g.

$ pulumi import alicloud:expressconnect/virtualBorderRouter:VirtualBorderRouter example <id>

Constructors

Link copied to clipboard
constructor(associatedPhysicalConnections: Output<String>? = null, bandwidth: Output<Int>? = null, circuitCode: Output<String>? = null, description: Output<String>? = null, detectMultiplier: Output<Int>? = null, enableIpv6: Output<Boolean>? = null, includeCrossAccountVbr: Output<Boolean>? = null, localGatewayIp: Output<String>? = null, localIpv6GatewayIp: Output<String>? = null, minRxInterval: Output<Int>? = null, minTxInterval: Output<Int>? = null, peerGatewayIp: Output<String>? = null, peerIpv6GatewayIp: Output<String>? = null, peeringIpv6SubnetMask: Output<String>? = null, peeringSubnetMask: Output<String>? = null, physicalConnectionId: Output<String>? = null, status: Output<String>? = null, vbrOwnerId: Output<String>? = null, virtualBorderRouterName: Output<String>? = null, vlanId: Output<Int>? = null)

Properties

Link copied to clipboard

The associated physical connections.

Link copied to clipboard
val bandwidth: Output<Int>? = null

The bandwidth.

Link copied to clipboard
val circuitCode: Output<String>? = null

Operators for physical connection circuit provided coding.

Link copied to clipboard
val description: Output<String>? = null

The description of VBR. Length is from 2 to 256 characters, must start with a letter or the Chinese at the beginning, but not at the http:// Or https:// at the beginning.

Link copied to clipboard
val detectMultiplier: Output<Int>? = null

Detection time multiplier that recipient allows the sender to send a message of the maximum allowable connections for the number of packets, used to detect whether the link normal. Value: 3~10.

Link copied to clipboard
val enableIpv6: Output<Boolean>? = null

Whether to Enable IPv6. Valid values: false, true.

Link copied to clipboard
val includeCrossAccountVbr: Output<Boolean>? = null

Whether cross account border routers are included. Valid values: false, true. Default: true.

Link copied to clipboard
val localGatewayIp: Output<String>? = null

Alibaba Cloud-Connected IPv4 address.

Link copied to clipboard
val localIpv6GatewayIp: Output<String>? = null

Alibaba Cloud-Connected IPv6 Address.

Link copied to clipboard
val minRxInterval: Output<Int>? = null

Configure BFD packet reception interval of values include: 200~1000, unit: ms.

Link copied to clipboard
val minTxInterval: Output<Int>? = null

Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.

Link copied to clipboard
val peerGatewayIp: Output<String>? = null

The Client-Side Interconnection IPv4 Address.

Link copied to clipboard
val peeringIpv6SubnetMask: Output<String>? = null

Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.

Link copied to clipboard
val peeringSubnetMask: Output<String>? = null

Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.

Link copied to clipboard
val peerIpv6GatewayIp: Output<String>? = null

The Client-Side Interconnection IPv6 Address.

Link copied to clipboard
val physicalConnectionId: Output<String>? = null

The ID of the Physical Connection to Which the ID.

Link copied to clipboard
val status: Output<String>? = null

The instance state. Valid values: active, deleting, recovering, terminated, terminating, unconfirmed.

Link copied to clipboard
val vbrOwnerId: Output<String>? = null

The vbr owner id.

Link copied to clipboard
val virtualBorderRouterName: Output<String>? = null

The name of VBR. Length is from 2 to 128 characters, must start with a letter or the Chinese at the beginning can contain numbers, the underscore character (_) and dash (-). But do not start with http:// or https:// at the beginning.

Link copied to clipboard
val vlanId: Output<Int>? = null

The VLAN ID of the VBR. Value range: 0~2999.

Functions

Link copied to clipboard
open override fun toJava(): VirtualBorderRouterArgs