Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of workflowexecutions v1 client #20263

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions generated/google-apis-workflowexecutions_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-workflowexecutions_v1

### v0.40.0 (2024-09-22)

* Regenerated from discovery document revision 20240916

### v0.39.0 (2024-08-25)

* Regenerated from discovery document revision 20240813
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ class Execution
# @return [String]
attr_accessor :result

# 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.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module WorkflowexecutionsV1
# Version of the google-apis-workflowexecutions_v1 gem
GEM_VERSION = "0.39.0"
GEM_VERSION = "0.40.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20240813"
REVISION = "20240916"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,10 @@ def get_project_location_workflow_execution(name, view: nil, fields: nil, quota_
# 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"`
# 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"`
# @param [String] order_by
# Optional. Comma-separated list of fields that specify the ordering applied to
# the `[Executions.ListExecutions]` results. By default the ordering is based on
Expand Down
Loading