From 133d3b07220df811ea8d99c9ece1184272792ca7 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Sat, 2 Nov 2024 18:02:18 -0700 Subject: [PATCH] Regenerate compute client (#5809) Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml --- src/Compute/NetworkRoutingConfig.php | 54 ++++++++++++++++++++++++++++ src/Compute/Resource/Instances.php | 4 ++- src/Compute/Route.php | 54 ++++++++++++++++++++++++++++ 3 files changed, 111 insertions(+), 1 deletion(-) diff --git a/src/Compute/NetworkRoutingConfig.php b/src/Compute/NetworkRoutingConfig.php index 290fe60183..8038e4ad92 100644 --- a/src/Compute/NetworkRoutingConfig.php +++ b/src/Compute/NetworkRoutingConfig.php @@ -19,11 +19,65 @@ class NetworkRoutingConfig extends \Google\Model { + /** + * @var bool + */ + public $bgpAlwaysCompareMed; + /** + * @var string + */ + public $bgpBestPathSelectionMode; + /** + * @var string + */ + public $bgpInterRegionCost; /** * @var string */ public $routingMode; + /** + * @param bool + */ + public function setBgpAlwaysCompareMed($bgpAlwaysCompareMed) + { + $this->bgpAlwaysCompareMed = $bgpAlwaysCompareMed; + } + /** + * @return bool + */ + public function getBgpAlwaysCompareMed() + { + return $this->bgpAlwaysCompareMed; + } + /** + * @param string + */ + public function setBgpBestPathSelectionMode($bgpBestPathSelectionMode) + { + $this->bgpBestPathSelectionMode = $bgpBestPathSelectionMode; + } + /** + * @return string + */ + public function getBgpBestPathSelectionMode() + { + return $this->bgpBestPathSelectionMode; + } + /** + * @param string + */ + public function setBgpInterRegionCost($bgpInterRegionCost) + { + $this->bgpInterRegionCost = $bgpInterRegionCost; + } + /** + * @return string + */ + public function getBgpInterRegionCost() + { + return $this->bgpInterRegionCost; + } /** * @param string */ diff --git a/src/Compute/Resource/Instances.php b/src/Compute/Resource/Instances.php index c8b36eca78..4bcedc6dcb 100644 --- a/src/Compute/Resource/Instances.php +++ b/src/Compute/Resource/Instances.php @@ -467,7 +467,9 @@ public function getScreenshot($project, $zone, $instance, $optParams = []) * returned as the `start` property value. You can also provide a negative start * position, which translates to the most recent number of bytes written to the * serial port. For example, -3 is interpreted as the most recent 3 bytes - * written to the serial console. + * written to the serial console. Note that the negative start is bounded by the + * retained buffer size, and the returned serial console output will not exceed + * the max buffer size. * @return SerialPortOutput * @throws \Google\Service\Exception */ diff --git a/src/Compute/Route.php b/src/Compute/Route.php index e9f10117ba..d869e82e07 100644 --- a/src/Compute/Route.php +++ b/src/Compute/Route.php @@ -66,14 +66,26 @@ class Route extends \Google\Collection * @var string */ public $nextHopInstance; + /** + * @var string + */ + public $nextHopInterRegionCost; /** * @var string */ public $nextHopIp; + /** + * @var string + */ + public $nextHopMed; /** * @var string */ public $nextHopNetwork; + /** + * @var string + */ + public $nextHopOrigin; /** * @var string */ @@ -273,6 +285,20 @@ public function getNextHopInstance() { return $this->nextHopInstance; } + /** + * @param string + */ + public function setNextHopInterRegionCost($nextHopInterRegionCost) + { + $this->nextHopInterRegionCost = $nextHopInterRegionCost; + } + /** + * @return string + */ + public function getNextHopInterRegionCost() + { + return $this->nextHopInterRegionCost; + } /** * @param string */ @@ -287,6 +313,20 @@ public function getNextHopIp() { return $this->nextHopIp; } + /** + * @param string + */ + public function setNextHopMed($nextHopMed) + { + $this->nextHopMed = $nextHopMed; + } + /** + * @return string + */ + public function getNextHopMed() + { + return $this->nextHopMed; + } /** * @param string */ @@ -301,6 +341,20 @@ public function getNextHopNetwork() { return $this->nextHopNetwork; } + /** + * @param string + */ + public function setNextHopOrigin($nextHopOrigin) + { + $this->nextHopOrigin = $nextHopOrigin; + } + /** + * @return string + */ + public function getNextHopOrigin() + { + return $this->nextHopOrigin; + } /** * @param string */