@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20230129 → 0.0.20230206
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 +3 -1
- package/package.json +1 -1
- package/tests.ts +4 -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: 20230206
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -777,6 +777,8 @@ declare namespace gapi.client {
|
|
|
777
777
|
edgeCluster?: EdgeCluster;
|
|
778
778
|
/** Optional. Specific information for a GKE-on-GCP cluster. */
|
|
779
779
|
gkeCluster?: GkeCluster;
|
|
780
|
+
/** Output only. Whether the lifecycle of this membership is managed by a google cluster platform service. */
|
|
781
|
+
googleManaged?: boolean;
|
|
780
782
|
/** Output only. Useful Kubernetes-specific metadata. */
|
|
781
783
|
kubernetesMetadata?: KubernetesMetadata;
|
|
782
784
|
/**
|
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: 20230206
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -1265,6 +1265,7 @@ gapi.load('client', async () => {
|
|
|
1265
1265
|
clusterMissing: true,
|
|
1266
1266
|
resourceLink: "Test string",
|
|
1267
1267
|
},
|
|
1268
|
+
googleManaged: true,
|
|
1268
1269
|
kubernetesMetadata: {
|
|
1269
1270
|
kubernetesApiServerVersion: "Test string",
|
|
1270
1271
|
memoryMb: 42,
|
|
@@ -1388,6 +1389,7 @@ gapi.load('client', async () => {
|
|
|
1388
1389
|
clusterMissing: true,
|
|
1389
1390
|
resourceLink: "Test string",
|
|
1390
1391
|
},
|
|
1392
|
+
googleManaged: true,
|
|
1391
1393
|
kubernetesMetadata: {
|
|
1392
1394
|
kubernetesApiServerVersion: "Test string",
|
|
1393
1395
|
memoryMb: 42,
|
|
@@ -1515,6 +1517,7 @@ gapi.load('client', async () => {
|
|
|
1515
1517
|
clusterMissing: true,
|
|
1516
1518
|
resourceLink: "Test string",
|
|
1517
1519
|
},
|
|
1520
|
+
googleManaged: true,
|
|
1518
1521
|
kubernetesMetadata: {
|
|
1519
1522
|
kubernetesApiServerVersion: "Test string",
|
|
1520
1523
|
memoryMb: 42,
|