Skip to content

Commit d4a855b

Browse files
yoshi-automationsofisl
authored andcommitted
fix(workflowexecutions): update the API
#### workflowexecutions:v1 The following keys were changed: - resources.projects.resources.locations.resources.workflows.resources.executions.methods.list.parameters.filter.description - schemas.Execution.properties.startTime.description - schemas.StepEntry.properties.state.enum - schemas.StepEntry.properties.state.enumDescriptions
1 parent 1df0546 commit d4a855b

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

discovery/workflowexecutions-v1.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
],
303303
"parameters": {
304304
"filter": {
305-
"description": "Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are supported for filtering: `executionId`, `state`, `createTime`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, and `label`. For details, see AIP-160. For more information, see Filter executions. For example, if you are using the Google APIs Explorer: `state=\"SUCCEEDED\"` or `startTime>\"2023-08-01\" AND state=\"FAILED\"`",
305+
"description": "Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are supported for filtering: `executionId`, `state`, `createTime`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, `label`, and `disableConcurrencyQuotaOverflowBuffering`. For details, see AIP-160. For more information, see Filter executions. For example, if you are using the Google APIs Explorer: `state=\"SUCCEEDED\"` or `startTime>\"2023-08-01\" AND state=\"FAILED\"`",
306306
"location": "query",
307307
"type": "string"
308308
},
@@ -517,7 +517,7 @@
517517
}
518518
}
519519
},
520-
"revision": "20240813",
520+
"revision": "20240916",
521521
"rootUrl": "https://workflowexecutions.googleapis.com/",
522522
"schemas": {
523523
"Callback": {
@@ -682,7 +682,7 @@
682682
"type": "string"
683683
},
684684
"startTime": {
685-
"description": "Output only. Marks the beginning of execution.",
685+
"description": "Output only. Marks the beginning of execution. Note that this will be the same as `createTime` for executions that start immediately.",
686686
"format": "google-datetime",
687687
"readOnly": true,
688688
"type": "string"
@@ -1009,13 +1009,15 @@
10091009
"STATE_UNSPECIFIED",
10101010
"STATE_IN_PROGRESS",
10111011
"STATE_SUCCEEDED",
1012-
"STATE_FAILED"
1012+
"STATE_FAILED",
1013+
"STATE_CANCELLED"
10131014
],
10141015
"enumDescriptions": [
10151016
"Invalid state.",
10161017
"The step entry is in progress.",
10171018
"The step entry finished successfully.",
1018-
"The step entry failed with an error."
1019+
"The step entry failed with an error.",
1020+
"The step entry is cancelled."
10191021
],
10201022
"readOnly": true,
10211023
"type": "string"

src/apis/workflowexecutions/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export namespace workflowexecutions_v1 {
232232
*/
233233
result?: string | null;
234234
/**
235-
* Output only. Marks the beginning of execution.
235+
* Output only. Marks the beginning of execution. Note that this will be the same as `createTime` for executions that start immediately.
236236
*/
237237
startTime?: string | null;
238238
/**
@@ -1283,7 +1283,7 @@ export namespace workflowexecutions_v1 {
12831283
export interface Params$Resource$Projects$Locations$Workflows$Executions$List
12841284
extends StandardParameters {
12851285
/**
1286-
* Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are supported for filtering: `executionId`, `state`, `createTime`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, and `label`. For details, see AIP-160. For more information, see Filter executions. For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or `startTime\>"2023-08-01" AND state="FAILED"`
1286+
* Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are supported for filtering: `executionId`, `state`, `createTime`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, `label`, and `disableConcurrencyQuotaOverflowBuffering`. For details, see AIP-160. For more information, see Filter executions. For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or `startTime\>"2023-08-01" AND state="FAILED"`
12871287
*/
12881288
filter?: string;
12891289
/**

0 commit comments

Comments
 (0)