google-apis-workflowexecutions_v1 0.20.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/workflowexecutions_v1/classes.rb +9 -0
- data/lib/google/apis/workflowexecutions_v1/gem_version.rb +3 -3
- data/lib/google/apis/workflowexecutions_v1/representations.rb +1 -0
- data/lib/google/apis/workflowexecutions_v1/service.rb +12 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f796120dd377df207db46c7c07f44a53a465eddaa2b03473820387f76489a08
|
4
|
+
data.tar.gz: 5fef42b6ef5a146512163b982c447f9c24a42c310a04f54b41a7ab92956d0161
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71e8ede84a39a07615f9b72b5524724207c0423f4bc99dae6874173a55dcc601e735e4635fd58249231e3af1bb95b1502f79d1815d8b8d67c1be562b55968686
|
7
|
+
data.tar.gz: 433c8e9c4146aa31a0e0d9903b75e03702ac2b77612363923548daad9bd8f8ceb1d4719b57398b53592f8526b093edbb781574355877df79f96adc3b49524c63
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-workflowexecutions_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2023-02-26)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.12.0
|
6
|
+
|
7
|
+
### v0.21.0 (2023-01-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230117
|
10
|
+
* Regenerated using generator version 0.11.1
|
11
|
+
|
3
12
|
### v0.20.0 (2022-12-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221206
|
@@ -99,6 +99,14 @@ module Google
|
|
99
99
|
# @return [Google::Apis::WorkflowexecutionsV1::Error]
|
100
100
|
attr_accessor :error
|
101
101
|
|
102
|
+
# Labels associated with this execution. Labels can contain at most 64 entries.
|
103
|
+
# Keys and values can be no longer than 63 characters and can only contain
|
104
|
+
# lowercase letters, numeric characters, underscores and dashes. Label keys must
|
105
|
+
# start with a letter. International characters are allowed.
|
106
|
+
# Corresponds to the JSON property `labels`
|
107
|
+
# @return [Hash<String,String>]
|
108
|
+
attr_accessor :labels
|
109
|
+
|
102
110
|
# Output only. The resource name of the execution. Format: projects/`project`/
|
103
111
|
# locations/`location`/workflows/`workflow`/executions/`execution`
|
104
112
|
# Corresponds to the JSON property `name`
|
@@ -142,6 +150,7 @@ module Google
|
|
142
150
|
@duration = args[:duration] if args.key?(:duration)
|
143
151
|
@end_time = args[:end_time] if args.key?(:end_time)
|
144
152
|
@error = args[:error] if args.key?(:error)
|
153
|
+
@labels = args[:labels] if args.key?(:labels)
|
145
154
|
@name = args[:name] if args.key?(:name)
|
146
155
|
@result = args[:result] if args.key?(:result)
|
147
156
|
@start_time = args[:start_time] if args.key?(:start_time)
|
@@ -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.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230117"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -113,6 +113,7 @@ module Google
|
|
113
113
|
property :end_time, as: 'endTime'
|
114
114
|
property :error, as: 'error', class: Google::Apis::WorkflowexecutionsV1::Error, decorator: Google::Apis::WorkflowexecutionsV1::Error::Representation
|
115
115
|
|
116
|
+
hash :labels, as: 'labels'
|
116
117
|
property :name, as: 'name'
|
117
118
|
property :result, as: 'result'
|
118
119
|
property :start_time, as: 'startTime'
|
@@ -194,6 +194,15 @@ module Google
|
|
194
194
|
# @param [String] parent
|
195
195
|
# Required. Name of the workflow for which the executions should be listed.
|
196
196
|
# Format: projects/`project`/locations/`location`/workflows/`workflow`
|
197
|
+
# @param [String] filter
|
198
|
+
# Optional. Filters applied to the [Executions.ListExecutions] results. The
|
199
|
+
# following fields are supported for filtering: executionID, state, startTime,
|
200
|
+
# endTime, duration, workflowRevisionID, stepName, and label.
|
201
|
+
# @param [String] order_by
|
202
|
+
# Optional. The orderding applied to the [Executions.ListExecutions] results. By
|
203
|
+
# default the ordering is based on descending start time. The following fields
|
204
|
+
# are supported for order by: executionID, startTime, endTime, duration, state,
|
205
|
+
# and workflowRevisionID.
|
197
206
|
# @param [Fixnum] page_size
|
198
207
|
# Maximum number of executions to return per call. Max supported value depends
|
199
208
|
# on the selected Execution view: it's 1000 for BASIC and 100 for FULL. The
|
@@ -223,11 +232,13 @@ module Google
|
|
223
232
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
224
233
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
225
234
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
226
|
-
def list_project_location_workflow_executions(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
235
|
+
def list_project_location_workflow_executions(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
227
236
|
command = make_simple_command(:get, 'v1/{+parent}/executions', options)
|
228
237
|
command.response_representation = Google::Apis::WorkflowexecutionsV1::ListExecutionsResponse::Representation
|
229
238
|
command.response_class = Google::Apis::WorkflowexecutionsV1::ListExecutionsResponse
|
230
239
|
command.params['parent'] = parent unless parent.nil?
|
240
|
+
command.query['filter'] = filter unless filter.nil?
|
241
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
231
242
|
command.query['pageSize'] = page_size unless page_size.nil?
|
232
243
|
command.query['pageToken'] = page_token unless page_token.nil?
|
233
244
|
command.query['view'] = view unless view.nil?
|
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.22.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: 2023-
|
11
|
+
date: 2023-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.22.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Workflow Executions API V1
|