@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250730 → 0.0.20250813
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 +24 -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://workloadmanager.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250813
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -37,8 +37,16 @@ declare namespace gapi.client {
|
|
|
37
37
|
interface AgentStates {
|
|
38
38
|
/** Optional. The available version of the agent in artifact registry. */
|
|
39
39
|
availableVersion?: string;
|
|
40
|
+
/** Optional. HANA monitoring metrics of the agent. */
|
|
41
|
+
hanaMonitoring?: ServiceStates;
|
|
40
42
|
/** Optional. The installed version of the agent on the host. */
|
|
41
43
|
installedVersion?: string;
|
|
44
|
+
/** Optional. Whether the agent is fully enabled. If false, the agent is has some issues. */
|
|
45
|
+
isFullyEnabled?: boolean;
|
|
46
|
+
/** Optional. The Process metrics of the agent. */
|
|
47
|
+
processMetrics?: ServiceStates;
|
|
48
|
+
/** Optional. The System discovery metrics of the agent. */
|
|
49
|
+
systemDiscovery?: ServiceStates;
|
|
42
50
|
}
|
|
43
51
|
interface AgentStatus {
|
|
44
52
|
/** Output only. The name of the agent. */
|
|
@@ -171,6 +179,8 @@ declare namespace gapi.client {
|
|
|
171
179
|
interface Execution {
|
|
172
180
|
/** Output only. [Output only] End time stamp */
|
|
173
181
|
endTime?: string;
|
|
182
|
+
/** Optional. Engine */
|
|
183
|
+
engine?: string;
|
|
174
184
|
/** Output only. [Output only] Evaluation ID */
|
|
175
185
|
evaluationId?: string;
|
|
176
186
|
/** Optional. External data sources */
|
|
@@ -226,6 +236,12 @@ declare namespace gapi.client {
|
|
|
226
236
|
/** Service account of compute engine */
|
|
227
237
|
serviceAccounts?: string[];
|
|
228
238
|
}
|
|
239
|
+
interface IAMPermission {
|
|
240
|
+
/** Output only. Whether the permission is granted. */
|
|
241
|
+
granted?: boolean;
|
|
242
|
+
/** Output only. The name of the permission. */
|
|
243
|
+
name?: string;
|
|
244
|
+
}
|
|
229
245
|
interface Insight {
|
|
230
246
|
/** The insights data for the agent status. */
|
|
231
247
|
agentStatus?: AgentStatus;
|
|
@@ -656,6 +672,12 @@ declare namespace gapi.client {
|
|
|
656
672
|
/** resource type */
|
|
657
673
|
type?: string;
|
|
658
674
|
}
|
|
675
|
+
interface ServiceStates {
|
|
676
|
+
/** Optional. Output only. The IAM permissions for the service. */
|
|
677
|
+
iamPermissions?: IAMPermission[];
|
|
678
|
+
/** Output only. The overall state of the service. */
|
|
679
|
+
state?: string;
|
|
680
|
+
}
|
|
659
681
|
interface ShellCommand {
|
|
660
682
|
/** args is a string of arguments to be passed to the command. */
|
|
661
683
|
args?: string;
|
|
@@ -1490,7 +1512,7 @@ declare namespace gapi.client {
|
|
|
1490
1512
|
alt?: string;
|
|
1491
1513
|
/** JSONP */
|
|
1492
1514
|
callback?: string;
|
|
1493
|
-
/** Optional.
|
|
1515
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
1494
1516
|
extraLocationTypes?: string | string[];
|
|
1495
1517
|
/** Selector specifying which fields to include in a partial response. */
|
|
1496
1518
|
fields?: string;
|