@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20231211 → 0.0.20240103
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 +9 -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: 20240103
|
|
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. */
|