diff --git a/discovery/workloadmanager-v1.json b/discovery/workloadmanager-v1.json index 2f4b9643f6..1df5a9e4d8 100644 --- a/discovery/workloadmanager-v1.json +++ b/discovery/workloadmanager-v1.json @@ -707,9 +707,24 @@ } } }, - "revision": "20231211", + "revision": "20240103", "rootUrl": "https://workloadmanager.googleapis.com/", "schemas": { + "BigQueryDestination": { + "description": "Message describing big query destination", + "id": "BigQueryDestination", + "properties": { + "createNewResultsTable": { + "description": "Optional. determine if results will be saved in a new table", + "type": "boolean" + }, + "destinationDataset": { + "description": "Optional. destination dataset to save evaluation results", + "type": "string" + } + }, + "type": "object" + }, "CancelOperationRequest": { "description": "The request message for Operations.CancelOperation.", "id": "CancelOperationRequest", @@ -726,6 +741,10 @@ "description": "LINT.IfChange Message describing Evaluation object", "id": "Evaluation", "properties": { + "bigQueryDestination": { + "$ref": "BigQueryDestination", + "description": "Optional. BigQuery destination" + }, "createTime": { "description": "Output only. [Output only] Create time stamp", "format": "google-datetime", diff --git a/src/apis/workloadmanager/v1.ts b/src/apis/workloadmanager/v1.ts index ce46c19c6c..1e1d07bfc8 100644 --- a/src/apis/workloadmanager/v1.ts +++ b/src/apis/workloadmanager/v1.ts @@ -124,6 +124,19 @@ export namespace workloadmanager_v1 { } } + /** + * Message describing big query destination + */ + export interface Schema$BigQueryDestination { + /** + * Optional. determine if results will be saved in a new table + */ + createNewResultsTable?: boolean | null; + /** + * Optional. destination dataset to save evaluation results + */ + destinationDataset?: string | null; + } /** * The request message for Operations.CancelOperation. */ @@ -136,6 +149,10 @@ export namespace workloadmanager_v1 { * LINT.IfChange Message describing Evaluation object */ export interface Schema$Evaluation { + /** + * Optional. BigQuery destination + */ + bigQueryDestination?: Schema$BigQueryDestination; /** * Output only. [Output only] Create time stamp */