google-apis-workflowexecutions_v1beta 0.14.0 → 0.16.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed4cd6a6343ece3820d6cbe40ba3b49a3b84cb18614bbdbef64742c662cc2e61
4
- data.tar.gz: 4986923343bf70251efa7f9a99c7bb7d24f6adb4a1ea0fd9deb305abaebbbd9d
3
+ metadata.gz: fc4eabf0398a886b03381b676e4e0353a7e70dcc55379fa23fa5cfd7b0dde925
4
+ data.tar.gz: '0449567a4bb005eba85b27e4f04ae26ad56d106659a5deb01820dfb8fb36a2d1'
5
5
  SHA512:
6
- metadata.gz: f01553633b5bb5dba8e7facae80d8863124b04df0e2895f559ae130a14aa91029922a7cde11c6cd4a0d7368b5d293b4729599e9923d806ae7fd0ed43521a7c32
7
- data.tar.gz: d79c7a93acdf06a20e685a5f96c7b7bee4047b42d6812ea8744fa49696965d688fe30873c686fb94e462f5632a8564a4c71072020cdd32c4b919aebf2bc56478
6
+ metadata.gz: d56e341ea29f526a4a155bbb8b90957331edde1ce3054f61a22101dfa5e7791e99769cc320db29c93a09d5fc7fa3d4b2a0ff854a37ffad40314d354383452f9e
7
+ data.tar.gz: 45b0edf4ad11c4afa8ab6ad92eefbea980d804cdb3158df51c02b3c649ed4bf83e7fc93ed462c012656c09161076e28856df6640c754387cde3dd4ceb5c71ed6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-workflowexecutions_v1beta
2
2
 
3
+ ### v0.16.0 (2022-09-17)
4
+
5
+ * Regenerated from discovery document revision 20220830
6
+ * Regenerated using generator version 0.9.0
7
+
8
+ ### v0.15.0 (2022-06-30)
9
+
10
+ * Regenerated using generator version 0.8.0
11
+
3
12
  ### v0.14.0 (2022-06-18)
4
13
 
5
14
  * Regenerated using generator version 0.7.0
@@ -116,6 +116,19 @@ module Google
116
116
  # @return [String]
117
117
  attr_accessor :state
118
118
 
119
+ # > **Preview:** This field is covered by the > [Pre-GA Offerings Terms](https://
120
+ # cloud.google.com/terms/service-terms) of > the Google Cloud Terms of Service.
121
+ # Pre-GA features might have limited > support, and changes to pre-GA features
122
+ # might not be compatible with > other pre-GA versions. For more information,
123
+ # see the > [launch stage descriptions](https://cloud.google.com/products#
124
+ # product-launch-stages). > This field is usable only if your project has access.
125
+ # See the > [access request page](https://docs.google.com/forms/d/e/
126
+ # 1FAIpQLSdgwrSV8Y4xZv_tvI6X2JEGX1-ty9yizv3_EAOVHWVKXvDLEA/viewform). Represents
127
+ # the current status of this execution.
128
+ # Corresponds to the JSON property `status`
129
+ # @return [Google::Apis::WorkflowexecutionsV1beta::Status]
130
+ attr_accessor :status
131
+
119
132
  # Output only. Revision of the workflow this execution is using.
120
133
  # Corresponds to the JSON property `workflowRevisionId`
121
134
  # @return [String]
@@ -135,6 +148,7 @@ module Google
135
148
  @result = args[:result] if args.key?(:result)
136
149
  @start_time = args[:start_time] if args.key?(:start_time)
137
150
  @state = args[:state] if args.key?(:state)
151
+ @status = args[:status] if args.key?(:status)
138
152
  @workflow_revision_id = args[:workflow_revision_id] if args.key?(:workflow_revision_id)
139
153
  end
140
154
  end
@@ -248,6 +262,63 @@ module Google
248
262
  @step = args[:step] if args.key?(:step)
249
263
  end
250
264
  end
