asn = $asn; } /** * @return string */ public function getAsn() { return $this->asn; } /** * The IP address of the control plane node that connects to the external * peer. If you don't specify any control plane nodes, all control plane nodes * can connect to the external peer. If you specify one or more IP addresses, * only the nodes specified participate in peering sessions. * * @param string[] $controlPlaneNodes */ public function setControlPlaneNodes($controlPlaneNodes) { $this->controlPlaneNodes = $controlPlaneNodes; } /** * @return string[] */ public function getControlPlaneNodes() { return $this->controlPlaneNodes; } /** * Required. The IP address of the external peer device. * * @param string $ipAddress */ public function setIpAddress($ipAddress) { $this->ipAddress = $ipAddress; } /** * @return string */ public function getIpAddress() { return $this->ipAddress; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BareMetalBgpPeerConfig::class, 'Google_Service_GKEOnPrem_BareMetalBgpPeerConfig');