Skip to content

Commit

Permalink
Regenerate compute client (#5809)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Nov 3, 2024
1 parent 1866bae commit 133d3b0
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 1 deletion.
54 changes: 54 additions & 0 deletions src/Compute/NetworkRoutingConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Compute/Resource/Instances.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
54 changes: 54 additions & 0 deletions src/Compute/Route.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand All @@ -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
*/
Expand Down

0 comments on commit 133d3b0

Please sign in to comment.