@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250714 → 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 +11 -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;
|
|
@@ -143,6 +149,8 @@ declare namespace gapi.client {
|
|
|
143
149
|
description?: string;
|
|
144
150
|
/** Evaluation type */
|
|
145
151
|
evaluationType?: string;
|
|
152
|
+
/** Optional. Immutable. Customer-managed encryption key name, in the format projects/*/locations/*/keyRings/*/cryptoKeys/*. */
|
|
153
|
+
kmsKey?: string;
|
|
146
154
|
/** Labels as key value pairs */
|
|
147
155
|
labels?: {[P in string]: string};
|
|
148
156
|
/** name of resource names have the form 'projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}' */
|
|
@@ -609,6 +617,8 @@ declare namespace gapi.client {
|
|
|
609
617
|
version?: string;
|
|
610
618
|
}
|
|
611
619
|
interface SapInstanceProperties {
|
|
620
|
+
/** Optional. Sap Instance Agent status. */
|
|
621
|
+
agentStates?: AgentStates;
|
|
612
622
|
/** Optional. SAP Instance numbers. They are from '00' to '99'. */
|
|
613
623
|
numbers?: string[];
|
|
614
624
|
}
|