265
+
266
+ # > **Preview:** This field is covered by the > [Pre-GA Offerings Terms](https://
267
+ # cloud.google.com/terms/service-terms) of > the Google Cloud Terms of Service.
268
+ # Pre-GA features might have limited > support, and changes to pre-GA features
269
+ # might not be compatible with > other pre-GA versions. For more information,
270
+ # see the > [launch stage descriptions](https://cloud.google.com/products#
271
+ # product-launch-stages). > This field is usable only if your project has access.
272
+ # See the > [access request page](https://docs.google.com/forms/d/e/
273
+ # 1FAIpQLSdgwrSV8Y4xZv_tvI6X2JEGX1-ty9yizv3_EAOVHWVKXvDLEA/viewform). Represents
274
+ # the current status of this execution.
275
+ class Status
276
+ include Google::Apis::Core::Hashable
277
+
278
+ # A list of currently executing or last executed step names for the workflow
279
+ # execution currently running. If the workflow has succeeded or failed, this is
280
+ # the last attempted or executed step. Presently, if the current step is inside
281
+ # a subworkflow, the list only includes that step. In the future, the list will
282
+ # contain items for each step in the call stack, starting with the outermost
283
+ # step in the `main` subworkflow, and ending with the most deeply nested step.
284
+ # Corresponds to the JSON property `currentSteps`
285
+ # @return [Array<Google::Apis::WorkflowexecutionsV1beta::Step>]
286
+ attr_accessor :current_steps
287
+
288
+ def initialize(**args)
289
+ update!(**args)
290
+ end
291
+
292
+ # Update properties of this object
293
+ def update!(**args)
294
+ @current_steps = args[:current_steps] if args.key?(:current_steps)
295
+ end
296
+ end
297
+
298
+ # Represents a step of the workflow this execution is running.
299
+ class Step
300
+ include Google::Apis::Core::Hashable
301
+
302
+ # Name of a routine within the workflow.
303
+ # Corresponds to the JSON property `routine`
304
+ # @return [String]
305
+ attr_accessor :routine
306
+
307
+ # Name of a step within the routine.
308
+ # Corresponds to the JSON property `step`
309
+ # @return [String]
310
+ attr_accessor :step
311
+
312
+ def initialize(**args)
313
+ update!(**args)
314
+ end
315
+
316
+ # Update properties of this object
317
+ def update!(**args)
318
+ @routine = args[:routine] if args.key?(:routine)
319
+ @step = args[:step] if args.key?(:step)
320
+ end
321
+ end
251
322
  end
252
323
  end
253
324
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WorkflowexecutionsV1beta
18
18
  # Version of the google-apis-workflowexecutions_v1beta gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211019"
25
+ REVISION = "20220830"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,18 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class Status
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class Step
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class CancelExecutionRequest
68
80
  # @private
69
81
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -92,6 +104,8 @@ module Google
92
104
  property :result, as: 'result'
93
105
  property :start_time, as: 'startTime'
94
106
  property :state, as: 'state'
107
+ property :status, as: 'status', class: Google::Apis::WorkflowexecutionsV1beta::Status, decorator: Google::Apis::WorkflowexecutionsV1beta::Status::Representation
108
+
95
109
  property :workflow_revision_id, as: 'workflowRevisionId'
96
110
  end
97
111
  end
@@ -131,6 +145,22 @@ module Google
131
145
  property :step, as: 'step'
132
146
  end
133
147
  end
148
+
149
+ class Status
150
+ # @private
151
+ class Representation < Google::Apis::Core::JsonRepresentation
152
+ collection :current_steps, as: 'currentSteps', class: Google::Apis::WorkflowexecutionsV1beta::Step, decorator: Google::Apis::WorkflowexecutionsV1beta::Step::Representation
153
+
154
+ end
155
+ end
156
+
157
+ class Step
158
+ # @private
159
+ class Representation < Google::Apis::Core::JsonRepresentation
160
+ property :routine, as: 'routine'
161
+ property :step, as: 'step'
162
+ end
163
+ end
134
164
  end
135
165
  end
136
166
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workflowexecutions_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.16.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: 2022-06-20 00:00:00.000000000 Z
11
+ date: 2022-09-19 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.6'
19
+ version: 0.7.2
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.6'
29
+ version: 0.7.2
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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1beta/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1beta/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workflowexecutions_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []