Skip to content

Commit 2c1ff37

Browse files
1 parent 4a33323 commit 2c1ff37

File tree

3 files changed

+90
-0
lines changed

3 files changed

+90
-0
lines changed

src/Container/ClusterUpdate.php

+18
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ class ClusterUpdate extends \Google\Collection
5252
public $desiredDefaultEnablePrivateNodes;
5353
protected $desiredDefaultSnatStatusType = DefaultSnatStatus::class;
5454
protected $desiredDefaultSnatStatusDataType = '';
55+
/**
56+
* @var bool
57+
*/
58+
public $desiredDisableL4LbFirewallReconciliation;
5559
protected $desiredDnsConfigType = DNSConfig::class;
5660
protected $desiredDnsConfigDataType = '';
5761
/**
@@ -381,6 +385,20 @@ public function getDesiredDefaultSnatStatus()
381385
{
382386
return $this->desiredDefaultSnatStatus;
383387
}
388+
/**
389+
* @param bool
390+
*/
391+
public function setDesiredDisableL4LbFirewallReconciliation($desiredDisableL4LbFirewallReconciliation)
392+
{
393+
$this->desiredDisableL4LbFirewallReconciliation = $desiredDisableL4LbFirewallReconciliation;
394+
}
395+
/**
396+
* @return bool
397+
*/
398+
public function getDesiredDisableL4LbFirewallReconciliation()
399+
{
400+
return $this->desiredDisableL4LbFirewallReconciliation;
401+
}
384402
/**
385403
* @param DNSConfig
386404
*/

src/Container/NetworkConfig.php

+18
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ class NetworkConfig extends \Google\Model
2929
public $defaultEnablePrivateNodes;
3030
protected $defaultSnatStatusType = DefaultSnatStatus::class;
3131
protected $defaultSnatStatusDataType = '';
32+
/**
33+
* @var bool
34+
*/
35+
public $disableL4LbFirewallReconciliation;
3236
protected $dnsConfigType = DNSConfig::class;
3337
protected $dnsConfigDataType = '';
3438
/**
@@ -116,6 +120,20 @@ public function getDefaultSnatStatus()
116120
{
117121
return $this->defaultSnatStatus;
118122
}
123+
/**
124+
* @param bool
125+
*/
126+
public function setDisableL4LbFirewallReconciliation($disableL4LbFirewallReconciliation)
127+
{
128+
$this->disableL4LbFirewallReconciliation = $disableL4LbFirewallReconciliation;
129+
}
130+
/**
131+
* @return bool
132+
*/
133+
public function getDisableL4LbFirewallReconciliation()
134+
{
135+
return $this->disableL4LbFirewallReconciliation;
136+
}
119137
/**
120138
* @param DNSConfig
121139
*/

src/Container/UpgradeInfoEvent.php

+54
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ class UpgradeInfoEvent extends \Google\Model
3131
* @var string
3232
*/
3333
public $endTime;
34+
/**
35+
* @var string
36+
*/
37+
public $eventType;
38+
/**
39+
* @var string
40+
*/
41+
public $extendedSupportEndTime;
3442
/**
3543
* @var string
3644
*/
@@ -43,6 +51,10 @@ class UpgradeInfoEvent extends \Google\Model
4351
* @var string
4452
*/
4553
public $resourceType;
54+
/**
55+
* @var string
56+
*/
57+
public $standardSupportEndTime;
4658
/**
4759
* @var string
4860
*/
@@ -98,6 +110,34 @@ public function getEndTime()
98110
{
99111
return $this->endTime;
100112
}
113+
/**
114+
* @param string
115+
*/
116+
public function setEventType($eventType)
117+
{
118+
$this->eventType = $eventType;
119+
}
120+
/**
121+
* @return string
122+
*/
123+
public function getEventType()
124+
{
125+
return $this->eventType;
126+
}
127+
/**
128+
* @param string
129+
*/
130+
public function setExtendedSupportEndTime($extendedSupportEndTime)
131+
{
132+
$this->extendedSupportEndTime = $extendedSupportEndTime;
133+
}
134+
/**
135+
* @return string
136+
*/
137+
public function getExtendedSupportEndTime()
138+
{
139+
return $this->extendedSupportEndTime;
140+
}
101141
/**
102142
* @param string
103143
*/
@@ -140,6 +180,20 @@ public function getResourceType()
140180
{
141181
return $this->resourceType;
142182
}
183+
/**
184+
* @param string
185+
*/
186+
public function setStandardSupportEndTime($standardSupportEndTime)
187+
{
188+
$this->standardSupportEndTime = $standardSupportEndTime;
189+
}
190+
/**
191+
* @return string
192+
*/
193+
public function getStandardSupportEndTime()
194+
{
195+
return $this->standardSupportEndTime;
196+
}
143197
/**
144198
* @param string
145199
*/

0 commit comments

Comments
 (0)