@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20250127 → 0.0.20250209
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 +14 -2
- package/package.json +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: 20250209
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1448,9 +1448,21 @@ declare namespace gapi.client {
|
|
|
1448
1448
|
/** Lifecycle status of data plane management. */
|
|
1449
1449
|
state?: string;
|
|
1450
1450
|
}
|
|
1451
|
+
interface ServiceMeshFeatureCondition {
|
|
1452
|
+
/** Unique identifier of the condition which describes the condition recognizable to the user. */
|
|
1453
|
+
code?: string;
|
|
1454
|
+
/** A short summary about the issue. */
|
|
1455
|
+
details?: string;
|
|
1456
|
+
/** Links contains actionable information. */
|
|
1457
|
+
documentationLink?: string;
|
|
1458
|
+
/** Severity level of the condition. */
|
|
1459
|
+
severity?: string;
|
|
1460
|
+
}
|
|
1451
1461
|
interface ServiceMeshFeatureState {
|
|
1452
1462
|
/** Output only. Results of running Service Mesh analyzers. */
|
|
1453
1463
|
analysisMessages?: ServiceMeshAnalysisMessage[];
|
|
1464
|
+
/** Output only. List of conditions reported for this feature. */
|
|
1465
|
+
conditions?: ServiceMeshFeatureCondition[];
|
|
1454
1466
|
}
|
|
1455
1467
|
interface ServiceMeshMembershipSpec {
|
|
1456
1468
|
/** Optional. Specifies the API that will be used for configuring the mesh workloads. */
|
|
@@ -1465,7 +1477,7 @@ declare namespace gapi.client {
|
|
|
1465
1477
|
interface ServiceMeshMembershipState {
|
|
1466
1478
|
/** Output only. Results of running Service Mesh analyzers. */
|
|
1467
1479
|
analysisMessages?: ServiceMeshAnalysisMessage[];
|
|
1468
|
-
/** Output only. List of conditions reported for this membership. */
|
|
1480
|
+
/** Output only. List of conditions reported for this membership. TODO b/395151419: Use the common Condition message. */
|
|
1469
1481
|
conditions?: ServiceMeshCondition[];
|
|
1470
1482
|
/** The API version (i.e. Istio CRD version) for configuring service mesh in this cluster. This version is influenced by the `default_channel` field. */
|
|
1471
1483
|
configApiVersion?: string;
|