Skip to content

Commit

Permalink
fix(workflowexecutions): update the API
Browse files Browse the repository at this point in the history
#### 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
  • Loading branch information
yoshi-automation authored and sofisl committed Oct 10, 2024
1 parent 1df0546 commit d4a855b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions discovery/workflowexecutions-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
],
"parameters": {
"filter": {
"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\"`",
"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\"`",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -517,7 +517,7 @@
}
}
},
"revision": "20240813",
"revision": "20240916",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"Callback": {
Expand Down Expand Up @@ -682,7 +682,7 @@
"type": "string"
},
"startTime": {
"description": "Output only. Marks the beginning of execution.",
"description": "Output only. Marks the beginning of execution. Note that this will be the same as `createTime` for executions that start immediately.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
Expand Down Expand Up @@ -1009,13 +1009,15 @@
"STATE_UNSPECIFIED",
"STATE_IN_PROGRESS",
"STATE_SUCCEEDED",
"STATE_FAILED"
"STATE_FAILED",
"STATE_CANCELLED"
],
"enumDescriptions": [
"Invalid state.",
"The step entry is in progress.",
"The step entry finished successfully.",
"The step entry failed with an error."
"The step entry failed with an error.",
"The step entry is cancelled."
],
"readOnly": true,
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions src/apis/workflowexecutions/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export namespace workflowexecutions_v1 {
*/
result?: string | null;
/**
* Output only. Marks the beginning of execution.
* Output only. Marks the beginning of execution. Note that this will be the same as `createTime` for executions that start immediately.
*/
startTime?: string | null;
/**
Expand Down Expand Up @@ -1283,7 +1283,7 @@ export namespace workflowexecutions_v1 {
export interface Params$Resource$Projects$Locations$Workflows$Executions$List
extends StandardParameters {
/**
* 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"`
* 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"`
*/
filter?: string;
/**
Expand Down

0 comments on commit d4a855b

Please sign in to comment.