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

alicloud.vpc.getRouterInterfaces

Explore with Pulumi AI

Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

This data source provides information about router interfaces that connect VPCs together.

DEPRECATED: This datasource has been deprecated from version 1.199.0. Please use new data source alicloud_express_connect_router_interfaces.

Example Usage

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

const routerInterfacesDs = alicloud.vpc.getRouterInterfaces({
    nameRegex: "^testenv",
    status: "Active",
});
export const firstRouterInterfaceId = routerInterfacesDs.then(routerInterfacesDs => routerInterfacesDs.interfaces?.[0]?.id);
Copy
import pulumi
import pulumi_alicloud as alicloud

router_interfaces_ds = alicloud.vpc.get_router_interfaces(name_regex="^testenv",
    status="Active")
pulumi.export("firstRouterInterfaceId", router_interfaces_ds.interfaces[0].id)
Copy
package main

import (
	"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 {
		routerInterfacesDs, err := vpc.GetRouterInterfaces(ctx, &vpc.GetRouterInterfacesArgs{
			NameRegex: pulumi.StringRef("^testenv"),
			Status:    pulumi.StringRef("Active"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("firstRouterInterfaceId", routerInterfacesDs.Interfaces[0].Id)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var routerInterfacesDs = AliCloud.Vpc.GetRouterInterfaces.Invoke(new()
    {
        NameRegex = "^testenv",
        Status = "Active",
    });

    return new Dictionary<string, object?>
    {
        ["firstRouterInterfaceId"] = routerInterfacesDs.Apply(getRouterInterfacesResult => getRouterInterfacesResult.Interfaces[0]?.Id),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.VpcFunctions;
import com.pulumi.alicloud.vpc.inputs.GetRouterInterfacesArgs;
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 routerInterfacesDs = VpcFunctions.getRouterInterfaces(GetRouterInterfacesArgs.builder()
            .nameRegex("^testenv")
            .status("Active")
            .build());

        ctx.export("firstRouterInterfaceId", routerInterfacesDs.applyValue(getRouterInterfacesResult -> getRouterInterfacesResult.interfaces()[0].id()));
    }
}
Copy
variables:
  routerInterfacesDs:
    fn::invoke:
      function: alicloud:vpc:getRouterInterfaces
      arguments:
        nameRegex: ^testenv
        status: Active
outputs:
  firstRouterInterfaceId: ${routerInterfacesDs.interfaces[0].id}
Copy

Using getRouterInterfaces

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 getRouterInterfaces(args: GetRouterInterfacesArgs, opts?: InvokeOptions): Promise<GetRouterInterfacesResult>
function getRouterInterfacesOutput(args: GetRouterInterfacesOutputArgs, opts?: InvokeOptions): Output<GetRouterInterfacesResult>
Copy
def get_router_interfaces(ids: Optional[Sequence[str]] = None,
                          name_regex: Optional[str] = None,
                          opposite_interface_id: Optional[str] = None,
                          opposite_interface_owner_id: Optional[str] = None,
                          output_file: Optional[str] = None,
                          role: Optional[str] = None,
                          router_id: Optional[str] = None,
                          router_type: Optional[str] = None,
                          specification: Optional[str] = None,
                          status: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetRouterInterfacesResult
def get_router_interfaces_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          name_regex: Optional[pulumi.Input[str]] = None,
                          opposite_interface_id: Optional[pulumi.Input[str]] = None,
                          opposite_interface_owner_id: Optional[pulumi.Input[str]] = None,
                          output_file: Optional[pulumi.Input[str]] = None,
                          role: Optional[pulumi.Input[str]] = None,
                          router_id: Optional[pulumi.Input[str]] = None,
                          router_type: Optional[pulumi.Input[str]] = None,
                          specification: Optional[pulumi.Input[str]] = None,
                          status: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetRouterInterfacesResult]
Copy
func GetRouterInterfaces(ctx *Context, args *GetRouterInterfacesArgs, opts ...InvokeOption) (*GetRouterInterfacesResult, error)
func GetRouterInterfacesOutput(ctx *Context, args *GetRouterInterfacesOutputArgs, opts ...InvokeOption) GetRouterInterfacesResultOutput
Copy

> Note: This function is named GetRouterInterfaces in the Go SDK.

public static class GetRouterInterfaces 
{
    public static Task<GetRouterInterfacesResult> InvokeAsync(GetRouterInterfacesArgs args, InvokeOptions? opts = null)
    public static Output<GetRouterInterfacesResult> Invoke(GetRouterInterfacesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetRouterInterfacesResult> getRouterInterfaces(GetRouterInterfacesArgs args, InvokeOptions options)
public static Output<GetRouterInterfacesResult> getRouterInterfaces(GetRouterInterfacesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:vpc/getRouterInterfaces:getRouterInterfaces
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Ids List<string>
A list of router interface IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string used to filter by router interface name.
OppositeInterfaceId Changes to this property will trigger replacement. string
ID of the peer router interface.
OppositeInterfaceOwnerId Changes to this property will trigger replacement. string
Account ID of the owner of the peer router interface.
OutputFile string
File name where to save data source results (after running pulumi preview).
Role Changes to this property will trigger replacement. string
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
RouterId Changes to this property will trigger replacement. string
ID of the VRouter located in the local region.
RouterType Changes to this property will trigger replacement. string
Router type in the local region. Valid values are VRouter and VBR (physical connection).
Specification Changes to this property will trigger replacement. string
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
Status Changes to this property will trigger replacement. string
Expected status. Valid values are Active, Inactive and Idle.
Ids []string
A list of router interface IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string used to filter by router interface name.
OppositeInterfaceId Changes to this property will trigger replacement. string
ID of the peer router interface.
OppositeInterfaceOwnerId Changes to this property will trigger replacement. string
Account ID of the owner of the peer router interface.
OutputFile string
File name where to save data source results (after running pulumi preview).
Role Changes to this property will trigger replacement. string
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
RouterId Changes to this property will trigger replacement. string
ID of the VRouter located in the local region.
RouterType Changes to this property will trigger replacement. string
Router type in the local region. Valid values are VRouter and VBR (physical connection).
Specification Changes to this property will trigger replacement. string
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
Status Changes to this property will trigger replacement. string
Expected status. Valid values are Active, Inactive and Idle.
ids List<String>
A list of router interface IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string used to filter by router interface name.
oppositeInterfaceId Changes to this property will trigger replacement. String
ID of the peer router interface.
oppositeInterfaceOwnerId Changes to this property will trigger replacement. String
Account ID of the owner of the peer router interface.
outputFile String
File name where to save data source results (after running pulumi preview).
role Changes to this property will trigger replacement. String
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
routerId Changes to this property will trigger replacement. String
ID of the VRouter located in the local region.
routerType Changes to this property will trigger replacement. String
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification Changes to this property will trigger replacement. String
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status Changes to this property will trigger replacement. String
Expected status. Valid values are Active, Inactive and Idle.
ids string[]
A list of router interface IDs.
nameRegex Changes to this property will trigger replacement. string
A regex string used to filter by router interface name.
oppositeInterfaceId Changes to this property will trigger replacement. string
ID of the peer router interface.
oppositeInterfaceOwnerId Changes to this property will trigger replacement. string
Account ID of the owner of the peer router interface.
outputFile string
File name where to save data source results (after running pulumi preview).
role Changes to this property will trigger replacement. string
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
routerId Changes to this property will trigger replacement. string
ID of the VRouter located in the local region.
routerType Changes to this property will trigger replacement. string
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification Changes to this property will trigger replacement. string
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status Changes to this property will trigger replacement. string
Expected status. Valid values are Active, Inactive and Idle.
ids Sequence[str]
A list of router interface IDs.
name_regex Changes to this property will trigger replacement. str
A regex string used to filter by router interface name.
opposite_interface_id Changes to this property will trigger replacement. str
ID of the peer router interface.
opposite_interface_owner_id Changes to this property will trigger replacement. str
Account ID of the owner of the peer router interface.
output_file str
File name where to save data source results (after running pulumi preview).
role Changes to this property will trigger replacement. str
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
router_id Changes to this property will trigger replacement. str
ID of the VRouter located in the local region.
router_type Changes to this property will trigger replacement. str
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification Changes to this property will trigger replacement. str
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status Changes to this property will trigger replacement. str
Expected status. Valid values are Active, Inactive and Idle.
ids List<String>
A list of router interface IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string used to filter by router interface name.
oppositeInterfaceId Changes to this property will trigger replacement. String
ID of the peer router interface.
oppositeInterfaceOwnerId Changes to this property will trigger replacement. String
Account ID of the owner of the peer router interface.
outputFile String
File name where to save data source results (after running pulumi preview).
role Changes to this property will trigger replacement. String
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
routerId Changes to this property will trigger replacement. String
ID of the VRouter located in the local region.
routerType Changes to this property will trigger replacement. String
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification Changes to this property will trigger replacement. String
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status Changes to this property will trigger replacement. String
Expected status. Valid values are Active, Inactive and Idle.

getRouterInterfaces Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
A list of router interface IDs.
Interfaces List<Pulumi.AliCloud.Vpc.Outputs.GetRouterInterfacesInterface>
A list of router interfaces. Each element contains the following attributes:
Names List<string>
A list of router interface names.
NameRegex string
OppositeInterfaceId string
Peer router interface ID.
OppositeInterfaceOwnerId string
Account ID of the owner of the peer router interface.
OutputFile string
Role string
Router interface role. Possible values: InitiatingSide and AcceptingSide.
RouterId string
ID of the VRouter located in the local region.
RouterType string
Router type in the local region. Possible values: VRouter and VBR.
Specification string
Router interface specification. Possible values: Small.1, Middle.1, Large.2, ...etc.
Status string
Router interface status. Possible values: Active, Inactive and Idle.
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
A list of router interface IDs.
Interfaces []GetRouterInterfacesInterface
A list of router interfaces. Each element contains the following attributes:
Names []string
A list of router interface names.
NameRegex string
OppositeInterfaceId string
Peer router interface ID.
OppositeInterfaceOwnerId string
Account ID of the owner of the peer router interface.
OutputFile string
Role string
Router interface role. Possible values: InitiatingSide and AcceptingSide.
RouterId string
ID of the VRouter located in the local region.
RouterType string
Router type in the local region. Possible values: VRouter and VBR.
Specification string
Router interface specification. Possible values: Small.1, Middle.1, Large.2, ...etc.
Status string
Router interface status. Possible values: Active, Inactive and Idle.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
A list of router interface IDs.
interfaces List<GetRouterInterfacesInterface>
A list of router interfaces. Each element contains the following attributes:
names List<String>
A list of router interface names.
nameRegex String
oppositeInterfaceId String
Peer router interface ID.
oppositeInterfaceOwnerId String
Account ID of the owner of the peer router interface.
outputFile String
role String
Router interface role. Possible values: InitiatingSide and AcceptingSide.
routerId String
ID of the VRouter located in the local region.
routerType String
Router type in the local region. Possible values: VRouter and VBR.
specification String
Router interface specification. Possible values: Small.1, Middle.1, Large.2, ...etc.
status String
Router interface status. Possible values: Active, Inactive and Idle.
id string
The provider-assigned unique ID for this managed resource.
ids string[]
A list of router interface IDs.
interfaces GetRouterInterfacesInterface[]
A list of router interfaces. Each element contains the following attributes:
names string[]
A list of router interface names.
nameRegex string
oppositeInterfaceId string
Peer router interface ID.
oppositeInterfaceOwnerId string
Account ID of the owner of the peer router interface.
outputFile string
role string
Router interface role. Possible values: InitiatingSide and AcceptingSide.
routerId string
ID of the VRouter located in the local region.
routerType string
Router type in the local region. Possible values: VRouter and VBR.
specification string
Router interface specification. Possible values: Small.1, Middle.1, Large.2, ...etc.
status string
Router interface status. Possible values: Active, Inactive and Idle.
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
A list of router interface IDs.
interfaces Sequence[GetRouterInterfacesInterface]
A list of router interfaces. Each element contains the following attributes:
names Sequence[str]
A list of router interface names.
name_regex str
opposite_interface_id str
Peer router interface ID.
opposite_interface_owner_id str
Account ID of the owner of the peer router interface.
output_file str
role str
Router interface role. Possible values: InitiatingSide and AcceptingSide.
router_id str
ID of the VRouter located in the local region.
router_type str
Router type in the local region. Possible values: VRouter and VBR.
specification str
Router interface specification. Possible values: Small.1, Middle.1, Large.2, ...etc.
status str
Router interface status. Possible values: Active, Inactive and Idle.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
A list of router interface IDs.
interfaces List<Property Map>
A list of router interfaces. Each element contains the following attributes:
names List<String>
A list of router interface names.
nameRegex String
oppositeInterfaceId String
Peer router interface ID.
oppositeInterfaceOwnerId String
Account ID of the owner of the peer router interface.
outputFile String
role String
Router interface role. Possible values: InitiatingSide and AcceptingSide.
routerId String
ID of the VRouter located in the local region.
routerType String
Router type in the local region. Possible values: VRouter and VBR.
specification String
Router interface specification. Possible values: Small.1, Middle.1, Large.2, ...etc.
status String
Router interface status. Possible values: Active, Inactive and Idle.

Supporting Types

GetRouterInterfacesInterface

AccessPointId This property is required. string
ID of the access point used by the VBR.
CreationTime This property is required. string
Router interface creation time.
Description This property is required. string
Router interface description.
HealthCheckSourceIp This property is required. string
Source IP address used to perform health check on the physical connection.
HealthCheckTargetIp This property is required. string
Destination IP address used to perform health check on the physical connection.
Id This property is required. string
Router interface ID.
Name This property is required. string
Router interface name.
OppositeInterfaceId This property is required. string
ID of the peer router interface.
OppositeInterfaceOwnerId This property is required. string
Account ID of the owner of the peer router interface.
OppositeRegionId This property is required. string
Peer router region ID.
OppositeRouterId This property is required. string
Peer router ID.
OppositeRouterType This property is required. string
Router type in the peer region. Possible values: VRouter and VBR.
Role This property is required. string
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
RouterId This property is required. string
ID of the VRouter located in the local region.
RouterType This property is required. string
Router type in the local region. Valid values are VRouter and VBR (physical connection).
Specification This property is required. string
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
Status This property is required. string
Expected status. Valid values are Active, Inactive and Idle.
VpcId This property is required. string
ID of the VPC that owns the router in the local region.
AccessPointId This property is required. string
ID of the access point used by the VBR.
CreationTime This property is required. string
Router interface creation time.
Description This property is required. string
Router interface description.
HealthCheckSourceIp This property is required. string
Source IP address used to perform health check on the physical connection.
HealthCheckTargetIp This property is required. string
Destination IP address used to perform health check on the physical connection.
Id This property is required. string
Router interface ID.
Name This property is required. string
Router interface name.
OppositeInterfaceId This property is required. string
ID of the peer router interface.
OppositeInterfaceOwnerId This property is required. string
Account ID of the owner of the peer router interface.
OppositeRegionId This property is required. string
Peer router region ID.
OppositeRouterId This property is required. string
Peer router ID.
OppositeRouterType This property is required. string
Router type in the peer region. Possible values: VRouter and VBR.
Role This property is required. string
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
RouterId This property is required. string
ID of the VRouter located in the local region.
RouterType This property is required. string
Router type in the local region. Valid values are VRouter and VBR (physical connection).
Specification This property is required. string
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
Status This property is required. string
Expected status. Valid values are Active, Inactive and Idle.
VpcId This property is required. string
ID of the VPC that owns the router in the local region.
accessPointId This property is required. String
ID of the access point used by the VBR.
creationTime This property is required. String
Router interface creation time.
description This property is required. String
Router interface description.
healthCheckSourceIp This property is required. String
Source IP address used to perform health check on the physical connection.
healthCheckTargetIp This property is required. String
Destination IP address used to perform health check on the physical connection.
id This property is required. String
Router interface ID.
name This property is required. String
Router interface name.
oppositeInterfaceId This property is required. String
ID of the peer router interface.
oppositeInterfaceOwnerId This property is required. String
Account ID of the owner of the peer router interface.
oppositeRegionId This property is required. String
Peer router region ID.
oppositeRouterId This property is required. String
Peer router ID.
oppositeRouterType This property is required. String
Router type in the peer region. Possible values: VRouter and VBR.
role This property is required. String
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
routerId This property is required. String
ID of the VRouter located in the local region.
routerType This property is required. String
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification This property is required. String
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status This property is required. String
Expected status. Valid values are Active, Inactive and Idle.
vpcId This property is required. String
ID of the VPC that owns the router in the local region.
accessPointId This property is required. string
ID of the access point used by the VBR.
creationTime This property is required. string
Router interface creation time.
description This property is required. string
Router interface description.
healthCheckSourceIp This property is required. string
Source IP address used to perform health check on the physical connection.
healthCheckTargetIp This property is required. string
Destination IP address used to perform health check on the physical connection.
id This property is required. string
Router interface ID.
name This property is required. string
Router interface name.
oppositeInterfaceId This property is required. string
ID of the peer router interface.
oppositeInterfaceOwnerId This property is required. string
Account ID of the owner of the peer router interface.
oppositeRegionId This property is required. string
Peer router region ID.
oppositeRouterId This property is required. string
Peer router ID.
oppositeRouterType This property is required. string
Router type in the peer region. Possible values: VRouter and VBR.
role This property is required. string
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
routerId This property is required. string
ID of the VRouter located in the local region.
routerType This property is required. string
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification This property is required. string
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status This property is required. string
Expected status. Valid values are Active, Inactive and Idle.
vpcId This property is required. string
ID of the VPC that owns the router in the local region.
access_point_id This property is required. str
ID of the access point used by the VBR.
creation_time This property is required. str
Router interface creation time.
description This property is required. str
Router interface description.
health_check_source_ip This property is required. str
Source IP address used to perform health check on the physical connection.
health_check_target_ip This property is required. str
Destination IP address used to perform health check on the physical connection.
id This property is required. str
Router interface ID.
name This property is required. str
Router interface name.
opposite_interface_id This property is required. str
ID of the peer router interface.
opposite_interface_owner_id This property is required. str
Account ID of the owner of the peer router interface.
opposite_region_id This property is required. str
Peer router region ID.
opposite_router_id This property is required. str
Peer router ID.
opposite_router_type This property is required. str
Router type in the peer region. Possible values: VRouter and VBR.
role This property is required. str
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
router_id This property is required. str
ID of the VRouter located in the local region.
router_type This property is required. str
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification This property is required. str
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status This property is required. str
Expected status. Valid values are Active, Inactive and Idle.
vpc_id This property is required. str
ID of the VPC that owns the router in the local region.
accessPointId This property is required. String
ID of the access point used by the VBR.
creationTime This property is required. String
Router interface creation time.
description This property is required. String
Router interface description.
healthCheckSourceIp This property is required. String
Source IP address used to perform health check on the physical connection.
healthCheckTargetIp This property is required. String
Destination IP address used to perform health check on the physical connection.
id This property is required. String
Router interface ID.
name This property is required. String
Router interface name.
oppositeInterfaceId This property is required. String
ID of the peer router interface.
oppositeInterfaceOwnerId This property is required. String
Account ID of the owner of the peer router interface.
oppositeRegionId This property is required. String
Peer router region ID.
oppositeRouterId This property is required. String
Peer router ID.
oppositeRouterType This property is required. String
Router type in the peer region. Possible values: VRouter and VBR.
role This property is required. String
Role of the router interface. Valid values are InitiatingSide (connection initiator) and AcceptingSide (connection receiver). The value of this parameter must be InitiatingSide if the router_type is set to VBR.
routerId This property is required. String
ID of the VRouter located in the local region.
routerType This property is required. String
Router type in the local region. Valid values are VRouter and VBR (physical connection).
specification This property is required. String
Specification of the link, such as Small.1 (10Mb), Middle.1 (100Mb), Large.2 (2Gb), ...etc.
status This property is required. String
Expected status. Valid values are Active, Inactive and Idle.
vpcId This property is required. String
ID of the VPC that owns the router in the local region.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi