bgp = $bgp; } /** * @return RouterBgp */ public function getBgp() { return $this->bgp; } /** * @param RouterBgpPeer[] */ public function setBgpPeers($bgpPeers) { $this->bgpPeers = $bgpPeers; } /** * @return RouterBgpPeer[] */ public function getBgpPeers() { return $this->bgpPeers; } /** * @param string */ public function setCreationTimestamp($creationTimestamp) { $this->creationTimestamp = $creationTimestamp; } /** * @return string */ public function getCreationTimestamp() { return $this->creationTimestamp; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param bool */ public function setEncryptedInterconnectRouter($encryptedInterconnectRouter) { $this->encryptedInterconnectRouter = $encryptedInterconnectRouter; } /** * @return bool */ public function getEncryptedInterconnectRouter() { return $this->encryptedInterconnectRouter; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param RouterInterface[] */ public function setInterfaces($interfaces) { $this->interfaces = $interfaces; } /** * @return RouterInterface[] */ public function getInterfaces() { return $this->interfaces; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param RouterNat[] */ public function setNats($nats) { $this->nats = $nats; } /** * @return RouterNat[] */ public function getNats() { return $this->nats; } /** * @param string */ public function setNetwork($network) { $this->network = $network; } /** * @return string */ public function getNetwork() { return $this->network; } /** * @param string */ public function setRegion($region) { $this->region = $region; } /** * @return string */ public function getRegion() { return $this->region; } /** * @param string */ public function setSelfLink($selfLink) { $this->selfLink = $selfLink; } /** * @return string */ public function getSelfLink() { return $this->selfLink; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Router::class, 'Google_Service_Compute_Router');