diff --git a/src/Container/ClusterUpdate.php b/src/Container/ClusterUpdate.php index cc3551aab0..d646f9cae3 100644 --- a/src/Container/ClusterUpdate.php +++ b/src/Container/ClusterUpdate.php @@ -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 = ''; /** @@ -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 */ diff --git a/src/Container/NetworkConfig.php b/src/Container/NetworkConfig.php index fb7a69f82e..82f7097dce 100644 --- a/src/Container/NetworkConfig.php +++ b/src/Container/NetworkConfig.php @@ -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 = ''; /** @@ -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 */ diff --git a/src/Container/UpgradeInfoEvent.php b/src/Container/UpgradeInfoEvent.php index b646b399d2..9b48865238 100644 --- a/src/Container/UpgradeInfoEvent.php +++ b/src/Container/UpgradeInfoEvent.php @@ -31,6 +31,14 @@ class UpgradeInfoEvent extends \Google\Model * @var string */ public $endTime; + /** + * @var string + */ + public $eventType; + /** + * @var string + */ + public $extendedSupportEndTime; /** * @var string */ @@ -43,6 +51,10 @@ class UpgradeInfoEvent extends \Google\Model * @var string */ public $resourceType; + /** + * @var string + */ + public $standardSupportEndTime; /** * @var string */ @@ -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 */ @@ -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 */