@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20231211 → 0.0.20240117
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: 20240117
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -28,9 +28,17 @@ declare namespace gapi.client {
|
|
|
28
28
|
): void;
|
|
29
29
|
|
|
30
30
|
namespace workloadmanager {
|
|
31
|
+
interface BigQueryDestination {
|
|
32
|
+
/** Optional. determine if results will be saved in a new table */
|
|
33
|
+
createNewResultsTable?: boolean;
|
|
34
|
+
/** Optional. destination dataset to save evaluation results */
|
|
35
|
+
destinationDataset?: string;
|
|
36
|
+
}
|
|
31
37
|
interface CancelOperationRequest {}
|
|
32
38
|
interface Empty {}
|
|
33
39
|
interface Evaluation {
|
|
40
|
+
/** Optional. BigQuery destination */
|
|
41
|
+
bigQueryDestination?: BigQueryDestination;
|
|
34
42
|
/** Output only. [Output only] Create time stamp */
|
|
35
43
|
createTime?: string;
|
|
36
44
|
/** The Cloud Storage bucket name for custom rules. */
|
|
@@ -231,6 +239,8 @@ declare namespace gapi.client {
|
|
|
231
239
|
secondaryCategory?: string;
|
|
232
240
|
/** the severity of the rule */
|
|
233
241
|
severity?: string;
|
|
242
|
+
/** List of user-defined tags */
|
|
243
|
+
tags?: string[];
|
|
234
244
|
/** the docuement url for the rule */
|
|
235
245
|
uri?: string;
|
|
236
246
|
}
|
|
@@ -343,6 +353,8 @@ declare namespace gapi.client {
|
|
|
343
353
|
interface ScannedResource {
|
|
344
354
|
/** resource name */
|
|
345
355
|
resource?: string;
|
|
356
|
+
/** resource type */
|
|
357
|
+
type?: string;
|
|
346
358
|
}
|
|
347
359
|
interface SqlserverValidation {
|
|
348
360
|
/** Optional. The agent version collected this data point */
|