@maxim_mazurok/gapi.client.gkehub-v1 0.0.20230929 → 0.0.20231006
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 +8 -11
- package/package.json +1 -1
- package/tests.ts +1 -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: 20231006
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1160,27 +1160,24 @@ declare namespace gapi.client {
|
|
|
1160
1160
|
}
|
|
1161
1161
|
interface MonitoringConfig {
|
|
1162
1162
|
/**
|
|
1163
|
-
*
|
|
1164
|
-
*
|
|
1163
|
+
* Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/MultiCloud clusters, it would be in format {cluster_type}/{cluster_name}, e.g.,
|
|
1164
|
+
* "awsClusters/cluster_1".
|
|
1165
1165
|
*/
|
|
1166
1166
|
cluster?:
|
|
1167
1167
|
string;
|
|
1168
|
-
/**
|
|
1169
|
-
* Immutable. Cluster hash, this is a unique string generated by google code, which does not contain any PII, which we can use to reference the cluster. This is expected to be created
|
|
1170
|
-
* by the monitoring stack and persisted into the Cluster object as well as to GKE-Hub.
|
|
1171
|
-
*/
|
|
1168
|
+
/** Optional. For GKE and Multicloud clusters, this is the UUID of the cluster resource. For VMWare and Baremetal clusters, this is the kube-system UID. */
|
|
1172
1169
|
clusterHash?:
|
|
1173
1170
|
string;
|
|
1174
1171
|
/**
|
|
1175
|
-
* Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos
|
|
1176
|
-
* will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos
|
|
1172
|
+
* Optional. Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos
|
|
1173
|
+
* MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
|
|
1177
1174
|
*/
|
|
1178
1175
|
kubernetesMetricsPrefix?:
|
|
1179
1176
|
string;
|
|
1180
|
-
/**
|
|
1177
|
+
/** Optional. Location used to report Metrics */
|
|
1181
1178
|
location?:
|
|
1182
1179
|
string;
|
|
1183
|
-
/**
|
|
1180
|
+
/** Optional. Project used to report Metrics */
|
|
1184
1181
|
projectId?:
|
|
1185
1182
|
string;
|
|
1186
1183
|
}
|
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: 20231006
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|