@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20240318 → 0.0.20240412
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 +15 -1
- 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: 20240412
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1384,9 +1384,21 @@ declare namespace gapi.client {
|
|
|
1384
1384
|
/** Represents the specific type of a message. */
|
|
1385
1385
|
type?: ServiceMeshType;
|
|
1386
1386
|
}
|
|
1387
|
+
interface ServiceMeshCondition {
|
|
1388
|
+
/** Unique identifier of the condition which describes the condition recognizable to the user. */
|
|
1389
|
+
code?: string;
|
|
1390
|
+
/** A short summary about the issue. */
|
|
1391
|
+
details?: string;
|
|
1392
|
+
/** Links contains actionable information. */
|
|
1393
|
+
documentationLink?: string;
|
|
1394
|
+
/** Severity level of the condition. */
|
|
1395
|
+
severity?: string;
|
|
1396
|
+
}
|
|
1387
1397
|
interface ServiceMeshControlPlaneManagement {
|
|
1388
1398
|
/** Explanation of state. */
|
|
1389
1399
|
details?: ServiceMeshStatusDetails[];
|
|
1400
|
+
/** Output only. Implementation of managed control plane. */
|
|
1401
|
+
implementation?: string;
|
|
1390
1402
|
/** LifecycleState of control plane management. */
|
|
1391
1403
|
state?: string;
|
|
1392
1404
|
}
|
|
@@ -1411,6 +1423,8 @@ declare namespace gapi.client {
|
|
|
1411
1423
|
interface ServiceMeshMembershipState {
|
|
1412
1424
|
/** Output only. Results of running Service Mesh analyzers. */
|
|
1413
1425
|
analysisMessages?: ServiceMeshAnalysisMessage[];
|
|
1426
|
+
/** Output only. List of conditions reported for this membership. */
|
|
1427
|
+
conditions?: ServiceMeshCondition[];
|
|
1414
1428
|
/** The API version (i.e. Istio CRD version) for configuring service mesh in this cluster. This version is influenced by the `default_channel` field. */
|
|
1415
1429
|
configApiVersion?: string;
|
|
1416
1430
|
/** Output only. Status of control plane management */
|