@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20231022 → 0.0.20231030
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 +4 -1
- package/package.json +1 -1
- package/tests.ts +11 -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: 20231030
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -349,6 +349,9 @@ declare namespace gapi.client {
|
|
|
349
349
|
/** Identity Service-specific spec. */
|
|
350
350
|
identityservice?:
|
|
351
351
|
IdentityServiceMembershipSpec;
|
|
352
|
+
/** Anthos Service Mesh-specific spec */
|
|
353
|
+
mesh?:
|
|
354
|
+
ServiceMeshMembershipSpec;
|
|
352
355
|
/** Policy Controller spec. */
|
|
353
356
|
policycontroller?:
|
|
354
357
|
PolicyControllerMembershipSpec;
|
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: 20231030
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -144,6 +144,11 @@ gapi.load('client', async () => {
|
|
|
144
144
|
}
|
|
145
145
|
],
|
|
146
146
|
},
|
|
147
|
+
mesh: {
|
|
148
|
+
controlPlane: "Test string",
|
|
149
|
+
defaultChannel: "Test string",
|
|
150
|
+
management: "Test string",
|
|
151
|
+
},
|
|
147
152
|
policycontroller: {
|
|
148
153
|
policyControllerHubConfig: {
|
|
149
154
|
auditIntervalSeconds: "Test string",
|
|
@@ -1026,6 +1031,11 @@ gapi.load('client', async () => {
|
|
|
1026
1031
|
}
|
|
1027
1032
|
],
|
|
1028
1033
|
},
|
|
1034
|
+
mesh: {
|
|
1035
|
+
controlPlane: "Test string",
|
|
1036
|
+
defaultChannel: "Test string",
|
|
1037
|
+
management: "Test string",
|
|
1038
|
+
},
|
|
1029
1039
|
policycontroller: {
|
|
1030
1040
|
policyControllerHubConfig: {
|
|
1031
1041
|
auditIntervalSeconds: "Test string",
|