ConnectionBgpConfigArgs

data class ConnectionBgpConfigArgs(val enable: Output<Boolean>? = null, val localAsn: Output<String>? = null, val localBgpIp: Output<String>? = null, val status: Output<String>? = null, val tunnelCidr: Output<String>? = null) : ConvertibleToJava<ConnectionBgpConfigArgs>

Constructors

Link copied to clipboard
constructor(enable: Output<Boolean>? = null, localAsn: Output<String>? = null, localBgpIp: Output<String>? = null, status: Output<String>? = null, tunnelCidr: Output<String>? = null)

Properties

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

specifies whether to enable BGP. Valid values: true and false (default).

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

the autonomous system number (ASN) on the Alibaba Cloud side. Valid values: 1 to 4294967295. Default value: 45104. You can enter a value in two segments separated by a period (.). Each segment is 16 bits in length. Enter the number in each segment in decimal format. For example, if you enter 123.456, the ASN is 8061384. The ASN is calculated by using the following formula: 123 × 65536 + 456 = 8061384.

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

the BGP address on the Alibaba Cloud side. It must be an IP address that falls within the CIDR block of the IPsec tunnel.

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

The negotiation status of Tunnel.

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

The CIDR block of the IPsec tunnel. The CIDR block must belong to 169.254.0.0/16 and the subnet mask is 30 bits in length.

Functions

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