@maxim_mazurok/gapi.client.gkehub-v1 0.0.20220828 → 0.0.20220923
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 +13 -2
- package/package.json +1 -1
- package/tests.ts +25 -1
package/index.d.ts
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
// Nick Amoscato <https://github.com/namoscato>
|
|
5
5
|
// Declan Vong <https://github.com/declanvong>
|
|
6
6
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
7
|
-
// TypeScript Version: 2.8
|
|
8
7
|
|
|
9
8
|
// IMPORTANT
|
|
10
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
11
|
// Generated from: https://gkehub.googleapis.com/$discovery/rest?version=v1
|
|
13
|
-
// Revision:
|
|
12
|
+
// Revision: 20220923
|
|
14
13
|
|
|
15
14
|
/// <reference types="gapi.client" />
|
|
16
15
|
|
|
@@ -143,6 +142,8 @@ declare namespace gapi.client {
|
|
|
143
142
|
state?: FeatureState;
|
|
144
143
|
}
|
|
145
144
|
interface ConfigManagementConfigSync {
|
|
145
|
+
/** Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. */
|
|
146
|
+
allowVerticalScale?: boolean;
|
|
146
147
|
/**
|
|
147
148
|
* 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, all other
|
|
148
149
|
* ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of git field.
|
|
@@ -833,13 +834,23 @@ declare namespace gapi.client {
|
|
|
833
834
|
/** LifecycleState of control plane management. */
|
|
834
835
|
state?: string;
|
|
835
836
|
}
|
|
837
|
+
interface ServiceMeshDataPlaneManagement {
|
|
838
|
+
/** Explanation of the status. */
|
|
839
|
+
details?: ServiceMeshStatusDetails[];
|
|
840
|
+
/** Lifecycle status of data plane management. */
|
|
841
|
+
state?: string;
|
|
842
|
+
}
|
|
836
843
|
interface ServiceMeshMembershipSpec {
|
|
837
844
|
/** Enables automatic control plane management. */
|
|
838
845
|
controlPlane?: string;
|
|
846
|
+
/** Enables automatic Service Mesh management. */
|
|
847
|
+
management?: string;
|
|
839
848
|
}
|
|
840
849
|
interface ServiceMeshMembershipState {
|
|
841
850
|
/** Output only. Status of control plane management */
|
|
842
851
|
controlPlaneManagement?: ServiceMeshControlPlaneManagement;
|
|
852
|
+
/** Output only. Status of data plane management. */
|
|
853
|
+
dataPlaneManagement?: ServiceMeshDataPlaneManagement;
|
|
843
854
|
}
|
|
844
855
|
// tslint:disable-next-line:no-empty-interface
|
|
845
856
|
interface ServiceMeshSpec {
|
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: 20220923
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -66,6 +66,7 @@ gapi.load('client', async () => {
|
|
|
66
66
|
},
|
|
67
67
|
configmanagement: {
|
|
68
68
|
configSync: {
|
|
69
|
+
allowVerticalScale: true,
|
|
69
70
|
enabled: true,
|
|
70
71
|
git: {
|
|
71
72
|
gcpServiceAccountEmail: "Test string",
|
|
@@ -139,6 +140,7 @@ gapi.load('client', async () => {
|
|
|
139
140
|
},
|
|
140
141
|
mesh: {
|
|
141
142
|
controlPlane: "Test string",
|
|
143
|
+
management: "Test string",
|
|
142
144
|
},
|
|
143
145
|
}
|
|
144
146
|
},
|
|
@@ -226,6 +228,7 @@ gapi.load('client', async () => {
|
|
|
226
228
|
},
|
|
227
229
|
membershipSpec: {
|
|
228
230
|
configSync: {
|
|
231
|
+
allowVerticalScale: true,
|
|
229
232
|
enabled: true,
|
|
230
233
|
git: {
|
|
231
234
|
gcpServiceAccountEmail: "Test string",
|
|
@@ -332,6 +335,15 @@ gapi.load('client', async () => {
|
|
|
332
335
|
],
|
|
333
336
|
state: "Test string",
|
|
334
337
|
},
|
|
338
|
+
dataPlaneManagement: {
|
|
339
|
+
details: [
|
|
340
|
+
{
|
|
341
|
+
code: "Test string",
|
|
342
|
+
details: "Test string",
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
state: "Test string",
|
|
346
|
+
},
|
|
335
347
|
},
|
|
336
348
|
state: {
|
|
337
349
|
code: "Test string",
|
|
@@ -415,6 +427,7 @@ gapi.load('client', async () => {
|
|
|
415
427
|
},
|
|
416
428
|
configmanagement: {
|
|
417
429
|
configSync: {
|
|
430
|
+
allowVerticalScale: true,
|
|
418
431
|
enabled: true,
|
|
419
432
|
git: {
|
|
420
433
|
gcpServiceAccountEmail: "Test string",
|
|
@@ -488,6 +501,7 @@ gapi.load('client', async () => {
|
|
|
488
501
|
},
|
|
489
502
|
mesh: {
|
|
490
503
|
controlPlane: "Test string",
|
|
504
|
+
management: "Test string",
|
|
491
505
|
},
|
|
492
506
|
}
|
|
493
507
|
},
|
|
@@ -575,6 +589,7 @@ gapi.load('client', async () => {
|
|
|
575
589
|
},
|
|
576
590
|
membershipSpec: {
|
|
577
591
|
configSync: {
|
|
592
|
+
allowVerticalScale: true,
|
|
578
593
|
enabled: true,
|
|
579
594
|
git: {
|
|
580
595
|
gcpServiceAccountEmail: "Test string",
|
|
@@ -681,6 +696,15 @@ gapi.load('client', async () => {
|
|
|
681
696
|
],
|
|
682
697
|
state: "Test string",
|
|
683
698
|
},
|
|
699
|
+
dataPlaneManagement: {
|
|
700
|
+
details: [
|
|
701
|
+
{
|
|
702
|
+
code: "Test string",
|
|
703
|
+
details: "Test string",
|
|
704
|
+
}
|
|
705
|
+
],
|
|
706
|
+
state: "Test string",
|
|
707
|
+
},
|
|
684
708
|
},
|
|
685
709
|
state: {
|
|
686
710
|
code: "Test string",
|