@maxim_mazurok/gapi.client.gkehub-v1alpha 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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231006
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1474,27 +1474,24 @@ declare namespace gapi.client {
|
|
|
1474
1474
|
}
|
|
1475
1475
|
interface MonitoringConfig {
|
|
1476
1476
|
/**
|
|
1477
|
-
*
|
|
1478
|
-
*
|
|
1477
|
+
* 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.,
|
|
1478
|
+
* "awsClusters/cluster_1".
|
|
1479
1479
|
*/
|
|
1480
1480
|
cluster?:
|
|
1481
1481
|
string;
|
|
1482
|
-
/**
|
|
1483
|
-
* 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
|
|
1484
|
-
* by the monitoring stack and persisted into the Cluster object as well as to GKE-Hub.
|
|
1485
|
-
*/
|
|
1482
|
+
/** 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. */
|
|
1486
1483
|
clusterHash?:
|
|
1487
1484
|
string;
|
|
1488
1485
|
/**
|
|
1489
|
-
* 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
|
|
1490
|
-
* will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos
|
|
1486
|
+
* 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
|
|
1487
|
+
* MultiCloud will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos.
|
|
1491
1488
|
*/
|
|
1492
1489
|
kubernetesMetricsPrefix?:
|
|
1493
1490
|
string;
|
|
1494
|
-
/**
|
|
1491
|
+
/** Optional. Location used to report Metrics */
|
|
1495
1492
|
location?:
|
|
1496
1493
|
string;
|
|
1497
|
-
/**
|
|
1494
|
+
/** Optional. Project used to report Metrics */
|
|
1498
1495
|
projectId?:
|
|
1499
1496
|
string;
|
|
1500
1497
|
}
|
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 */
|