BgpPeerArgs

data class BgpPeerArgs(val asNumber: Output<Double>, val password: Output<String>? = null, val peerIp: Output<String>) : ConvertibleToJava<BgpPeerArgs>

Constructors

Link copied to clipboard
constructor(asNumber: Output<Double>, password: Output<String>? = null, peerIp: Output<String>)

Properties

Link copied to clipboard
val asNumber: Output<Double>

The ASN (Autonomous System Number) of the BGP peer.

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

The password for this peering neighbor. It defaults to no password if not specified.

Link copied to clipboard
val peerIp: Output<String>

The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.

Functions

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