Skip to content

Commit

Permalink
feat(workflowexecutions): update the API
Browse files Browse the repository at this point in the history
#### 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
  • Loading branch information
yoshi-automation authored and bcoe committed Feb 2, 2024
1 parent 47a7c9a commit 22dabc5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
12 changes: 11 additions & 1 deletion discovery/workflowexecutions-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@
}
}
},
"revision": "20231211",
"revision": "20240122",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"Callback": {
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions src/apis/workflowexecutions/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit 22dabc5

Please sign in to comment.