File tree 3 files changed +90
-0
lines changed
3 files changed +90
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ class ClusterUpdate extends \Google\Collection
52
52
public $ desiredDefaultEnablePrivateNodes ;
53
53
protected $ desiredDefaultSnatStatusType = DefaultSnatStatus::class;
54
54
protected $ desiredDefaultSnatStatusDataType = '' ;
55
+ /**
56
+ * @var bool
57
+ */
58
+ public $ desiredDisableL4LbFirewallReconciliation ;
55
59
protected $ desiredDnsConfigType = DNSConfig::class;
56
60
protected $ desiredDnsConfigDataType = '' ;
57
61
/**
@@ -381,6 +385,20 @@ public function getDesiredDefaultSnatStatus()
381
385
{
382
386
return $ this ->desiredDefaultSnatStatus ;
383
387
}
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
+ }
384
402
/**
385
403
* @param DNSConfig
386
404
*/
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ class NetworkConfig extends \Google\Model
29
29
public $ defaultEnablePrivateNodes ;
30
30
protected $ defaultSnatStatusType = DefaultSnatStatus::class;
31
31
protected $ defaultSnatStatusDataType = '' ;
32
+ /**
33
+ * @var bool
34
+ */
35
+ public $ disableL4LbFirewallReconciliation ;
32
36
protected $ dnsConfigType = DNSConfig::class;
33
37
protected $ dnsConfigDataType = '' ;
34
38
/**
@@ -116,6 +120,20 @@ public function getDefaultSnatStatus()
116
120
{
117
121
return $ this ->defaultSnatStatus ;
118
122
}
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
+ }
119
137
/**
120
138
* @param DNSConfig
121
139
*/
Original file line number Diff line number Diff line change @@ -31,6 +31,14 @@ class UpgradeInfoEvent extends \Google\Model
31
31
* @var string
32
32
*/
33
33
public $ endTime ;
34
+ /**
35
+ * @var string
36
+ */
37
+ public $ eventType ;
38
+ /**
39
+ * @var string
40
+ */
41
+ public $ extendedSupportEndTime ;
34
42
/**
35
43
* @var string
36
44
*/
@@ -43,6 +51,10 @@ class UpgradeInfoEvent extends \Google\Model
43
51
* @var string
44
52
*/
45
53
public $ resourceType ;
54
+ /**
55
+ * @var string
56
+ */
57
+ public $ standardSupportEndTime ;
46
58
/**
47
59
* @var string
48
60
*/
@@ -98,6 +110,34 @@ public function getEndTime()
98
110
{
99
111
return $ this ->endTime ;
100
112
}
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
+ }
101
141
/**
102
142
* @param string
103
143
*/
@@ -140,6 +180,20 @@ public function getResourceType()
140
180
{
141
181
return $ this ->resourceType ;
142
182
}
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
+ }
143
197
/**
144
198
* @param string
145
199
*/
You can’t perform that action at this time.
0 commit comments