@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250507 → 0.0.20250528
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 +65 -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://workloadmanager.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250528
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -34,6 +34,68 @@ declare namespace gapi.client {
|
|
|
34
34
|
/** parameters is a map of key/value pairs that can be used to specify additional one-time executable settings. */
|
|
35
35
|
parameters?: {[P in string]: string};
|
|
36
36
|
}
|
|
37
|
+
interface AgentStatus {
|
|
38
|
+
/** Output only. The name of the agent. */
|
|
39
|
+
agentName?: string;
|
|
40
|
+
/** Output only. The available version of the agent in artifact registry. */
|
|
41
|
+
availableVersion?: string;
|
|
42
|
+
/** Output only. Whether the agent has full access to Cloud APIs. */
|
|
43
|
+
cloudApiAccessFullScopesGranted?: string;
|
|
44
|
+
/** Output only. The error message for the agent configuration if invalid. */
|
|
45
|
+
configurationErrorMessage?: string;
|
|
46
|
+
/** Output only. The path to the agent configuration file. */
|
|
47
|
+
configurationFilePath?: string;
|
|
48
|
+
/** Output only. Whether the agent configuration is valid. */
|
|
49
|
+
configurationValid?: string;
|
|
50
|
+
/** Output only. The installed version of the agent on the host. */
|
|
51
|
+
installedVersion?: string;
|
|
52
|
+
/** Output only. The kernel version of the system. */
|
|
53
|
+
kernelVersion?: SapDiscoveryResourceInstancePropertiesKernelVersion;
|
|
54
|
+
/** Output only. Optional references to public documentation. */
|
|
55
|
+
references?: AgentStatusReference[];
|
|
56
|
+
/** Output only. The services (process metrics, host metrics, etc.). */
|
|
57
|
+
services?: AgentStatusServiceStatus[];
|
|
58
|
+
/** Output only. Whether the agent service is enabled in systemd. */
|
|
59
|
+
systemdServiceEnabled?: string;
|
|
60
|
+
/** Output only. Whether the agent service is running in systemd. */
|
|
61
|
+
systemdServiceRunning?: string;
|
|
62
|
+
}
|
|
63
|
+
interface AgentStatusConfigValue {
|
|
64
|
+
/** Output only. Whether the configuration value is the default value or overridden. */
|
|
65
|
+
isDefault?: boolean;
|
|
66
|
+
/** Output only. The name of the configuration value. */
|
|
67
|
+
name?: string;
|
|
68
|
+
/** Output only. The value of the configuration value. */
|
|
69
|
+
value?: string;
|
|
70
|
+
}
|
|
71
|
+
interface AgentStatusIAMPermission {
|
|
72
|
+
/** Output only. Whether the permission is granted. */
|
|
73
|
+
granted?: string;
|
|
74
|
+
/** Output only. The name of the permission. */
|
|
75
|
+
name?: string;
|
|
76
|
+
}
|
|
77
|
+
interface AgentStatusReference {
|
|
78
|
+
/** Output only. The name of the reference. */
|
|
79
|
+
name?: string;
|
|
80
|
+
/** Output only. The URL of the reference. */
|
|
81
|
+
url?: string;
|
|
82
|
+
}
|
|
83
|
+
interface AgentStatusServiceStatus {
|
|
84
|
+
/** Output only. The configuration values for the service. */
|
|
85
|
+
configValues?: AgentStatusConfigValue[];
|
|
86
|
+
/** Output only. The error message for the service if it is not fully functional. */
|
|
87
|
+
errorMessage?: string;
|
|
88
|
+
/** Output only. Whether the service is fully functional (all checks passed). */
|
|
89
|
+
fullyFunctional?: string;
|
|
90
|
+
/** Output only. The permissions required for the service. */
|
|
91
|
+
iamPermissions?: AgentStatusIAMPermission[];
|
|
92
|
+
/** Output only. The name of the service. */
|
|
93
|
+
name?: string;
|
|
94
|
+
/** Output only. The state of the service (enabled or disabled in the configuration). */
|
|
95
|
+
state?: string;
|
|
96
|
+
/** Output only. The message to display when the service state is unspecified. */
|
|
97
|
+
unspecifiedStateMessage?: string;
|
|
98
|
+
}
|
|
37
99
|
interface BackupProperties {
|
|
38
100
|
/** Output only. The state of the latest backup. */
|
|
39
101
|
latestBackupStatus?: string;
|
|
@@ -182,6 +244,8 @@ declare namespace gapi.client {
|
|
|
182
244
|
state?: string;
|
|
183
245
|
}
|
|
184
246
|
interface Insight {
|
|
247
|
+
/** The insights data for the agent status. */
|
|
248
|
+
agentStatus?: AgentStatus;
|
|
185
249
|
/** Required. The instance id where the insight is generated from */
|
|
186
250
|
instanceId?: string;
|
|
187
251
|
/** The insights data for SAP system discovery. This is a copy of SAP System proto and should get updated whenever that one changes. */
|