@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20230518 → 0.0.20230609
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +177 -10
- package/package.json +1 -1
- package/tests.ts +193 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://gkehub.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230609
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -146,6 +146,130 @@ declare namespace gapi.client {
|
|
|
146
146
|
version?:
|
|
147
147
|
string;
|
|
148
148
|
}
|
|
149
|
+
interface ClusterUpgradeGKEUpgrade {
|
|
150
|
+
/** Name of the upgrade, e.g., "k8s_control_plane". It should be a valid upgrade name. It must not exceet 99 characters. */
|
|
151
|
+
name?:
|
|
152
|
+
string;
|
|
153
|
+
/** Version of the upgrade, e.g., "1.22.1-gke.100". It should be a valid version. It must not exceet 99 characters. */
|
|
154
|
+
version?:
|
|
155
|
+
string;
|
|
156
|
+
}
|
|
157
|
+
interface ClusterUpgradeGKEUpgradeFeatureCondition {
|
|
158
|
+
/** Reason why the feature is in this status. */
|
|
159
|
+
reason?:
|
|
160
|
+
string;
|
|
161
|
+
/** Status of the condition, one of True, False, Unknown. */
|
|
162
|
+
status?:
|
|
163
|
+
string;
|
|
164
|
+
/** Type of the condition, for example, "ready". */
|
|
165
|
+
type?:
|
|
166
|
+
string;
|
|
167
|
+
/** Last timestamp the condition was updated. */
|
|
168
|
+
updateTime?:
|
|
169
|
+
string;
|
|
170
|
+
}
|
|
171
|
+
interface ClusterUpgradeGKEUpgradeFeatureState {
|
|
172
|
+
/** Current conditions of the feature. */
|
|
173
|
+
conditions?:
|
|
174
|
+
ClusterUpgradeGKEUpgradeFeatureCondition[];
|
|
175
|
+
/** Scope-level upgrade state. */
|
|
176
|
+
state?:
|
|
177
|
+
ClusterUpgradeScopeGKEUpgradeState[];
|
|
178
|
+
}
|
|
179
|
+
interface ClusterUpgradeGKEUpgradeOverride {
|
|
180
|
+
/** Required. Post conditions to override for the specified upgrade (name + version). Required. */
|
|
181
|
+
postConditions?:
|
|
182
|
+
ClusterUpgradePostConditions;
|
|
183
|
+
/** Required. Which upgrade to override. Required. */
|
|
184
|
+
upgrade?:
|
|
185
|
+
ClusterUpgradeGKEUpgrade;
|
|
186
|
+
}
|
|
187
|
+
interface ClusterUpgradeIgnoredMembership {
|
|
188
|
+
/** Time when the membership was first set to ignored. */
|
|
189
|
+
ignoredTime?:
|
|
190
|
+
string;
|
|
191
|
+
/** Reason why the membership is ignored. */
|
|
192
|
+
reason?:
|
|
193
|
+
string;
|
|
194
|
+
}
|
|
195
|
+
interface ClusterUpgradeMembershipGKEUpgradeState {
|
|
196
|
+
/** Status of the upgrade. */
|
|
197
|
+
status?:
|
|
198
|
+
ClusterUpgradeUpgradeStatus;
|
|
199
|
+
/** Which upgrade to track the state. */
|
|
200
|
+
upgrade?:
|
|
201
|
+
ClusterUpgradeGKEUpgrade;
|
|
202
|
+
}
|
|
203
|
+
interface ClusterUpgradeMembershipState {
|
|
204
|
+
/** Whether this membership is ignored by the feature. For example, manually upgraded clusters can be ignored if they are newer than the default versions of its release channel. */
|
|
205
|
+
ignored?:
|
|
206
|
+
ClusterUpgradeIgnoredMembership;
|
|
207
|
+
/** Fully qualified scope names that this clusters is bound to which also have rollout sequencing enabled. */
|
|
208
|
+
scopes?:
|
|
209
|
+
string[];
|
|
210
|
+
/** Actual upgrade state against desired. */
|
|
211
|
+
upgrades?:
|
|
212
|
+
ClusterUpgradeMembershipGKEUpgradeState[];
|
|
213
|
+
}
|
|
214
|
+
interface ClusterUpgradePostConditions {
|
|
215
|
+
/** Required. Amount of time to "soak" after a rollout has been finished before marking it COMPLETE. Cannot exceed 30 days. Required. */
|
|
216
|
+
soaking?:
|
|
217
|
+
string;
|
|
218
|
+
}
|
|
219
|
+
interface ClusterUpgradeScopeGKEUpgradeState {
|
|
220
|
+
/** Number of GKE clusters in each status code. */
|
|
221
|
+
stats?:
|
|
222
|
+
{ [P in string]: string };
|
|
223
|
+
/** Status of the upgrade. */
|
|
224
|
+
status?:
|
|
225
|
+
ClusterUpgradeUpgradeStatus;
|
|
226
|
+
/** Which upgrade to track the state. */
|
|
227
|
+
upgrade?:
|
|
228
|
+
ClusterUpgradeGKEUpgrade;
|
|
229
|
+
}
|
|
230
|
+
interface ClusterUpgradeScopeSpec {
|
|
231
|
+
/** Allow users to override some properties of each GKE upgrade. */
|
|
232
|
+
gkeUpgradeOverrides?:
|
|
233
|
+
ClusterUpgradeGKEUpgradeOverride[];
|
|
234
|
+
/** Required. Post conditions to evaluate to mark an upgrade COMPLETE. Required. */
|
|
235
|
+
postConditions?:
|
|
236
|
+
ClusterUpgradePostConditions;
|
|
237
|
+
/**
|
|
238
|
+
* This scope consumes upgrades that have COMPLETE status code in the upstream scopes. See UpgradeStatus.Code for code definitions. The scope name should be in the form:
|
|
239
|
+
* `projects/{p}/locations/global/scopes/{s}` Where {p} is the project, {s} is a valid Scope in this project. {p} WILL match the Feature's project. This is defined as repeated for
|
|
240
|
+
* future proof reasons. Initial implementation will enforce at most one upstream scope.
|
|
241
|
+
*/
|
|
242
|
+
upstreamScopes?:
|
|
243
|
+
string[];
|
|
244
|
+
}
|
|
245
|
+
interface ClusterUpgradeScopeState {
|
|
246
|
+
/**
|
|
247
|
+
* This scopes whose upstream_scopes contain the current scope. The scope name should be in the form: `projects/{p}/locations/gloobal/scopes/{s}` Where {p} is the project, {s} is a
|
|
248
|
+
* valid Scope in this project. {p} WILL match the Feature's project.
|
|
249
|
+
*/
|
|
250
|
+
downstreamScopes?:
|
|
251
|
+
string[];
|
|
252
|
+
/** Feature state for GKE clusters. */
|
|
253
|
+
gkeState?:
|
|
254
|
+
ClusterUpgradeGKEUpgradeFeatureState;
|
|
255
|
+
/**
|
|
256
|
+
* A list of memberships ignored by the feature. For example, manually upgraded clusters can be ignored if they are newer than the default versions of its release channel. The
|
|
257
|
+
* membership resource is in the format: `projects/{p}/locations/{l}/membership/{m}`.
|
|
258
|
+
*/
|
|
259
|
+
ignored?:
|
|
260
|
+
{ [P in string]: ClusterUpgradeIgnoredMembership };
|
|
261
|
+
}
|
|
262
|
+
interface ClusterUpgradeUpgradeStatus {
|
|
263
|
+
/** Status code of the upgrade. */
|
|
264
|
+
code?:
|
|
265
|
+
string;
|
|
266
|
+
/** Reason for this status. */
|
|
267
|
+
reason?:
|
|
268
|
+
string;
|
|
269
|
+
/** Last timestamp the status was updated. */
|
|
270
|
+
updateTime?:
|
|
271
|
+
string;
|
|
272
|
+
}
|
|
149
273
|
interface CommonFeatureSpec {
|
|
150
274
|
/** Anthos Observability spec */
|
|
151
275
|
anthosobservability?:
|
|
@@ -208,8 +332,9 @@ declare namespace gapi.client {
|
|
|
208
332
|
allowVerticalScale?:
|
|
209
333
|
boolean;
|
|
210
334
|
/**
|
|
211
|
-
* Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false
|
|
212
|
-
* ConfigSync fields will be ignored, ConfigSync resources will be deleted.
|
|
335
|
+
* Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false and Managed
|
|
336
|
+
* Config Sync is disabled, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. Setting this field to false while enabling Managed Config Sync is
|
|
337
|
+
* invalid. If omitted, ConfigSync resources will be managed if: * the git or oci field is present; or * Managed Config Sync is enabled (i.e., managed.enabled is true).
|
|
213
338
|
*/
|
|
214
339
|
enabled?:
|
|
215
340
|
boolean;
|
|
@@ -219,6 +344,13 @@ declare namespace gapi.client {
|
|
|
219
344
|
/** Configuration for Managed Config Sync. */
|
|
220
345
|
managed?:
|
|
221
346
|
ConfigManagementManaged;
|
|
347
|
+
/**
|
|
348
|
+
* The Email of the GCP Service Account (GSA) used for exporting Config Sync metrics to Cloud Monitoring and Cloud Monarch when Workload Identity is enabled. The GSA should have the
|
|
349
|
+
* Monitoring Metric Writer (roles/monitoring.metricWriter) IAM role. The Kubernetes ServiceAccount `default` in the namespace `config-management-monitoring` should be binded to the
|
|
350
|
+
* GSA. This field is required when Managed Config Sync is enabled.
|
|
351
|
+
*/
|
|
352
|
+
metricsGcpServiceAccountEmail?:
|
|
353
|
+
string;
|
|
222
354
|
/** OCI repo configuration for the cluster */
|
|
223
355
|
oci?:
|
|
224
356
|
ConfigManagementOciConfig;
|
|
@@ -252,10 +384,18 @@ declare namespace gapi.client {
|
|
|
252
384
|
syncer?:
|
|
253
385
|
string;
|
|
254
386
|
}
|
|
387
|
+
interface ConfigManagementConfigSyncError {
|
|
388
|
+
/** A string representing the user facing error message */
|
|
389
|
+
errorMessage?:
|
|
390
|
+
string;
|
|
391
|
+
}
|
|
255
392
|
interface ConfigManagementConfigSyncState {
|
|
256
393
|
/** Information about the deployment of ConfigSync, including the version of the various Pods deployed */
|
|
257
394
|
deploymentState?:
|
|
258
395
|
ConfigManagementConfigSyncDeploymentState;
|
|
396
|
+
/** Errors pertaining to the installation of Config Sync. */
|
|
397
|
+
errors?:
|
|
398
|
+
ConfigManagementConfigSyncError[];
|
|
259
399
|
/** The state of ConfigSync's process to sync configs to a cluster */
|
|
260
400
|
syncState?:
|
|
261
401
|
ConfigManagementSyncState;
|
|
@@ -389,14 +529,24 @@ declare namespace gapi.client {
|
|
|
389
529
|
string;
|
|
390
530
|
}
|
|
391
531
|
interface ConfigManagementManaged {
|
|
392
|
-
/** Set to true to enable Managed Config Sync. Defaults to false which disables Managed Config Sync. */
|
|
532
|
+
/** Set to true to enable Managed Config Sync. Defaults to false which disables Managed Config Sync. Setting this field to true when configSync.enabled is false is invalid. */
|
|
393
533
|
enabled?:
|
|
394
534
|
boolean;
|
|
535
|
+
/** Set to true to stop syncing configs for a single cluster. Default to false. If set to true, Managed Config Sync will not upgrade Config Sync. */
|
|
536
|
+
stopSyncing?:
|
|
537
|
+
boolean;
|
|
395
538
|
}
|
|
396
539
|
interface ConfigManagementMembershipSpec {
|
|
397
540
|
/** Binauthz conifguration for the cluster. */
|
|
398
541
|
binauthz?:
|
|
399
542
|
ConfigManagementBinauthzConfig;
|
|
543
|
+
/**
|
|
544
|
+
* The user-specified cluster name used by Config Sync cluster-name-selector annotation or ClusterSelector, for applying configs to only a subset of clusters. Omit this field if the
|
|
545
|
+
* cluster's fleet membership name is used by Config Sync cluster-name-selector annotation or ClusterSelector. Set this field if a name different from the cluster's fleet membership
|
|
546
|
+
* name is used by Config Sync cluster-name-selector annotation or ClusterSelector.
|
|
547
|
+
*/
|
|
548
|
+
cluster?:
|
|
549
|
+
string;
|
|
400
550
|
/** Config Sync configuration for the cluster. */
|
|
401
551
|
configSync?:
|
|
402
552
|
ConfigManagementConfigSync;
|
|
@@ -414,10 +564,7 @@ declare namespace gapi.client {
|
|
|
414
564
|
/** Binauthz status */
|
|
415
565
|
binauthzState?:
|
|
416
566
|
ConfigManagementBinauthzState;
|
|
417
|
-
/**
|
|
418
|
-
* The user-defined name for the cluster used by ClusterSelectors to group clusters together. This should match Membership's membership_name, unless the user installed ACM on the
|
|
419
|
-
* cluster manually prior to enabling the ACM hub feature. Unique within a Anthos Config Management installation.
|
|
420
|
-
*/
|
|
567
|
+
/** This field is set to the `cluster_name` field of the Membership Spec if it is not empty. Otherwise, it is set to the cluster's fleet membership name. */
|
|
421
568
|
clusterName?:
|
|
422
569
|
string;
|
|
423
570
|
/** Current sync status */
|
|
@@ -489,8 +636,14 @@ declare namespace gapi.client {
|
|
|
489
636
|
/** Installs the default template library along with Policy Controller. */
|
|
490
637
|
templateLibraryInstalled?:
|
|
491
638
|
boolean;
|
|
639
|
+
/** Output only. Last time this membership spec was updated. */
|
|
640
|
+
updateTime?:
|
|
641
|
+
string;
|
|
492
642
|
}
|
|
493
643
|
interface ConfigManagementPolicyControllerMigration {
|
|
644
|
+
/** Last time this membership spec was copied to PoCo feature. */
|
|
645
|
+
copyTime?:
|
|
646
|
+
string;
|
|
494
647
|
/** Stage of the migration. */
|
|
495
648
|
stage?:
|
|
496
649
|
string;
|
|
@@ -623,7 +776,7 @@ declare namespace gapi.client {
|
|
|
623
776
|
* mutating a Feature.
|
|
624
777
|
*/
|
|
625
778
|
scopeSpecs?:
|
|
626
|
-
{ [P in string]:
|
|
779
|
+
{ [P in string]: ScopeFeatureSpec };
|
|
627
780
|
/**
|
|
628
781
|
* Output only. Scope-specific Feature status. If this Feature does report any per-Scope status, this field may be unused. The keys indicate which Scope the state is for, in the form:
|
|
629
782
|
* `projects/{p}/locations/global/scopes/{s}` Where {p} is the project, {s} is a valid Scope in this project. {p} WILL match the Feature's project.
|
|
@@ -1169,6 +1322,9 @@ declare namespace gapi.client {
|
|
|
1169
1322
|
/** Appdevexperience specific state. */
|
|
1170
1323
|
appdevexperience?:
|
|
1171
1324
|
AppDevExperienceFeatureState;
|
|
1325
|
+
/** ClusterUpgrade state. */
|
|
1326
|
+
clusterupgrade?:
|
|
1327
|
+
ClusterUpgradeMembershipState;
|
|
1172
1328
|
/** Config Management-specific state. */
|
|
1173
1329
|
configmanagement?:
|
|
1174
1330
|
ConfigManagementMembershipState;
|
|
@@ -1483,6 +1639,12 @@ declare namespace gapi.client {
|
|
|
1483
1639
|
/** The state of the any bundles included in the chosen version of the manifest */
|
|
1484
1640
|
bundleStates?:
|
|
1485
1641
|
{ [P in string]: PolicyControllerOnClusterState };
|
|
1642
|
+
/**
|
|
1643
|
+
* The state of the referential data sync configuration. This could represent the state of either the syncSet object(s) or the config object, depending on the version of PoCo
|
|
1644
|
+
* configured by the user.
|
|
1645
|
+
*/
|
|
1646
|
+
referentialSyncConfigState?:
|
|
1647
|
+
PolicyControllerOnClusterState;
|
|
1486
1648
|
/** The state of the template library */
|
|
1487
1649
|
templateLibraryState?:
|
|
1488
1650
|
PolicyControllerOnClusterState;
|
|
@@ -1641,10 +1803,15 @@ declare namespace gapi.client {
|
|
|
1641
1803
|
updateTime?:
|
|
1642
1804
|
string;
|
|
1643
1805
|
}
|
|
1644
|
-
// tslint:disable-next-line:no-empty-interface
|
|
1645
1806
|
interface ScopeFeatureSpec {
|
|
1807
|
+
/** Spec for the ClusterUpgrade feature at the scope level */
|
|
1808
|
+
clusterupgrade?:
|
|
1809
|
+
ClusterUpgradeScopeSpec;
|
|
1646
1810
|
}
|
|
1647
1811
|
interface ScopeFeatureState {
|
|
1812
|
+
/** State for the ClusterUpgrade feature at the scope level */
|
|
1813
|
+
clusterupgrade?:
|
|
1814
|
+
ClusterUpgradeScopeState;
|
|
1648
1815
|
/** Output only. The "running state" of the Feature in this Scope. */
|
|
1649
1816
|
state?:
|
|
1650
1817
|
FeatureState;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230609
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -108,6 +108,7 @@ gapi.load('client', async () => {
|
|
|
108
108
|
binauthz: {
|
|
109
109
|
enabled: true,
|
|
110
110
|
},
|
|
111
|
+
cluster: "Test string",
|
|
111
112
|
configSync: {
|
|
112
113
|
allowVerticalScale: true,
|
|
113
114
|
enabled: true,
|
|
@@ -123,7 +124,9 @@ gapi.load('client', async () => {
|
|
|
123
124
|
},
|
|
124
125
|
managed: {
|
|
125
126
|
enabled: true,
|
|
127
|
+
stopSyncing: true,
|
|
126
128
|
},
|
|
129
|
+
metricsGcpServiceAccountEmail: "Test string",
|
|
127
130
|
oci: {
|
|
128
131
|
gcpServiceAccountEmail: "Test string",
|
|
129
132
|
policyDir: "Test string",
|
|
@@ -154,6 +157,7 @@ gapi.load('client', async () => {
|
|
|
154
157
|
mutationEnabled: true,
|
|
155
158
|
referentialRulesEnabled: true,
|
|
156
159
|
templateLibraryInstalled: true,
|
|
160
|
+
updateTime: "Test string",
|
|
157
161
|
},
|
|
158
162
|
version: "Test string",
|
|
159
163
|
},
|
|
@@ -273,6 +277,28 @@ gapi.load('client', async () => {
|
|
|
273
277
|
description: "Test string",
|
|
274
278
|
},
|
|
275
279
|
},
|
|
280
|
+
clusterupgrade: {
|
|
281
|
+
ignored: {
|
|
282
|
+
ignoredTime: "Test string",
|
|
283
|
+
reason: "Test string",
|
|
284
|
+
},
|
|
285
|
+
scopes: [
|
|
286
|
+
"Test string"
|
|
287
|
+
],
|
|
288
|
+
upgrades: [
|
|
289
|
+
{
|
|
290
|
+
status: {
|
|
291
|
+
code: "Test string",
|
|
292
|
+
reason: "Test string",
|
|
293
|
+
updateTime: "Test string",
|
|
294
|
+
},
|
|
295
|
+
upgrade: {
|
|
296
|
+
name: "Test string",
|
|
297
|
+
version: "Test string",
|
|
298
|
+
},
|
|
299
|
+
}
|
|
300
|
+
],
|
|
301
|
+
},
|
|
276
302
|
configmanagement: {
|
|
277
303
|
binauthzState: {
|
|
278
304
|
version: {
|
|
@@ -291,6 +317,11 @@ gapi.load('client', async () => {
|
|
|
291
317
|
rootReconciler: "Test string",
|
|
292
318
|
syncer: "Test string",
|
|
293
319
|
},
|
|
320
|
+
errors: [
|
|
321
|
+
{
|
|
322
|
+
errorMessage: "Test string",
|
|
323
|
+
}
|
|
324
|
+
],
|
|
294
325
|
syncState: {
|
|
295
326
|
code: "Test string",
|
|
296
327
|
errors: [
|
|
@@ -341,6 +372,7 @@ gapi.load('client', async () => {
|
|
|
341
372
|
binauthz: {
|
|
342
373
|
enabled: true,
|
|
343
374
|
},
|
|
375
|
+
cluster: "Test string",
|
|
344
376
|
configSync: {
|
|
345
377
|
allowVerticalScale: true,
|
|
346
378
|
enabled: true,
|
|
@@ -356,7 +388,9 @@ gapi.load('client', async () => {
|
|
|
356
388
|
},
|
|
357
389
|
managed: {
|
|
358
390
|
enabled: true,
|
|
391
|
+
stopSyncing: true,
|
|
359
392
|
},
|
|
393
|
+
metricsGcpServiceAccountEmail: "Test string",
|
|
360
394
|
oci: {
|
|
361
395
|
gcpServiceAccountEmail: "Test string",
|
|
362
396
|
policyDir: "Test string",
|
|
@@ -387,6 +421,7 @@ gapi.load('client', async () => {
|
|
|
387
421
|
mutationEnabled: true,
|
|
388
422
|
referentialRulesEnabled: true,
|
|
389
423
|
templateLibraryInstalled: true,
|
|
424
|
+
updateTime: "Test string",
|
|
390
425
|
},
|
|
391
426
|
version: "Test string",
|
|
392
427
|
},
|
|
@@ -406,6 +441,7 @@ gapi.load('client', async () => {
|
|
|
406
441
|
gatekeeperMutation: "Test string",
|
|
407
442
|
},
|
|
408
443
|
migration: {
|
|
444
|
+
copyTime: "Test string",
|
|
409
445
|
stage: "Test string",
|
|
410
446
|
},
|
|
411
447
|
version: {
|
|
@@ -478,6 +514,10 @@ gapi.load('client', async () => {
|
|
|
478
514
|
state: "Test string",
|
|
479
515
|
}
|
|
480
516
|
},
|
|
517
|
+
referentialSyncConfigState: {
|
|
518
|
+
details: "Test string",
|
|
519
|
+
state: "Test string",
|
|
520
|
+
},
|
|
481
521
|
templateLibraryState: {
|
|
482
522
|
details: "Test string",
|
|
483
523
|
state: "Test string",
|
|
@@ -538,10 +578,66 @@ gapi.load('client', async () => {
|
|
|
538
578
|
},
|
|
539
579
|
scopeSpecs: {
|
|
540
580
|
A: {
|
|
581
|
+
clusterupgrade: {
|
|
582
|
+
gkeUpgradeOverrides: [
|
|
583
|
+
{
|
|
584
|
+
postConditions: {
|
|
585
|
+
soaking: "Test string",
|
|
586
|
+
},
|
|
587
|
+
upgrade: {
|
|
588
|
+
name: "Test string",
|
|
589
|
+
version: "Test string",
|
|
590
|
+
},
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
postConditions: {
|
|
594
|
+
soaking: "Test string",
|
|
595
|
+
},
|
|
596
|
+
upstreamScopes: [
|
|
597
|
+
"Test string"
|
|
598
|
+
],
|
|
599
|
+
},
|
|
541
600
|
}
|
|
542
601
|
},
|
|
543
602
|
scopeStates: {
|
|
544
603
|
A: {
|
|
604
|
+
clusterupgrade: {
|
|
605
|
+
downstreamScopes: [
|
|
606
|
+
"Test string"
|
|
607
|
+
],
|
|
608
|
+
gkeState: {
|
|
609
|
+
conditions: [
|
|
610
|
+
{
|
|
611
|
+
reason: "Test string",
|
|
612
|
+
status: "Test string",
|
|
613
|
+
type: "Test string",
|
|
614
|
+
updateTime: "Test string",
|
|
615
|
+
}
|
|
616
|
+
],
|
|
617
|
+
state: [
|
|
618
|
+
{
|
|
619
|
+
stats: {
|
|
620
|
+
A: "Test string"
|
|
621
|
+
},
|
|
622
|
+
status: {
|
|
623
|
+
code: "Test string",
|
|
624
|
+
reason: "Test string",
|
|
625
|
+
updateTime: "Test string",
|
|
626
|
+
},
|
|
627
|
+
upgrade: {
|
|
628
|
+
name: "Test string",
|
|
629
|
+
version: "Test string",
|
|
630
|
+
},
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
},
|
|
634
|
+
ignored: {
|
|
635
|
+
A: {
|
|
636
|
+
ignoredTime: "Test string",
|
|
637
|
+
reason: "Test string",
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
},
|
|
545
641
|
state: {
|
|
546
642
|
code: "Test string",
|
|
547
643
|
description: "Test string",
|
|
@@ -708,6 +804,7 @@ gapi.load('client', async () => {
|
|
|
708
804
|
binauthz: {
|
|
709
805
|
enabled: true,
|
|
710
806
|
},
|
|
807
|
+
cluster: "Test string",
|
|
711
808
|
configSync: {
|
|
712
809
|
allowVerticalScale: true,
|
|
713
810
|
enabled: true,
|
|
@@ -723,7 +820,9 @@ gapi.load('client', async () => {
|
|
|
723
820
|
},
|
|
724
821
|
managed: {
|
|
725
822
|
enabled: true,
|
|
823
|
+
stopSyncing: true,
|
|
726
824
|
},
|
|
825
|
+
metricsGcpServiceAccountEmail: "Test string",
|
|
727
826
|
oci: {
|
|
728
827
|
gcpServiceAccountEmail: "Test string",
|
|
729
828
|
policyDir: "Test string",
|
|
@@ -754,6 +853,7 @@ gapi.load('client', async () => {
|
|
|
754
853
|
mutationEnabled: true,
|
|
755
854
|
referentialRulesEnabled: true,
|
|
756
855
|
templateLibraryInstalled: true,
|
|
856
|
+
updateTime: "Test string",
|
|
757
857
|
},
|
|
758
858
|
version: "Test string",
|
|
759
859
|
},
|
|
@@ -873,6 +973,28 @@ gapi.load('client', async () => {
|
|
|
873
973
|
description: "Test string",
|
|
874
974
|
},
|
|
875
975
|
},
|
|
976
|
+
clusterupgrade: {
|
|
977
|
+
ignored: {
|
|
978
|
+
ignoredTime: "Test string",
|
|
979
|
+
reason: "Test string",
|
|
980
|
+
},
|
|
981
|
+
scopes: [
|
|
982
|
+
"Test string"
|
|
983
|
+
],
|
|
984
|
+
upgrades: [
|
|
985
|
+
{
|
|
986
|
+
status: {
|
|
987
|
+
code: "Test string",
|
|
988
|
+
reason: "Test string",
|
|
989
|
+
updateTime: "Test string",
|
|
990
|
+
},
|
|
991
|
+
upgrade: {
|
|
992
|
+
name: "Test string",
|
|
993
|
+
version: "Test string",
|
|
994
|
+
},
|
|
995
|
+
}
|
|
996
|
+
],
|
|
997
|
+
},
|
|
876
998
|
configmanagement: {
|
|
877
999
|
binauthzState: {
|
|
878
1000
|
version: {
|
|
@@ -891,6 +1013,11 @@ gapi.load('client', async () => {
|
|
|
891
1013
|
rootReconciler: "Test string",
|
|
892
1014
|
syncer: "Test string",
|
|
893
1015
|
},
|
|
1016
|
+
errors: [
|
|
1017
|
+
{
|
|
1018
|
+
errorMessage: "Test string",
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
894
1021
|
syncState: {
|
|
895
1022
|
code: "Test string",
|
|
896
1023
|
errors: [
|
|
@@ -941,6 +1068,7 @@ gapi.load('client', async () => {
|
|
|
941
1068
|
binauthz: {
|
|
942
1069
|
enabled: true,
|
|
943
1070
|
},
|
|
1071
|
+
cluster: "Test string",
|
|
944
1072
|
configSync: {
|
|
945
1073
|
allowVerticalScale: true,
|
|
946
1074
|
enabled: true,
|
|
@@ -956,7 +1084,9 @@ gapi.load('client', async () => {
|
|
|
956
1084
|
},
|
|
957
1085
|
managed: {
|
|
958
1086
|
enabled: true,
|
|
1087
|
+
stopSyncing: true,
|
|
959
1088
|
},
|
|
1089
|
+
metricsGcpServiceAccountEmail: "Test string",
|
|
960
1090
|
oci: {
|
|
961
1091
|
gcpServiceAccountEmail: "Test string",
|
|
962
1092
|
policyDir: "Test string",
|
|
@@ -987,6 +1117,7 @@ gapi.load('client', async () => {
|
|
|
987
1117
|
mutationEnabled: true,
|
|
988
1118
|
referentialRulesEnabled: true,
|
|
989
1119
|
templateLibraryInstalled: true,
|
|
1120
|
+
updateTime: "Test string",
|
|
990
1121
|
},
|
|
991
1122
|
version: "Test string",
|
|
992
1123
|
},
|
|
@@ -1006,6 +1137,7 @@ gapi.load('client', async () => {
|
|
|
1006
1137
|
gatekeeperMutation: "Test string",
|
|
1007
1138
|
},
|
|
1008
1139
|
migration: {
|
|
1140
|
+
copyTime: "Test string",
|
|
1009
1141
|
stage: "Test string",
|
|
1010
1142
|
},
|
|
1011
1143
|
version: {
|
|
@@ -1078,6 +1210,10 @@ gapi.load('client', async () => {
|
|
|
1078
1210
|
state: "Test string",
|
|
1079
1211
|
}
|
|
1080
1212
|
},
|
|
1213
|
+
referentialSyncConfigState: {
|
|
1214
|
+
details: "Test string",
|
|
1215
|
+
state: "Test string",
|
|
1216
|
+
},
|
|
1081
1217
|
templateLibraryState: {
|
|
1082
1218
|
details: "Test string",
|
|
1083
1219
|
state: "Test string",
|
|
@@ -1138,10 +1274,66 @@ gapi.load('client', async () => {
|
|
|
1138
1274
|
},
|
|
1139
1275
|
scopeSpecs: {
|
|
1140
1276
|
A: {
|
|
1277
|
+
clusterupgrade: {
|
|
1278
|
+
gkeUpgradeOverrides: [
|
|
1279
|
+
{
|
|
1280
|
+
postConditions: {
|
|
1281
|
+
soaking: "Test string",
|
|
1282
|
+
},
|
|
1283
|
+
upgrade: {
|
|
1284
|
+
name: "Test string",
|
|
1285
|
+
version: "Test string",
|
|
1286
|
+
},
|
|
1287
|
+
}
|
|
1288
|
+
],
|
|
1289
|
+
postConditions: {
|
|
1290
|
+
soaking: "Test string",
|
|
1291
|
+
},
|
|
1292
|
+
upstreamScopes: [
|
|
1293
|
+
"Test string"
|
|
1294
|
+
],
|
|
1295
|
+
},
|
|
1141
1296
|
}
|
|
1142
1297
|
},
|
|
1143
1298
|
scopeStates: {
|
|
1144
1299
|
A: {
|
|
1300
|
+
clusterupgrade: {
|
|
1301
|
+
downstreamScopes: [
|
|
1302
|
+
"Test string"
|
|
1303
|
+
],
|
|
1304
|
+
gkeState: {
|
|
1305
|
+
conditions: [
|
|
1306
|
+
{
|
|
1307
|
+
reason: "Test string",
|
|
1308
|
+
status: "Test string",
|
|
1309
|
+
type: "Test string",
|
|
1310
|
+
updateTime: "Test string",
|
|
1311
|
+
}
|
|
1312
|
+
],
|
|
1313
|
+
state: [
|
|
1314
|
+
{
|
|
1315
|
+
stats: {
|
|
1316
|
+
A: "Test string"
|
|
1317
|
+
},
|
|
1318
|
+
status: {
|
|
1319
|
+
code: "Test string",
|
|
1320
|
+
reason: "Test string",
|
|
1321
|
+
updateTime: "Test string",
|
|
1322
|
+
},
|
|
1323
|
+
upgrade: {
|
|
1324
|
+
name: "Test string",
|
|
1325
|
+
version: "Test string",
|
|
1326
|
+
},
|
|
1327
|
+
}
|
|
1328
|
+
],
|
|
1329
|
+
},
|
|
1330
|
+
ignored: {
|
|
1331
|
+
A: {
|
|
1332
|
+
ignoredTime: "Test string",
|
|
1333
|
+
reason: "Test string",
|
|
1334
|
+
}
|
|
1335
|
+
},
|
|
1336
|
+
},
|
|
1145
1337
|
state: {
|
|
1146
1338
|
code: "Test string",
|
|
1147
1339
|
description: "Test string",
|