From 22dabc50c8b31479412f4eb854247fcc8e79daa3 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Date: Fri, 2 Feb 2024 01:30:46 +0000 Subject: [PATCH] feat(workflowexecutions): update the API #### workflowexecutions:v1 The following keys were added: - schemas.Execution.properties.createTime.description - schemas.Execution.properties.createTime.format - schemas.Execution.properties.createTime.readOnly - schemas.Execution.properties.createTime.type - schemas.Execution.properties.disableConcurrencyQuotaOverflowBuffering.description - schemas.Execution.properties.disableConcurrencyQuotaOverflowBuffering.type --- discovery/workflowexecutions-v1.json | 12 +++++++++++- src/apis/workflowexecutions/v1.ts | 8 ++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/discovery/workflowexecutions-v1.json b/discovery/workflowexecutions-v1.json index 3552c03e5e..7a998a33cd 100644 --- a/discovery/workflowexecutions-v1.json +++ b/discovery/workflowexecutions-v1.json @@ -457,7 +457,7 @@ } } }, - "revision": "20231211", + "revision": "20240122", "rootUrl": "https://workflowexecutions.googleapis.com/", "schemas": { "Callback": { @@ -551,6 +551,16 @@ ], "type": "string" }, + "createTime": { + "description": "Output only. Marks the creation of the execution.", + "format": "google-datetime", + "readOnly": true, + "type": "string" + }, + "disableConcurrencyQuotaOverflowBuffering": { + "description": "Optional. If set to true, the execution will not be backlogged when the concurrency quota is exhausted. The backlog execution starts when the concurrency quota becomes available.", + "type": "boolean" + }, "duration": { "description": "Output only. Measures the duration of the execution.", "format": "google-duration", diff --git a/src/apis/workflowexecutions/v1.ts b/src/apis/workflowexecutions/v1.ts index f932260ad4..e34fb72c8c 100644 --- a/src/apis/workflowexecutions/v1.ts +++ b/src/apis/workflowexecutions/v1.ts @@ -187,6 +187,14 @@ export namespace workflowexecutions_v1 { * The call logging level associated to this execution. */ callLogLevel?: string | null; + /** + * Output only. Marks the creation of the execution. + */ + createTime?: string | null; + /** + * Optional. If set to true, the execution will not be backlogged when the concurrency quota is exhausted. The backlog execution starts when the concurrency quota becomes available. + */ + disableConcurrencyQuotaOverflowBuffering?: boolean | null; /** * Output only. Measures the duration of the execution. */