Skip to content

Commit

Permalink
Regenerate container client (#6083)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Jan 12, 2025
1 parent 4a33323 commit 2c1ff37
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Container/ClusterUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ class ClusterUpdate extends \Google\Collection
public $desiredDefaultEnablePrivateNodes;
protected $desiredDefaultSnatStatusType = DefaultSnatStatus::class;
protected $desiredDefaultSnatStatusDataType = '';
/**
* @var bool
*/
public $desiredDisableL4LbFirewallReconciliation;
protected $desiredDnsConfigType = DNSConfig::class;
protected $desiredDnsConfigDataType = '';
/**
Expand Down Expand Up @@ -381,6 +385,20 @@ public function getDesiredDefaultSnatStatus()
{
return $this->desiredDefaultSnatStatus;
}
/**
* @param bool
*/
public function setDesiredDisableL4LbFirewallReconciliation($desiredDisableL4LbFirewallReconciliation)
{
$this->desiredDisableL4LbFirewallReconciliation = $desiredDisableL4LbFirewallReconciliation;
}
/**
* @return bool
*/
public function getDesiredDisableL4LbFirewallReconciliation()
{
return $this->desiredDisableL4LbFirewallReconciliation;
}
/**
* @param DNSConfig
*/
Expand Down
18 changes: 18 additions & 0 deletions src/Container/NetworkConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ class NetworkConfig extends \Google\Model
public $defaultEnablePrivateNodes;
protected $defaultSnatStatusType = DefaultSnatStatus::class;
protected $defaultSnatStatusDataType = '';
/**
* @var bool
*/
public $disableL4LbFirewallReconciliation;
protected $dnsConfigType = DNSConfig::class;
protected $dnsConfigDataType = '';
/**
Expand Down Expand Up @@ -116,6 +120,20 @@ public function getDefaultSnatStatus()
{
return $this->defaultSnatStatus;
}
/**
* @param bool
*/
public function setDisableL4LbFirewallReconciliation($disableL4LbFirewallReconciliation)
{
$this->disableL4LbFirewallReconciliation = $disableL4LbFirewallReconciliation;
}
/**
* @return bool
*/
public function getDisableL4LbFirewallReconciliation()
{
return $this->disableL4LbFirewallReconciliation;
}
/**
* @param DNSConfig
*/
Expand Down
54 changes: 54 additions & 0 deletions src/Container/UpgradeInfoEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ class UpgradeInfoEvent extends \Google\Model
* @var string
*/
public $endTime;
/**
* @var string
*/
public $eventType;
/**
* @var string
*/
public $extendedSupportEndTime;
/**
* @var string
*/
Expand All @@ -43,6 +51,10 @@ class UpgradeInfoEvent extends \Google\Model
* @var string
*/
public $resourceType;
/**
* @var string
*/
public $standardSupportEndTime;
/**
* @var string
*/
Expand Down Expand Up @@ -98,6 +110,34 @@ public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setEventType($eventType)
{
$this->eventType = $eventType;
}
/**
* @return string
*/
public function getEventType()
{
return $this->eventType;
}
/**
* @param string
*/
public function setExtendedSupportEndTime($extendedSupportEndTime)
{
$this->extendedSupportEndTime = $extendedSupportEndTime;
}
/**
* @return string
*/
public function getExtendedSupportEndTime()
{
return $this->extendedSupportEndTime;
}
/**
* @param string
*/
Expand Down Expand Up @@ -140,6 +180,20 @@ public function getResourceType()
{
return $this->resourceType;
}
/**
* @param string
*/
public function setStandardSupportEndTime($standardSupportEndTime)
{
$this->standardSupportEndTime = $standardSupportEndTime;
}
/**
* @return string
*/
public function getStandardSupportEndTime()
{
return $this->standardSupportEndTime;
}
/**
* @param string
*/
Expand Down

0 comments on commit 2c1ff37

Please sign in to comment.