Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.expressconnect.getVirtualBorderRouters
Explore with Pulumi AI
This data source provides the Express Connect Virtual Border Routers of the current Alibaba Cloud user.
NOTE: Available in v1.134.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.expressconnect.getVirtualBorderRouters({});
export const expressConnectVirtualBorderRouterId1 = ids.then(ids => ids.routers?.[0]?.id);
const nameRegex = alicloud.expressconnect.getVirtualBorderRouters({
    nameRegex: "^my-VirtualBorderRouter",
});
export const expressConnectVirtualBorderRouterId2 = nameRegex.then(nameRegex => nameRegex.routers?.[0]?.id);
const filter = alicloud.expressconnect.getVirtualBorderRouters({
    filters: [
        {
            key: "PhysicalConnectionId",
            values: ["pc-xxxx1"],
        },
        {
            key: "VbrId",
            values: [
                "vbr-xxxx1",
                "vbr-xxxx2",
            ],
        },
    ],
});
export const expressConnectVirtualBorderRouterId3 = filter.then(filter => filter.routers?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.expressconnect.get_virtual_border_routers()
pulumi.export("expressConnectVirtualBorderRouterId1", ids.routers[0].id)
name_regex = alicloud.expressconnect.get_virtual_border_routers(name_regex="^my-VirtualBorderRouter")
pulumi.export("expressConnectVirtualBorderRouterId2", name_regex.routers[0].id)
filter = alicloud.expressconnect.get_virtual_border_routers(filters=[
    {
        "key": "PhysicalConnectionId",
        "values": ["pc-xxxx1"],
    },
    {
        "key": "VbrId",
        "values": [
            "vbr-xxxx1",
            "vbr-xxxx2",
        ],
    },
])
pulumi.export("expressConnectVirtualBorderRouterId3", filter.routers[0].id)
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/expressconnect"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		ids, err := expressconnect.GetVirtualBorderRouters(ctx, &expressconnect.GetVirtualBorderRoutersArgs{}, nil)
		if err != nil {
			return err
		}
		ctx.Export("expressConnectVirtualBorderRouterId1", ids.Routers[0].Id)
		nameRegex, err := expressconnect.GetVirtualBorderRouters(ctx, &expressconnect.GetVirtualBorderRoutersArgs{
			NameRegex: pulumi.StringRef("^my-VirtualBorderRouter"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("expressConnectVirtualBorderRouterId2", nameRegex.Routers[0].Id)
		filter, err := expressconnect.GetVirtualBorderRouters(ctx, &expressconnect.GetVirtualBorderRoutersArgs{
			Filters: []expressconnect.GetVirtualBorderRoutersFilter{
				{
					Key: pulumi.StringRef("PhysicalConnectionId"),
					Values: []string{
						"pc-xxxx1",
					},
				},
				{
					Key: pulumi.StringRef("VbrId"),
					Values: []string{
						"vbr-xxxx1",
						"vbr-xxxx2",
					},
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("expressConnectVirtualBorderRouterId3", filter.Routers[0].Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var ids = AliCloud.ExpressConnect.GetVirtualBorderRouters.Invoke();
    var nameRegex = AliCloud.ExpressConnect.GetVirtualBorderRouters.Invoke(new()
    {
        NameRegex = "^my-VirtualBorderRouter",
    });
    var filter = AliCloud.ExpressConnect.GetVirtualBorderRouters.Invoke(new()
    {
        Filters = new[]
        {
            new AliCloud.ExpressConnect.Inputs.GetVirtualBorderRoutersFilterInputArgs
            {
                Key = "PhysicalConnectionId",
                Values = new[]
                {
                    "pc-xxxx1",
                },
            },
            new AliCloud.ExpressConnect.Inputs.GetVirtualBorderRoutersFilterInputArgs
            {
                Key = "VbrId",
                Values = new[]
                {
                    "vbr-xxxx1",
                    "vbr-xxxx2",
                },
            },
        },
    });
    return new Dictionary<string, object?>
    {
        ["expressConnectVirtualBorderRouterId1"] = ids.Apply(getVirtualBorderRoutersResult => getVirtualBorderRoutersResult.Routers[0]?.Id),
        ["expressConnectVirtualBorderRouterId2"] = nameRegex.Apply(getVirtualBorderRoutersResult => getVirtualBorderRoutersResult.Routers[0]?.Id),
        ["expressConnectVirtualBorderRouterId3"] = filter.Apply(getVirtualBorderRoutersResult => getVirtualBorderRoutersResult.Routers[0]?.Id),
    };
});
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.GetVirtualBorderRoutersArgs;
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 ids = ExpressconnectFunctions.getVirtualBorderRouters();
        ctx.export("expressConnectVirtualBorderRouterId1", ids.applyValue(getVirtualBorderRoutersResult -> getVirtualBorderRoutersResult.routers()[0].id()));
        final var nameRegex = ExpressconnectFunctions.getVirtualBorderRouters(GetVirtualBorderRoutersArgs.builder()
            .nameRegex("^my-VirtualBorderRouter")
            .build());
        ctx.export("expressConnectVirtualBorderRouterId2", nameRegex.applyValue(getVirtualBorderRoutersResult -> getVirtualBorderRoutersResult.routers()[0].id()));
        final var filter = ExpressconnectFunctions.getVirtualBorderRouters(GetVirtualBorderRoutersArgs.builder()
            .filters(            
                GetVirtualBorderRoutersFilterArgs.builder()
                    .key("PhysicalConnectionId")
                    .values("pc-xxxx1")
                    .build(),
                GetVirtualBorderRoutersFilterArgs.builder()
                    .key("VbrId")
                    .values(                    
                        "vbr-xxxx1",
                        "vbr-xxxx2")
                    .build())
            .build());
        ctx.export("expressConnectVirtualBorderRouterId3", filter.applyValue(getVirtualBorderRoutersResult -> getVirtualBorderRoutersResult.routers()[0].id()));
    }
}
variables:
  ids:
    fn::invoke:
      function: alicloud:expressconnect:getVirtualBorderRouters
      arguments: {}
  nameRegex:
    fn::invoke:
      function: alicloud:expressconnect:getVirtualBorderRouters
      arguments:
        nameRegex: ^my-VirtualBorderRouter
  filter:
    fn::invoke:
      function: alicloud:expressconnect:getVirtualBorderRouters
      arguments:
        filters:
          - key: PhysicalConnectionId
            values:
              - pc-xxxx1
          - key: VbrId
            values:
              - vbr-xxxx1
              - vbr-xxxx2
outputs:
  expressConnectVirtualBorderRouterId1: ${ids.routers[0].id}
  expressConnectVirtualBorderRouterId2: ${nameRegex.routers[0].id}
  expressConnectVirtualBorderRouterId3: ${filter.routers[0].id}
Using getVirtualBorderRouters
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getVirtualBorderRouters(args: GetVirtualBorderRoutersArgs, opts?: InvokeOptions): Promise<GetVirtualBorderRoutersResult>
function getVirtualBorderRoutersOutput(args: GetVirtualBorderRoutersOutputArgs, opts?: InvokeOptions): Output<GetVirtualBorderRoutersResult>def get_virtual_border_routers(filters: Optional[Sequence[GetVirtualBorderRoutersFilter]] = None,
                               ids: Optional[Sequence[str]] = None,
                               name_regex: Optional[str] = None,
                               output_file: Optional[str] = None,
                               status: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetVirtualBorderRoutersResult
def get_virtual_border_routers_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetVirtualBorderRoutersFilterArgs]]]] = None,
                               ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               name_regex: Optional[pulumi.Input[str]] = None,
                               output_file: Optional[pulumi.Input[str]] = None,
                               status: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetVirtualBorderRoutersResult]func GetVirtualBorderRouters(ctx *Context, args *GetVirtualBorderRoutersArgs, opts ...InvokeOption) (*GetVirtualBorderRoutersResult, error)
func GetVirtualBorderRoutersOutput(ctx *Context, args *GetVirtualBorderRoutersOutputArgs, opts ...InvokeOption) GetVirtualBorderRoutersResultOutput> Note: This function is named GetVirtualBorderRouters in the Go SDK.
public static class GetVirtualBorderRouters 
{
    public static Task<GetVirtualBorderRoutersResult> InvokeAsync(GetVirtualBorderRoutersArgs args, InvokeOptions? opts = null)
    public static Output<GetVirtualBorderRoutersResult> Invoke(GetVirtualBorderRoutersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetVirtualBorderRoutersResult> getVirtualBorderRouters(GetVirtualBorderRoutersArgs args, InvokeOptions options)
public static Output<GetVirtualBorderRoutersResult> getVirtualBorderRouters(GetVirtualBorderRoutersArgs args, InvokeOptions options)
fn::invoke:
  function: alicloud:expressconnect/getVirtualBorderRouters:getVirtualBorderRouters
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Filters
List<Pulumi.Ali Cloud. Express Connect. Inputs. Get Virtual Border Routers Filter> 
- Custom filter block as described below.
- Ids List<string>
- A list of Virtual Border Router IDs.
- NameRegex string
- A regex string to filter results by Virtual Border Router name.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- Status string
- The instance state with. Valid values: active,deleting,recovering,terminated,terminating,unconfirmed.
- Filters
[]GetVirtual Border Routers Filter 
- Custom filter block as described below.
- Ids []string
- A list of Virtual Border Router IDs.
- NameRegex string
- A regex string to filter results by Virtual Border Router name.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- Status string
- The instance state with. Valid values: active,deleting,recovering,terminated,terminating,unconfirmed.
- filters
List<GetVirtual Border Routers Filter> 
- Custom filter block as described below.
- ids List<String>
- A list of Virtual Border Router IDs.
- nameRegex String
- A regex string to filter results by Virtual Border Router name.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- status String
- The instance state with. Valid values: active,deleting,recovering,terminated,terminating,unconfirmed.
- filters
GetVirtual Border Routers Filter[] 
- Custom filter block as described below.
- ids string[]
- A list of Virtual Border Router IDs.
- nameRegex string
- A regex string to filter results by Virtual Border Router name.
- outputFile string
- File name where to save data source results (after running pulumi preview).
- status string
- The instance state with. Valid values: active,deleting,recovering,terminated,terminating,unconfirmed.
- filters
Sequence[GetVirtual Border Routers Filter] 
- Custom filter block as described below.
- ids Sequence[str]
- A list of Virtual Border Router IDs.
- name_regex str
- A regex string to filter results by Virtual Border Router name.
- output_file str
- File name where to save data source results (after running pulumi preview).
- status str
- The instance state with. Valid values: active,deleting,recovering,terminated,terminating,unconfirmed.
- filters List<Property Map>
- Custom filter block as described below.
- ids List<String>
- A list of Virtual Border Router IDs.
- nameRegex String
- A regex string to filter results by Virtual Border Router name.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- status String
- The instance state with. Valid values: active,deleting,recovering,terminated,terminating,unconfirmed.
getVirtualBorderRouters Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- Routers
List<Pulumi.Ali Cloud. Express Connect. Outputs. Get Virtual Border Routers Router> 
- Filters
List<Pulumi.Ali Cloud. Express Connect. Outputs. Get Virtual Border Routers Filter> 
- NameRegex string
- OutputFile string
- Status string
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Routers
[]GetVirtual Border Routers Router 
- Filters
[]GetVirtual Border Routers Filter 
- NameRegex string
- OutputFile string
- Status string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- routers
List<GetVirtual Border Routers Router> 
- filters
List<GetVirtual Border Routers Filter> 
- nameRegex String
- outputFile String
- status String
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- routers
GetVirtual Border Routers Router[] 
- filters
GetVirtual Border Routers Filter[] 
- nameRegex string
- outputFile string
- status string
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- routers
Sequence[GetVirtual Border Routers Router] 
- filters
Sequence[GetVirtual Border Routers Filter] 
- name_regex str
- output_file str
- status str
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- routers List<Property Map>
- filters List<Property Map>
- nameRegex String
- outputFile String
- status String
Supporting Types
GetVirtualBorderRoutersFilter    
- Key string
- The key of the field to filter by, as defined by Alibaba Cloud API.
- Values List<string>
- Set of values that are accepted for the given field.
- Key string
- The key of the field to filter by, as defined by Alibaba Cloud API.
- Values []string
- Set of values that are accepted for the given field.
- key String
- The key of the field to filter by, as defined by Alibaba Cloud API.
- values List<String>
- Set of values that are accepted for the given field.
- key string
- The key of the field to filter by, as defined by Alibaba Cloud API.
- values string[]
- Set of values that are accepted for the given field.
- key str
- The key of the field to filter by, as defined by Alibaba Cloud API.
- values Sequence[str]
- Set of values that are accepted for the given field.
- key String
- The key of the field to filter by, as defined by Alibaba Cloud API.
- values List<String>
- Set of values that are accepted for the given field.
GetVirtualBorderRoutersRouter    
- AccessPoint stringId 
- The physical leased line access point ID.
- ActivationTime string
- The first activation time of VBR.
- CircuitCode string
- Operators for physical connection circuit provided coding.
- CloudBox stringInstance Id 
- Box Instance Id.
- CreateTime string
- The representative of the creation time resources attribute field.
- Description string
- 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.
- DetectMultiplier int
- 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.
- EccId string
- High Speed Migration Service Instance Id.
- EnableIpv6 bool
- Whether to Enable IPv6.
- Id string
- The ID of the Virtual Border Router.
- LocalGateway stringIp 
- Alibaba Cloud-Connected IPv4 address.
- LocalIpv6Gateway stringIp 
- Alibaba Cloud-Connected IPv6 Address.
- MinRx intInterval 
- Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- MinTx intInterval 
- Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- PaymentVbr stringExpire Time 
- The Billing of the Extended Time.
- PeerGateway stringIp 
- The Client-Side Interconnection IPv4 Address.
- PeerIpv6Gateway stringIp 
- The Client-Side Interconnection IPv6 Address.
- PeeringIpv6Subnet stringMask 
- Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- PeeringSubnet stringMask 
- Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- PhysicalConnection stringBusiness Status 
- Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- PhysicalConnection stringId 
- The ID of the Physical Connection to Which the ID.
- PhysicalConnection stringOwner Uid 
- Physical Private Line Where the Account ID.
- PhysicalConnection stringStatus 
- Physical Private Line State.
- RecoveryTime string
- The Last from a Terminated State to the Active State of the Time.
- RouteTable stringId 
- Route Table ID.
- Status string
- The VBR state.
- TerminationTime string
- The Most Recent Was Aborted by the Time.
- Type string
- VBR Type.
- VirtualBorder stringRouter Id 
- The VBR ID.
- VirtualBorder stringRouter Name 
- 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.
- VlanId int
- The VLAN ID of the VBR. Value range: 0~2999.
- VlanInterface stringId 
- The ID of the Router Interface.
- AccessPoint stringId 
- The physical leased line access point ID.
- ActivationTime string
- The first activation time of VBR.
- CircuitCode string
- Operators for physical connection circuit provided coding.
- CloudBox stringInstance Id 
- Box Instance Id.
- CreateTime string
- The representative of the creation time resources attribute field.
- Description string
- 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.
- DetectMultiplier int
- 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.
- EccId string
- High Speed Migration Service Instance Id.
- EnableIpv6 bool
- Whether to Enable IPv6.
- Id string
- The ID of the Virtual Border Router.
- LocalGateway stringIp 
- Alibaba Cloud-Connected IPv4 address.
- LocalIpv6Gateway stringIp 
- Alibaba Cloud-Connected IPv6 Address.
- MinRx intInterval 
- Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- MinTx intInterval 
- Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- PaymentVbr stringExpire Time 
- The Billing of the Extended Time.
- PeerGateway stringIp 
- The Client-Side Interconnection IPv4 Address.
- PeerIpv6Gateway stringIp 
- The Client-Side Interconnection IPv6 Address.
- PeeringIpv6Subnet stringMask 
- Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- PeeringSubnet stringMask 
- Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- PhysicalConnection stringBusiness Status 
- Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- PhysicalConnection stringId 
- The ID of the Physical Connection to Which the ID.
- PhysicalConnection stringOwner Uid 
- Physical Private Line Where the Account ID.
- PhysicalConnection stringStatus 
- Physical Private Line State.
- RecoveryTime string
- The Last from a Terminated State to the Active State of the Time.
- RouteTable stringId 
- Route Table ID.
- Status string
- The VBR state.
- TerminationTime string
- The Most Recent Was Aborted by the Time.
- Type string
- VBR Type.
- VirtualBorder stringRouter Id 
- The VBR ID.
- VirtualBorder stringRouter Name 
- 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.
- VlanId int
- The VLAN ID of the VBR. Value range: 0~2999.
- VlanInterface stringId 
- The ID of the Router Interface.
- accessPoint StringId 
- The physical leased line access point ID.
- activationTime String
- The first activation time of VBR.
- circuitCode String
- Operators for physical connection circuit provided coding.
- cloudBox StringInstance Id 
- Box Instance Id.
- createTime String
- The representative of the creation time resources attribute field.
- description String
- 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.
- detectMultiplier Integer
- 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.
- eccId String
- High Speed Migration Service Instance Id.
- enableIpv6 Boolean
- Whether to Enable IPv6.
- id String
- The ID of the Virtual Border Router.
- localGateway StringIp 
- Alibaba Cloud-Connected IPv4 address.
- localIpv6Gateway StringIp 
- Alibaba Cloud-Connected IPv6 Address.
- minRx IntegerInterval 
- Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- minTx IntegerInterval 
- Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- paymentVbr StringExpire Time 
- The Billing of the Extended Time.
- peerGateway StringIp 
- The Client-Side Interconnection IPv4 Address.
- peerIpv6Gateway StringIp 
- The Client-Side Interconnection IPv6 Address.
- peeringIpv6Subnet StringMask 
- Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peeringSubnet StringMask 
- Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physicalConnection StringBusiness Status 
- Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physicalConnection StringId 
- The ID of the Physical Connection to Which the ID.
- physicalConnection StringOwner Uid 
- Physical Private Line Where the Account ID.
- physicalConnection StringStatus 
- Physical Private Line State.
- recoveryTime String
- The Last from a Terminated State to the Active State of the Time.
- routeTable StringId 
- Route Table ID.
- status String
- The VBR state.
- terminationTime String
- The Most Recent Was Aborted by the Time.
- type String
- VBR Type.
- virtualBorder StringRouter Id 
- The VBR ID.
- virtualBorder StringRouter Name 
- 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.
- vlanId Integer
- The VLAN ID of the VBR. Value range: 0~2999.
- vlanInterface StringId 
- The ID of the Router Interface.
- accessPoint stringId 
- The physical leased line access point ID.
- activationTime string
- The first activation time of VBR.
- circuitCode string
- Operators for physical connection circuit provided coding.
- cloudBox stringInstance Id 
- Box Instance Id.
- createTime string
- The representative of the creation time resources attribute field.
- description string
- 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.
- detectMultiplier number
- 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.
- eccId string
- High Speed Migration Service Instance Id.
- enableIpv6 boolean
- Whether to Enable IPv6.
- id string
- The ID of the Virtual Border Router.
- localGateway stringIp 
- Alibaba Cloud-Connected IPv4 address.
- localIpv6Gateway stringIp 
- Alibaba Cloud-Connected IPv6 Address.
- minRx numberInterval 
- Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- minTx numberInterval 
- Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- paymentVbr stringExpire Time 
- The Billing of the Extended Time.
- peerGateway stringIp 
- The Client-Side Interconnection IPv4 Address.
- peerIpv6Gateway stringIp 
- The Client-Side Interconnection IPv6 Address.
- peeringIpv6Subnet stringMask 
- Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peeringSubnet stringMask 
- Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physicalConnection stringBusiness Status 
- Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physicalConnection stringId 
- The ID of the Physical Connection to Which the ID.
- physicalConnection stringOwner Uid 
- Physical Private Line Where the Account ID.
- physicalConnection stringStatus 
- Physical Private Line State.
- recoveryTime string
- The Last from a Terminated State to the Active State of the Time.
- routeTable stringId 
- Route Table ID.
- status string
- The VBR state.
- terminationTime string
- The Most Recent Was Aborted by the Time.
- type string
- VBR Type.
- virtualBorder stringRouter Id 
- The VBR ID.
- virtualBorder stringRouter Name 
- 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.
- vlanId number
- The VLAN ID of the VBR. Value range: 0~2999.
- vlanInterface stringId 
- The ID of the Router Interface.
- access_point_ strid 
- The physical leased line access point ID.
- activation_time str
- The first activation time of VBR.
- circuit_code str
- Operators for physical connection circuit provided coding.
- cloud_box_ strinstance_ id 
- Box Instance Id.
- create_time str
- The representative of the creation time resources attribute field.
- description str
- 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.
- detect_multiplier int
- 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.
- ecc_id str
- High Speed Migration Service Instance Id.
- enable_ipv6 bool
- Whether to Enable IPv6.
- id str
- The ID of the Virtual Border Router.
- local_gateway_ strip 
- Alibaba Cloud-Connected IPv4 address.
- local_ipv6_ strgateway_ ip 
- Alibaba Cloud-Connected IPv6 Address.
- min_rx_ intinterval 
- Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- min_tx_ intinterval 
- Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- payment_vbr_ strexpire_ time 
- The Billing of the Extended Time.
- peer_gateway_ strip 
- The Client-Side Interconnection IPv4 Address.
- peer_ipv6_ strgateway_ ip 
- The Client-Side Interconnection IPv6 Address.
- peering_ipv6_ strsubnet_ mask 
- Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peering_subnet_ strmask 
- Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physical_connection_ strbusiness_ status 
- Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physical_connection_ strid 
- The ID of the Physical Connection to Which the ID.
- physical_connection_ strowner_ uid 
- Physical Private Line Where the Account ID.
- physical_connection_ strstatus 
- Physical Private Line State.
- recovery_time str
- The Last from a Terminated State to the Active State of the Time.
- route_table_ strid 
- Route Table ID.
- status str
- The VBR state.
- termination_time str
- The Most Recent Was Aborted by the Time.
- type str
- VBR Type.
- virtual_border_ strrouter_ id 
- The VBR ID.
- virtual_border_ strrouter_ name 
- 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.
- vlan_id int
- The VLAN ID of the VBR. Value range: 0~2999.
- vlan_interface_ strid 
- The ID of the Router Interface.
- accessPoint StringId 
- The physical leased line access point ID.
- activationTime String
- The first activation time of VBR.
- circuitCode String
- Operators for physical connection circuit provided coding.
- cloudBox StringInstance Id 
- Box Instance Id.
- createTime String
- The representative of the creation time resources attribute field.
- description String
- 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.
- detectMultiplier Number
- 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.
- eccId String
- High Speed Migration Service Instance Id.
- enableIpv6 Boolean
- Whether to Enable IPv6.
- id String
- The ID of the Virtual Border Router.
- localGateway StringIp 
- Alibaba Cloud-Connected IPv4 address.
- localIpv6Gateway StringIp 
- Alibaba Cloud-Connected IPv6 Address.
- minRx NumberInterval 
- Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- minTx NumberInterval 
- Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- paymentVbr StringExpire Time 
- The Billing of the Extended Time.
- peerGateway StringIp 
- The Client-Side Interconnection IPv4 Address.
- peerIpv6Gateway StringIp 
- The Client-Side Interconnection IPv6 Address.
- peeringIpv6Subnet StringMask 
- Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peeringSubnet StringMask 
- Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physicalConnection StringBusiness Status 
- Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physicalConnection StringId 
- The ID of the Physical Connection to Which the ID.
- physicalConnection StringOwner Uid 
- Physical Private Line Where the Account ID.
- physicalConnection StringStatus 
- Physical Private Line State.
- recoveryTime String
- The Last from a Terminated State to the Active State of the Time.
- routeTable StringId 
- Route Table ID.
- status String
- The VBR state.
- terminationTime String
- The Most Recent Was Aborted by the Time.
- type String
- VBR Type.
- virtualBorder StringRouter Id 
- The VBR ID.
- virtualBorder StringRouter Name 
- 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.
- vlanId Number
- The VLAN ID of the VBR. Value range: 0~2999.
- vlanInterface StringId 
- The ID of the Router Interface.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the alicloudTerraform Provider.