@maxim_mazurok/gapi.client.gkehub-v1 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 +3 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230206
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -676,6 +676,8 @@ declare namespace gapi.client {
|
|
|
676
676
|
edgeCluster?: EdgeCluster;
|
|
677
677
|
/** Optional. Specific information for a GKE-on-GCP cluster. */
|
|
678
678
|
gkeCluster?: GkeCluster;
|
|
679
|
+
/** Output only. Whether the lifecycle of this membership is managed by a google cluster platform service. */
|
|
680
|
+
googleManaged?: boolean;
|
|
679
681
|
/** Output only. Useful Kubernetes-specific metadata. */
|
|
680
682
|
kubernetesMetadata?: KubernetesMetadata;
|
|
681
683
|
/**
|
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 */
|
|
@@ -844,6 +844,7 @@ gapi.load('client', async () => {
|
|
|
844
844
|
clusterMissing: true,
|
|
845
845
|
resourceLink: "Test string",
|
|
846
846
|
},
|
|
847
|
+
googleManaged: true,
|
|
847
848
|
kubernetesMetadata: {
|
|
848
849
|
kubernetesApiServerVersion: "Test string",
|
|
849
850
|
memoryMb: 42,
|
|
@@ -959,6 +960,7 @@ gapi.load('client', async () => {
|
|
|
959
960
|
clusterMissing: true,
|
|
960
961
|
resourceLink: "Test string",
|
|
961
962
|
},
|
|
963
|
+
googleManaged: true,
|
|
962
964
|
kubernetesMetadata: {
|
|
963
965
|
kubernetesApiServerVersion: "Test string",
|
|
964
966
|
memoryMb: 42,
|