@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250708 → 0.0.20250727
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 +13 -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: 20250727
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -34,6 +34,12 @@ 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 AgentStates {
|
|
38
|
+
/** Optional. The available version of the agent in artifact registry. */
|
|
39
|
+
availableVersion?: string;
|
|
40
|
+
/** Optional. The installed version of the agent on the host. */
|
|
41
|
+
installedVersion?: string;
|
|
42
|
+
}
|
|
37
43
|
interface AgentStatus {
|
|
38
44
|
/** Output only. The name of the agent. */
|
|
39
45
|
agentName?: string;
|
|
@@ -49,6 +55,8 @@ declare namespace gapi.client {
|
|
|
49
55
|
configurationValid?: string;
|
|
50
56
|
/** Output only. The installed version of the agent on the host. */
|
|
51
57
|
installedVersion?: string;
|
|
58
|
+
/** Output only. The URI of the instance. Format: projects//zones//instances/ */
|
|
59
|
+
instanceUri?: string;
|
|
52
60
|
/** Output only. The kernel version of the system. */
|
|
53
61
|
kernelVersion?: SapDiscoveryResourceInstancePropertiesKernelVersion;
|
|
54
62
|
/** Output only. Optional references to public documentation. */
|
|
@@ -141,6 +149,8 @@ declare namespace gapi.client {
|
|
|
141
149
|
description?: string;
|
|
142
150
|
/** Evaluation type */
|
|
143
151
|
evaluationType?: string;
|
|
152
|
+
/** Optional. Immutable. Customer-managed encryption key name, in the format projects/*/locations/*/keyRings/*/cryptoKeys/*. */
|
|
153
|
+
kmsKey?: string;
|
|
144
154
|
/** Labels as key value pairs */
|
|
145
155
|
labels?: {[P in string]: string};
|
|
146
156
|
/** name of resource names have the form 'projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}' */
|
|
@@ -607,6 +617,8 @@ declare namespace gapi.client {
|
|
|
607
617
|
version?: string;
|
|
608
618
|
}
|
|
609
619
|
interface SapInstanceProperties {
|
|
620
|
+
/** Optional. Sap Instance Agent status. */
|
|
621
|
+
agentStates?: AgentStates;
|
|
610
622
|
/** Optional. SAP Instance numbers. They are from '00' to '99'. */
|
|
611
623
|
numbers?: string[];
|
|
612
624
|
}
|