google-apis-workflowexecutions_v1 0.35.0 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/workflowexecutions_v1/classes.rb +7 -0
- data/lib/google/apis/workflowexecutions_v1/gem_version.rb +2 -2
- data/lib/google/apis/workflowexecutions_v1/representations.rb +1 -0
- data/lib/google/apis/workflowexecutions_v1/service.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 473e9dc375de94be18497f6f9c1fe8736e460f88c2773373b3469abd6744af5a
|
|
4
|
+
data.tar.gz: 4f071228c6cfba7c6c3c0729e07396bb6b34b70bbce6100b6da4a49db17fc3b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0d52b160b2d48aedc46ef7fcaed49bedef3cb1ff2f043a6375d481451541d94da2c21a002f865a6aa7d969cff213cd6c3022861c3b55a306973cbb39e3d850a
|
|
7
|
+
data.tar.gz: '0955226ab7314f1edad90f102a98005edea74776e73b34587d0ad5e1a2657ccac9a8714b5442c323541917b1b5c0f0aca10ae9104e8bc7653acf135a865b06e3'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-workflowexecutions_v1
|
|
2
2
|
|
|
3
|
+
### v0.37.0 (2024-06-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240604
|
|
6
|
+
|
|
7
|
+
### v0.36.0 (2024-06-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20240528
|
|
10
|
+
|
|
3
11
|
### v0.35.0 (2024-05-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated using generator version 0.15.0
|
|
@@ -700,6 +700,12 @@ module Google
|
|
|
700
700
|
class StepEntryMetadata
|
|
701
701
|
include Google::Apis::Core::Hashable
|
|
702
702
|
|
|
703
|
+
# Expected iteration represents the expected number of iterations in the step's
|
|
704
|
+
# progress.
|
|
705
|
+
# Corresponds to the JSON property `expectedIteration`
|
|
706
|
+
# @return [Fixnum]
|
|
707
|
+
attr_accessor :expected_iteration
|
|
708
|
+
|
|
703
709
|
# Progress number represents the current state of the current progress. eg: A
|
|
704
710
|
# step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR.
|
|
705
711
|
# Corresponds to the JSON property `progressNumber`
|
|
@@ -722,6 +728,7 @@ module Google
|
|
|
722
728
|
|
|
723
729
|
# Update properties of this object
|
|
724
730
|
def update!(**args)
|
|
731
|
+
@expected_iteration = args[:expected_iteration] if args.key?(:expected_iteration)
|
|
725
732
|
@progress_number = args[:progress_number] if args.key?(:progress_number)
|
|
726
733
|
@progress_type = args[:progress_type] if args.key?(:progress_type)
|
|
727
734
|
@thread_id = args[:thread_id] if args.key?(:thread_id)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module WorkflowexecutionsV1
|
|
18
18
|
# Version of the google-apis-workflowexecutions_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.37.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240604"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -329,6 +329,7 @@ module Google
|
|
|
329
329
|
class StepEntryMetadata
|
|
330
330
|
# @private
|
|
331
331
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
332
|
+
property :expected_iteration, :numeric_string => true, as: 'expectedIteration'
|
|
332
333
|
property :progress_number, :numeric_string => true, as: 'progressNumber'
|
|
333
334
|
property :progress_type, as: 'progressType'
|
|
334
335
|
property :thread_id, as: 'threadId'
|
|
@@ -234,9 +234,9 @@ module Google
|
|
|
234
234
|
# Optional. Filters applied to the `[Executions.ListExecutions]` results. The
|
|
235
235
|
# following fields are supported for filtering: `executionId`, `state`, `
|
|
236
236
|
# createTime`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `
|
|
237
|
-
# stepName`, and `label`. For details, see AIP-160. For
|
|
238
|
-
# using the Google APIs Explorer: `
|
|
239
|
-
# AND state="FAILED"`
|
|
237
|
+
# stepName`, and `label`. For details, see AIP-160. For more information, see
|
|
238
|
+
# Filter executions. For example, if you are using the Google APIs Explorer: `
|
|
239
|
+
# state="SUCCEEDED"` or `startTime>"2023-08-01" AND state="FAILED"`
|
|
240
240
|
# @param [String] order_by
|
|
241
241
|
# Optional. Comma-separated list of fields that specify the ordering applied to
|
|
242
242
|
# the `[Executions.ListExecutions]` results. By default the ordering is based on
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-workflowexecutions_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workflowexecutions_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1/v0.37.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workflowexecutions_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|