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 dictionary
The following arguments are supported:
- Filters
Changes to this property will trigger replacement.
Ali Cloud. Express Connect. Inputs. Get Virtual Border Routers Filter> - Custom filter block as described below.
- Ids
Changes to this property will trigger replacement.
- A list of Virtual Border Router IDs.
- Name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Virtual Border Router name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status
Changes to this property will trigger replacement.
- The instance state with. Valid values:
active
,deleting
,recovering
,terminated
,terminating
,unconfirmed
.
- Filters
Changes to this property will trigger replacement.
Virtual Border Routers Filter - Custom filter block as described below.
- Ids
Changes to this property will trigger replacement.
- A list of Virtual Border Router IDs.
- Name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Virtual Border Router name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status
Changes to this property will trigger replacement.
- The instance state with. Valid values:
active
,deleting
,recovering
,terminated
,terminating
,unconfirmed
.
- filters
Changes to this property will trigger replacement.
Virtual Border Routers Filter> - Custom filter block as described below.
- ids
Changes to this property will trigger replacement.
- A list of Virtual Border Router IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Virtual Border Router name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status
Changes to this property will trigger replacement.
- The instance state with. Valid values:
active
,deleting
,recovering
,terminated
,terminating
,unconfirmed
.
- filters
Changes to this property will trigger replacement.
Virtual Border Routers Filter[] - Custom filter block as described below.
- ids
Changes to this property will trigger replacement.
- A list of Virtual Border Router IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Virtual Border Router name.
- output
File string - File name where to save data source results (after running
pulumi preview
). - status
Changes to this property will trigger replacement.
- The instance state with. Valid values:
active
,deleting
,recovering
,terminated
,terminating
,unconfirmed
.
- filters
Changes to this property will trigger replacement.
Virtual Border Routers Filter] - Custom filter block as described below.
- ids
Changes to this property will trigger replacement.
- A list of Virtual Border Router IDs.
- name_
regex Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- The instance state with. Valid values:
active
,deleting
,recovering
,terminated
,terminating
,unconfirmed
.
- filters
Changes to this property will trigger replacement.
- Custom filter block as described below.
- ids
Changes to this property will trigger replacement.
- A list of Virtual Border Router IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Virtual Border Router name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status
Changes to this property will trigger replacement.
- 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> - Name
Regex string - Output
File string - Status string
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Routers
[]Get
Virtual Border Routers Router - Filters
[]Get
Virtual Border Routers Filter - Name
Regex string - Output
File string - Status string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- routers
List<Get
Virtual Border Routers Router> - filters
List<Get
Virtual Border Routers Filter> - name
Regex String - output
File String - status String
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- routers
Get
Virtual Border Routers Router[] - filters
Get
Virtual Border Routers Filter[] - name
Regex string - output
File string - status string
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- routers
Sequence[Get
Virtual Border Routers Router] - filters
Sequence[Get
Virtual 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>
- name
Regex String - output
File 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
- Access
Point Id This property is required. string - The physical leased line access point ID.
- Activation
Time This property is required. string - The first activation time of VBR.
- Circuit
Code This property is required. string - Operators for physical connection circuit provided coding.
- Cloud
Box Instance Id This property is required. string - Box Instance Id.
- Create
Time This property is required. string - The representative of the creation time resources attribute field.
- Description
This property is required. 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.
- Detect
Multiplier This property is required. 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 This property is required. string - High Speed Migration Service Instance Id.
- Enable
Ipv6 This property is required. bool - Whether to Enable IPv6.
- Id
This property is required. string - The ID of the Virtual Border Router.
- Local
Gateway Ip This property is required. string - Alibaba Cloud-Connected IPv4 address.
- Local
Ipv6Gateway Ip This property is required. string - Alibaba Cloud-Connected IPv6 Address.
- Min
Rx Interval This property is required. int - Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- Min
Tx Interval This property is required. int - Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- Payment
Vbr Expire Time This property is required. string - The Billing of the Extended Time.
- Peer
Gateway Ip This property is required. string - The Client-Side Interconnection IPv4 Address.
- Peer
Ipv6Gateway Ip This property is required. string - The Client-Side Interconnection IPv6 Address.
- Peering
Ipv6Subnet Mask This property is required. string - Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- Peering
Subnet Mask This property is required. string - Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- Physical
Connection Business Status This property is required. string - Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- Physical
Connection Id This property is required. string - The ID of the Physical Connection to Which the ID.
- Physical
Connection Owner Uid This property is required. string - Physical Private Line Where the Account ID.
- Physical
Connection Status This property is required. string - Physical Private Line State.
- Recovery
Time This property is required. string - The Last from a Terminated State to the Active State of the Time.
- Route
Table Id This property is required. string - Route Table ID.
- Status
This property is required. string - The VBR state.
- Termination
Time This property is required. string - The Most Recent Was Aborted by the Time.
- Type
This property is required. string - VBR Type.
- Virtual
Border Router Id This property is required. string - The VBR ID.
- Virtual
Border Router Name This property is required. string - 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 This property is required. int - The VLAN ID of the VBR. Value range: 0~2999.
- Vlan
Interface Id This property is required. string - The ID of the Router Interface.
- Access
Point Id This property is required. string - The physical leased line access point ID.
- Activation
Time This property is required. string - The first activation time of VBR.
- Circuit
Code This property is required. string - Operators for physical connection circuit provided coding.
- Cloud
Box Instance Id This property is required. string - Box Instance Id.
- Create
Time This property is required. string - The representative of the creation time resources attribute field.
- Description
This property is required. 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.
- Detect
Multiplier This property is required. 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 This property is required. string - High Speed Migration Service Instance Id.
- Enable
Ipv6 This property is required. bool - Whether to Enable IPv6.
- Id
This property is required. string - The ID of the Virtual Border Router.
- Local
Gateway Ip This property is required. string - Alibaba Cloud-Connected IPv4 address.
- Local
Ipv6Gateway Ip This property is required. string - Alibaba Cloud-Connected IPv6 Address.
- Min
Rx Interval This property is required. int - Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- Min
Tx Interval This property is required. int - Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- Payment
Vbr Expire Time This property is required. string - The Billing of the Extended Time.
- Peer
Gateway Ip This property is required. string - The Client-Side Interconnection IPv4 Address.
- Peer
Ipv6Gateway Ip This property is required. string - The Client-Side Interconnection IPv6 Address.
- Peering
Ipv6Subnet Mask This property is required. string - Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- Peering
Subnet Mask This property is required. string - Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- Physical
Connection Business Status This property is required. string - Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- Physical
Connection Id This property is required. string - The ID of the Physical Connection to Which the ID.
- Physical
Connection Owner Uid This property is required. string - Physical Private Line Where the Account ID.
- Physical
Connection Status This property is required. string - Physical Private Line State.
- Recovery
Time This property is required. string - The Last from a Terminated State to the Active State of the Time.
- Route
Table Id This property is required. string - Route Table ID.
- Status
This property is required. string - The VBR state.
- Termination
Time This property is required. string - The Most Recent Was Aborted by the Time.
- Type
This property is required. string - VBR Type.
- Virtual
Border Router Id This property is required. string - The VBR ID.
- Virtual
Border Router Name This property is required. string - 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 This property is required. int - The VLAN ID of the VBR. Value range: 0~2999.
- Vlan
Interface Id This property is required. string - The ID of the Router Interface.
- access
Point Id This property is required. String - The physical leased line access point ID.
- activation
Time This property is required. String - The first activation time of VBR.
- circuit
Code This property is required. String - Operators for physical connection circuit provided coding.
- cloud
Box Instance Id This property is required. String - Box Instance Id.
- create
Time This property is required. String - The representative of the creation time resources attribute field.
- description
This property is required. 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.
- detect
Multiplier This property is required. 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.
- ecc
Id This property is required. String - High Speed Migration Service Instance Id.
- enable
Ipv6 This property is required. Boolean - Whether to Enable IPv6.
- id
This property is required. String - The ID of the Virtual Border Router.
- local
Gateway Ip This property is required. String - Alibaba Cloud-Connected IPv4 address.
- local
Ipv6Gateway Ip This property is required. String - Alibaba Cloud-Connected IPv6 Address.
- min
Rx Interval This property is required. Integer - Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- min
Tx Interval This property is required. Integer - Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- payment
Vbr Expire Time This property is required. String - The Billing of the Extended Time.
- peer
Gateway Ip This property is required. String - The Client-Side Interconnection IPv4 Address.
- peer
Ipv6Gateway Ip This property is required. String - The Client-Side Interconnection IPv6 Address.
- peering
Ipv6Subnet Mask This property is required. String - Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peering
Subnet Mask This property is required. String - Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physical
Connection Business Status This property is required. String - Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physical
Connection Id This property is required. String - The ID of the Physical Connection to Which the ID.
- physical
Connection Owner Uid This property is required. String - Physical Private Line Where the Account ID.
- physical
Connection Status This property is required. String - Physical Private Line State.
- recovery
Time This property is required. String - The Last from a Terminated State to the Active State of the Time.
- route
Table Id This property is required. String - Route Table ID.
- status
This property is required. String - The VBR state.
- termination
Time This property is required. String - The Most Recent Was Aborted by the Time.
- type
This property is required. String - VBR Type.
- virtual
Border Router Id This property is required. String - The VBR ID.
- virtual
Border Router Name This property is required. String - 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 This property is required. Integer - The VLAN ID of the VBR. Value range: 0~2999.
- vlan
Interface Id This property is required. String - The ID of the Router Interface.
- access
Point Id This property is required. string - The physical leased line access point ID.
- activation
Time This property is required. string - The first activation time of VBR.
- circuit
Code This property is required. string - Operators for physical connection circuit provided coding.
- cloud
Box Instance Id This property is required. string - Box Instance Id.
- create
Time This property is required. string - The representative of the creation time resources attribute field.
- description
This property is required. 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.
- detect
Multiplier This property is required. 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.
- ecc
Id This property is required. string - High Speed Migration Service Instance Id.
- enable
Ipv6 This property is required. boolean - Whether to Enable IPv6.
- id
This property is required. string - The ID of the Virtual Border Router.
- local
Gateway Ip This property is required. string - Alibaba Cloud-Connected IPv4 address.
- local
Ipv6Gateway Ip This property is required. string - Alibaba Cloud-Connected IPv6 Address.
- min
Rx Interval This property is required. number - Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- min
Tx Interval This property is required. number - Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- payment
Vbr Expire Time This property is required. string - The Billing of the Extended Time.
- peer
Gateway Ip This property is required. string - The Client-Side Interconnection IPv4 Address.
- peer
Ipv6Gateway Ip This property is required. string - The Client-Side Interconnection IPv6 Address.
- peering
Ipv6Subnet Mask This property is required. string - Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peering
Subnet Mask This property is required. string - Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physical
Connection Business Status This property is required. string - Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physical
Connection Id This property is required. string - The ID of the Physical Connection to Which the ID.
- physical
Connection Owner Uid This property is required. string - Physical Private Line Where the Account ID.
- physical
Connection Status This property is required. string - Physical Private Line State.
- recovery
Time This property is required. string - The Last from a Terminated State to the Active State of the Time.
- route
Table Id This property is required. string - Route Table ID.
- status
This property is required. string - The VBR state.
- termination
Time This property is required. string - The Most Recent Was Aborted by the Time.
- type
This property is required. string - VBR Type.
- virtual
Border Router Id This property is required. string - The VBR ID.
- virtual
Border Router Name This property is required. string - 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 This property is required. number - The VLAN ID of the VBR. Value range: 0~2999.
- vlan
Interface Id This property is required. string - The ID of the Router Interface.
- access_
point_ id This property is required. str - The physical leased line access point ID.
- activation_
time This property is required. str - The first activation time of VBR.
- circuit_
code This property is required. str - Operators for physical connection circuit provided coding.
- cloud_
box_ instance_ id This property is required. str - Box Instance Id.
- create_
time This property is required. str - The representative of the creation time resources attribute field.
- description
This property is required. 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 This property is required. 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 This property is required. str - High Speed Migration Service Instance Id.
- enable_
ipv6 This property is required. bool - Whether to Enable IPv6.
- id
This property is required. str - The ID of the Virtual Border Router.
- local_
gateway_ ip This property is required. str - Alibaba Cloud-Connected IPv4 address.
- local_
ipv6_ gateway_ ip This property is required. str - Alibaba Cloud-Connected IPv6 Address.
- min_
rx_ interval This property is required. int - Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- min_
tx_ interval This property is required. int - Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- payment_
vbr_ expire_ time This property is required. str - The Billing of the Extended Time.
- peer_
gateway_ ip This property is required. str - The Client-Side Interconnection IPv4 Address.
- peer_
ipv6_ gateway_ ip This property is required. str - The Client-Side Interconnection IPv6 Address.
- peering_
ipv6_ subnet_ mask This property is required. str - Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peering_
subnet_ mask This property is required. str - Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physical_
connection_ business_ status This property is required. str - Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physical_
connection_ id This property is required. str - The ID of the Physical Connection to Which the ID.
- physical_
connection_ owner_ uid This property is required. str - Physical Private Line Where the Account ID.
- physical_
connection_ status This property is required. str - Physical Private Line State.
- recovery_
time This property is required. str - The Last from a Terminated State to the Active State of the Time.
- route_
table_ id This property is required. str - Route Table ID.
- status
This property is required. str - The VBR state.
- termination_
time This property is required. str - The Most Recent Was Aborted by the Time.
- type
This property is required. str - VBR Type.
- virtual_
border_ router_ id This property is required. str - The VBR ID.
- virtual_
border_ router_ name This property is required. str - 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 This property is required. int - The VLAN ID of the VBR. Value range: 0~2999.
- vlan_
interface_ id This property is required. str - The ID of the Router Interface.
- access
Point Id This property is required. String - The physical leased line access point ID.
- activation
Time This property is required. String - The first activation time of VBR.
- circuit
Code This property is required. String - Operators for physical connection circuit provided coding.
- cloud
Box Instance Id This property is required. String - Box Instance Id.
- create
Time This property is required. String - The representative of the creation time resources attribute field.
- description
This property is required. 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.
- detect
Multiplier This property is required. 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.
- ecc
Id This property is required. String - High Speed Migration Service Instance Id.
- enable
Ipv6 This property is required. Boolean - Whether to Enable IPv6.
- id
This property is required. String - The ID of the Virtual Border Router.
- local
Gateway Ip This property is required. String - Alibaba Cloud-Connected IPv4 address.
- local
Ipv6Gateway Ip This property is required. String - Alibaba Cloud-Connected IPv6 Address.
- min
Rx Interval This property is required. Number - Configure BFD packet reception interval of values include: 200~1000, unit: ms.
- min
Tx Interval This property is required. Number - Configure BFD packet transmission interval maximum value: 200~1000, unit: ms.
- payment
Vbr Expire Time This property is required. String - The Billing of the Extended Time.
- peer
Gateway Ip This property is required. String - The Client-Side Interconnection IPv4 Address.
- peer
Ipv6Gateway Ip This property is required. String - The Client-Side Interconnection IPv6 Address.
- peering
Ipv6Subnet Mask This property is required. String - Alibaba Cloud-Connected IPv6 with Client-Side Interconnection IPv6 of Subnet Mask.
- peering
Subnet Mask This property is required. String - Alibaba Cloud-Connected IPv4 and Client-Side Interconnection IPv4 of Subnet Mask.
- physical
Connection Business Status This property is required. String - Physical Private Line Service Status Value Normal: Normal, financiallocked: If You Lock.
- physical
Connection Id This property is required. String - The ID of the Physical Connection to Which the ID.
- physical
Connection Owner Uid This property is required. String - Physical Private Line Where the Account ID.
- physical
Connection Status This property is required. String - Physical Private Line State.
- recovery
Time This property is required. String - The Last from a Terminated State to the Active State of the Time.
- route
Table Id This property is required. String - Route Table ID.
- status
This property is required. String - The VBR state.
- termination
Time This property is required. String - The Most Recent Was Aborted by the Time.
- type
This property is required. String - VBR Type.
- virtual
Border Router Id This property is required. String - The VBR ID.
- virtual
Border Router Name This property is required. String - 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 This property is required. Number - The VLAN ID of the VBR. Value range: 0~2999.
- vlan
Interface Id This property is required. String - 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
alicloud
Terraform Provider.