@maxim_mazurok/gapi.client.gkehub-v1 0.0.20230804 → 0.0.20230814
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 +1 -4
- package/package.json +1 -1
- package/tests.ts +1 -3
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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230814
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1056,9 +1056,6 @@ declare namespace gapi.client {
|
|
|
1056
1056
|
/** Output only. When the membership binding was deleted. */
|
|
1057
1057
|
deleteTime?:
|
|
1058
1058
|
string;
|
|
1059
|
-
/** Whether the membershipbinding is Fleet-wide; true means that this Membership should be bound to all Namespaces in this entire Fleet. */
|
|
1060
|
-
fleet?:
|
|
1061
|
-
boolean;
|
|
1062
1059
|
/** Optional. Labels for this MembershipBinding. */
|
|
1063
1060
|
labels?:
|
|
1064
1061
|
{ [P in string]: string };
|
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: 20230814
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -1255,7 +1255,6 @@ gapi.load('client', async () => {
|
|
|
1255
1255
|
}, {
|
|
1256
1256
|
createTime: "Test string",
|
|
1257
1257
|
deleteTime: "Test string",
|
|
1258
|
-
fleet: true,
|
|
1259
1258
|
labels: {
|
|
1260
1259
|
A: "Test string"
|
|
1261
1260
|
},
|
|
@@ -1289,7 +1288,6 @@ gapi.load('client', async () => {
|
|
|
1289
1288
|
}, {
|
|
1290
1289
|
createTime: "Test string",
|
|
1291
1290
|
deleteTime: "Test string",
|
|
1292
|
-
fleet: true,
|
|
1293
1291
|
labels: {
|
|
1294
1292
|
A: "Test string"
|
|
1295
1293
|
},
|