Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate container client #6083

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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