google-apis-workflowexecutions_v1 0.28.0 → 0.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1def89fcf7428c543ecf9149b5108dce91d116a594d10d31cf0b259c900a7724
4
- data.tar.gz: 7e759e41ed9fd00e6405fd6e4236752a4700bee5a3ef3c18f80dc73fc7544d2c
3
+ metadata.gz: a1b030991a167f8019983a359d2402e6361a960bb3b9e1b9fcb478049504f0ac
4
+ data.tar.gz: 8596604a5b04f5a26b4dcd98abf34443f256f828dbbee4d2dfd11a6c8d29f122
5
5
  SHA512:
6
- metadata.gz: 44f45f6be0c2d75580fdae85b85a36c7216fd7ce252d7732b45a6e8a8804c27772934a7c5cc9b7df7c576f8da1b1cca2c8e5dfcc3468cbaace0f729dda1c170d
7
- data.tar.gz: 91954160c3a8851a488c178383d025ce6b1a910b686e08479ee821a1be95242405c4b277d1126b7e36c55c1c3caccb8d77b1c547b954ef555bd4703da1091de3
6
+ metadata.gz: a7c8bfb64f926f98ccdda6d99d46bc4283623d34b90aeda9f157da6e68e6312b3cb148c07e0d25eb2208317dd4b8d643a92f7abcd2b5f8b3c60976e4236d1958
7
+ data.tar.gz: 58e4e9287fa073bf802e7bcb1bc801613a4e70251b8951599c865e3b5a9dbb7be90b30578457b1e4df85e8030f4ad20adecedba5e1c1bfbb07a5708938b4550c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workflowexecutions_v1
2
2
 
3
+ ### v0.30.0 (2023-12-10)
4
+
5
+ * Regenerated from discovery document revision 20231128
6
+
7
+ ### v0.29.0 (2023-10-29)
8
+
9
+ * Regenerated from discovery document revision 20231017
10
+
3
11
  ### v0.28.0 (2023-10-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20230912
@@ -106,6 +106,25 @@ module Google
106
106
  end
107
107
  end
108
108
 
109
+ # Exception describes why the step entry failed.
110
+ class Exception
111
+ include Google::Apis::Core::Hashable
112
+
113
+ # Error message represented as a JSON string.
114
+ # Corresponds to the JSON property `payload`
115
+ # @return [String]
116
+ attr_accessor :payload
117
+
118
+ def initialize(**args)
119
+ update!(**args)
120
+ end
121
+
122
+ # Update properties of this object
123
+ def update!(**args)
124
+ @payload = args[:payload] if args.key?(:payload)
125
+ end
126
+ end
127
+
109
128
  # A running instance of a [Workflow](/workflows/docs/reference/rest/v1/projects.
110
129
  # locations.workflows).
111
130
  class Execution
@@ -280,6 +299,80 @@ module Google
280
299
  end
281
300
  end
282
301
 
302
+ # Response message for ExecutionHistory.ListStepEntries.
303
+ class ListStepEntriesResponse
304
+ include Google::Apis::Core::Hashable
305
+
306
+ # A token to retrieve next page of results. Pass this value in the
307
+ # ListStepEntriesRequest.page_token field in the subsequent call to `
308
+ # ListStepEntries` method to retrieve the next page of results.
309
+ # Corresponds to the JSON property `nextPageToken`
310
+ # @return [String]
311
+ attr_accessor :next_page_token
312
+
313
+ # The list of entries.
314
+ # Corresponds to the JSON property `stepEntries`
315
+ # @return [Array<Google::Apis::WorkflowexecutionsV1::StepEntry>]
316
+ attr_accessor :step_entries
317
+
318
+ # Indicates the total number of StepEntries that matched the request filter. For
319
+ # running executions, this number shows the number of StepEntries that are
320
+ # executed thus far.
321
+ # Corresponds to the JSON property `totalSize`
322
+ # @return [Fixnum]
323
+ attr_accessor :total_size
324
+
325
+ def initialize(**args)
326
+ update!(**args)
327
+ end
328
+
329
+ # Update properties of this object
330
+ def update!(**args)
331
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
332
+ @step_entries = args[:step_entries] if args.key?(:step_entries)
333
+ @total_size = args[:total_size] if args.key?(:total_size)
334
+ end
335
+ end
336
+
337
+ # NavigationInfo describes what steps if any come before or after this step, or
338
+ # what steps are parents or children of this step.
339
+ class NavigationInfo
340
+ include Google::Apis::Core::Hashable
341
+
342
+ # Step entries that can be reached by "stepping into" e.g. a subworkflow call.
343
+ # Corresponds to the JSON property `children`
344
+ # @return [Array<Fixnum>]
345
+ attr_accessor :children
346
+
347
+ # The index of the next step in the current workflow, if any.
348
+ # Corresponds to the JSON property `next`
349
+ # @return [Fixnum]
350
+ attr_accessor :next
351
+
352
+ # The step entry, if any, that can be reached by "stepping out" of the current
353
+ # workflow being executed.
354
+ # Corresponds to the JSON property `parent`
355
+ # @return [Fixnum]
356
+ attr_accessor :parent
357
+
358
+ # The index of the previous step in the current workflow, if any.
359
+ # Corresponds to the JSON property `previous`
360
+ # @return [Fixnum]
361
+ attr_accessor :previous
362
+
363
+ def initialize(**args)
364
+ update!(**args)
365
+ end
366
+
367
+ # Update properties of this object
368
+ def update!(**args)
369
+ @children = args[:children] if args.key?(:children)
370
+ @next = args[:next] if args.key?(:next)
371
+ @parent = args[:parent] if args.key?(:parent)
372
+ @previous = args[:previous] if args.key?(:previous)
373
+ end
374
+ end
375
+
283
376
  # Position contains source position information about the stack trace element
284
377
  # such as line number, column number and length of the code block in bytes.
285
378
  class Position
@@ -502,6 +595,124 @@ module Google
502
595
  end
503
596
  end
504
597
 
598
+ # An StepEntry contains debugging information for a step transition in a
599
+ # workflow execution.
600
+ class StepEntry
601
+ include Google::Apis::Core::Hashable
602
+
603
+ # Output only. The creation time of the step entry.
604
+ # Corresponds to the JSON property `createTime`
605
+ # @return [String]
606
+ attr_accessor :create_time
607
+
608
+ # Output only. The numeric ID of this step entry, used for navigation.
609
+ # Corresponds to the JSON property `entryId`
610
+ # @return [Fixnum]
611
+ attr_accessor :entry_id
612
+
613
+ # Exception describes why the step entry failed.
614
+ # Corresponds to the JSON property `exception`
615
+ # @return [Google::Apis::WorkflowexecutionsV1::Exception]
616
+ attr_accessor :exception
617
+
618
+ # Output only. The full resource name of the step entry. Each step entry has a
619
+ # unique entry ID, which is a monotonically increasing counter. Step entry names
620
+ # have the format: `projects/`project`/locations/`location`/workflows/`workflow`/
621
+ # executions/`execution`/stepEntries/`step_entry``.
622
+ # Corresponds to the JSON property `name`
623
+ # @return [String]
624
+ attr_accessor :name
625
+
626
+ # NavigationInfo describes what steps if any come before or after this step, or
627
+ # what steps are parents or children of this step.
628
+ # Corresponds to the JSON property `navigationInfo`
629
+ # @return [Google::Apis::WorkflowexecutionsV1::NavigationInfo]
630
+ attr_accessor :navigation_info
631
+
632
+ # Output only. The name of the routine this step entry belongs to. A routine
633
+ # name is the subworkflow name defined in the YAML source code. The top level
634
+ # routine name is `main`.
635
+ # Corresponds to the JSON property `routine`
636
+ # @return [String]
637
+ attr_accessor :routine
638
+
639
+ # Output only. The state of the step entry.
640
+ # Corresponds to the JSON property `state`
641
+ # @return [String]
642
+ attr_accessor :state
643
+
644
+ # Output only. The name of the step this step entry belongs to.
645
+ # Corresponds to the JSON property `step`
646
+ # @return [String]
647
+ attr_accessor :step
648
+
649
+ # StepEntryMetadata contains metadata information about this step.
650
+ # Corresponds to the JSON property `stepEntryMetadata`
651
+ # @return [Google::Apis::WorkflowexecutionsV1::StepEntryMetadata]
652
+ attr_accessor :step_entry_metadata
653
+
654
+ # Output only. The type of the step this step entry belongs to.
655
+ # Corresponds to the JSON property `stepType`
656
+ # @return [String]
657
+ attr_accessor :step_type
658
+
659
+ # Output only. The most recently updated time of the step entry.
660
+ # Corresponds to the JSON property `updateTime`
661
+ # @return [String]
662
+ attr_accessor :update_time
663
+
664
+ def initialize(**args)
665
+ update!(**args)
666
+ end
667
+
668
+ # Update properties of this object
669
+ def update!(**args)
670
+ @create_time = args[:create_time] if args.key?(:create_time)
671
+ @entry_id = args[:entry_id] if args.key?(:entry_id)
672
+ @exception = args[:exception] if args.key?(:exception)
673
+ @name = args[:name] if args.key?(:name)
674
+ @navigation_info = args[:navigation_info] if args.key?(:navigation_info)
675
+ @routine = args[:routine] if args.key?(:routine)
676
+ @state = args[:state] if args.key?(:state)
677
+ @step = args[:step] if args.key?(:step)
678
+ @step_entry_metadata = args[:step_entry_metadata] if args.key?(:step_entry_metadata)
679
+ @step_type = args[:step_type] if args.key?(:step_type)
680
+ @update_time = args[:update_time] if args.key?(:update_time)
681
+ end
682
+ end
683
+
684
+ # StepEntryMetadata contains metadata information about this step.
685
+ class StepEntryMetadata
686
+ include Google::Apis::Core::Hashable
687
+
688
+ # Progress number represents the current state of the current progress. eg: A
689
+ # step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR.
690
+ # Corresponds to the JSON property `progressNumber`
691
+ # @return [Fixnum]
692
+ attr_accessor :progress_number
693
+
694
+ # Progress type of this step entry.
695
+ # Corresponds to the JSON property `progressType`
696
+ # @return [String]
697
+ attr_accessor :progress_type
698
+
699
+ # Child thread id that this step entry belongs to.
700
+ # Corresponds to the JSON property `threadId`
701
+ # @return [String]
702
+ attr_accessor :thread_id
703
+
704
+ def initialize(**args)
705
+ update!(**args)
706
+ end
707
+
708
+ # Update properties of this object
709
+ def update!(**args)
710
+ @progress_number = args[:progress_number] if args.key?(:progress_number)
711
+ @progress_type = args[:progress_type] if args.key?(:progress_type)
712
+ @thread_id = args[:thread_id] if args.key?(:thread_id)
713
+ end
714
+ end
715
+
505
716
  # Request for the TriggerPubsubExecution method.
506
717
  class TriggerPubsubExecutionRequest
507
718
  include Google::Apis::Core::Hashable
@@ -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.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230912"
25
+ REVISION = "20231128"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class Exception
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class Execution
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -64,6 +70,18 @@ module Google
64
70
  include Google::Apis::Core::JsonObjectSupport
65
71
  end
66
72
 
73
+ class ListStepEntriesResponse
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
79
+ class NavigationInfo
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
67
85
  class Position
68
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
87
 
@@ -106,6 +124,18 @@ module Google
106
124
  include Google::Apis::Core::JsonObjectSupport
107
125
  end
108
126
 
127
+ class StepEntry
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class StepEntryMetadata
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
109
139
  class TriggerPubsubExecutionRequest
110
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
141
 
@@ -138,6 +168,13 @@ module Google
138
168
  end
139
169
  end
140
170
 
171
+ class Exception
172
+ # @private
173
+ class Representation < Google::Apis::Core::JsonRepresentation
174
+ property :payload, as: 'payload'
175
+ end
176
+ end
177
+
141
178
  class Execution
142
179
  # @private
143
180
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -185,6 +222,26 @@ module Google
185
222
  end
186
223
  end
187
224
 
225
+ class ListStepEntriesResponse
226
+ # @private
227
+ class Representation < Google::Apis::Core::JsonRepresentation
228
+ property :next_page_token, as: 'nextPageToken'
229
+ collection :step_entries, as: 'stepEntries', class: Google::Apis::WorkflowexecutionsV1::StepEntry, decorator: Google::Apis::WorkflowexecutionsV1::StepEntry::Representation
230
+
231
+ property :total_size, as: 'totalSize'
232
+ end
233
+ end
234
+
235
+ class NavigationInfo
236
+ # @private
237
+ class Representation < Google::Apis::Core::JsonRepresentation
238
+ collection :children, as: 'children'
239
+ property :next, :numeric_string => true, as: 'next'
240
+ property :parent, :numeric_string => true, as: 'parent'
241
+ property :previous, :numeric_string => true, as: 'previous'
242
+ end
243
+ end
244
+
188
245
  class Position
189
246
  # @private
190
247
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -247,6 +304,35 @@ module Google
247
304
  end
248
305
  end
249
306
 
307
+ class StepEntry
308
+ # @private
309
+ class Representation < Google::Apis::Core::JsonRepresentation
310
+ property :create_time, as: 'createTime'
311
+ property :entry_id, :numeric_string => true, as: 'entryId'
312
+ property :exception, as: 'exception', class: Google::Apis::WorkflowexecutionsV1::Exception, decorator: Google::Apis::WorkflowexecutionsV1::Exception::Representation
313
+
314
+ property :name, as: 'name'
315
+ property :navigation_info, as: 'navigationInfo', class: Google::Apis::WorkflowexecutionsV1::NavigationInfo, decorator: Google::Apis::WorkflowexecutionsV1::NavigationInfo::Representation
316
+
317
+ property :routine, as: 'routine'
318
+ property :state, as: 'state'
319
+ property :step, as: 'step'
320
+ property :step_entry_metadata, as: 'stepEntryMetadata', class: Google::Apis::WorkflowexecutionsV1::StepEntryMetadata, decorator: Google::Apis::WorkflowexecutionsV1::StepEntryMetadata::Representation
321
+
322
+ property :step_type, as: 'stepType'
323
+ property :update_time, as: 'updateTime'
324
+ end
325
+ end
326
+
327
+ class StepEntryMetadata
328
+ # @private
329
+ class Representation < Google::Apis::Core::JsonRepresentation
330
+ property :progress_number, :numeric_string => true, as: 'progressNumber'
331
+ property :progress_type, as: 'progressType'
332
+ property :thread_id, as: 'threadId'
333
+ end
334
+ end
335
+
250
336
  class TriggerPubsubExecutionRequest
251
337
  # @private
252
338
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -118,7 +118,8 @@ module Google
118
118
  execute_or_queue_command(command, &block)
119
119
  end
120
120
 
121
- # Creates a new execution using the latest revision of the given workflow.
121
+ # Creates a new execution using the latest revision of the given workflow. For
122
+ # more information, see Execute a workflow.
122
123
  # @param [String] parent
123
124
  # Required. Name of the workflow for which an execution should be created.
124
125
  # Format: projects/`project`/locations/`location`/workflows/`workflow` The
@@ -228,14 +229,18 @@ module Google
228
229
  # Required. Name of the workflow for which the executions should be listed.
229
230
  # Format: projects/`project`/locations/`location`/workflows/`workflow`
230
231
  # @param [String] filter
231
- # Optional. Filters applied to the [Executions.ListExecutions] results. The
232
- # following fields are supported for filtering: executionID, state, startTime,
233
- # endTime, duration, workflowRevisionID, stepName, and label.
232
+ # Optional. Filters applied to the `[Executions.ListExecutions]` results. The
233
+ # following fields are supported for filtering: `executionId`, `state`, `
234
+ # startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, and `
235
+ # label`. For details, see AIP-160. For example, if you are using the Google
236
+ # APIs Explorer: `state="SUCCEEDED"` or `startTime>"2023-08-01" AND state="
237
+ # FAILED"`
234
238
  # @param [String] order_by
235
- # Optional. The ordering applied to the [Executions.ListExecutions] results. By
236
- # default the ordering is based on descending start time. The following fields
237
- # are supported for order by: executionID, startTime, endTime, duration, state,
238
- # and workflowRevisionID.
239
+ # Optional. Comma-separated list of fields that specify the ordering applied to
240
+ # the `[Executions.ListExecutions]` results. By default the ordering is based on
241
+ # descending `startTime`. The following fields are supported for ordering: `
242
+ # executionId`, `state`, `startTime`, `endTime`, `duration`, and `
243
+ # workflowRevisionId`. For details, see AIP-132.
239
244
  # @param [Fixnum] page_size
240
245
  # Maximum number of executions to return per call. Max supported value depends
241
246
  # on the selected Execution view: it's 1000 for BASIC and 100 for FULL. The
@@ -324,6 +329,99 @@ module Google
324
329
  command.query['quotaUser'] = quota_user unless quota_user.nil?
325
330
  execute_or_queue_command(command, &block)
326
331
  end
332
+
333
+ # Gets a step entry.
334
+ # @param [String] name
335
+ # Required. The name of the step entry to retrieve. Format: projects/`project`/
336
+ # locations/`location`/workflows/`workflow`/executions/`execution`/stepEntries/`
337
+ # step_entry`
338
+ # @param [String] fields
339
+ # Selector specifying which fields to include in a partial response.
340
+ # @param [String] quota_user
341
+ # Available to use for quota purposes for server-side applications. Can be any
342
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
343
+ # @param [Google::Apis::RequestOptions] options
344
+ # Request-specific options
345
+ #
346
+ # @yield [result, err] Result & error if block supplied
347
+ # @yieldparam result [Google::Apis::WorkflowexecutionsV1::StepEntry] parsed result object
348
+ # @yieldparam err [StandardError] error object if request failed
349
+ #
350
+ # @return [Google::Apis::WorkflowexecutionsV1::StepEntry]
351
+ #
352
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
353
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
354
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
355
+ def get_project_location_workflow_execution_step_entry(name, fields: nil, quota_user: nil, options: nil, &block)
356
+ command = make_simple_command(:get, 'v1/{+name}', options)
357
+ command.response_representation = Google::Apis::WorkflowexecutionsV1::StepEntry::Representation
358
+ command.response_class = Google::Apis::WorkflowexecutionsV1::StepEntry
359
+ command.params['name'] = name unless name.nil?
360
+ command.query['fields'] = fields unless fields.nil?
361
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
362
+ execute_or_queue_command(command, &block)
363
+ end
364
+
365
+ # Lists step entries for the corresponding workflow execution. Returned entries
366
+ # are ordered by their create_time.
367
+ # @param [String] parent
368
+ # Required. Name of the workflow execution to list entries for. Format: projects/
369
+ # `project`/locations/`location`/workflows/`workflow`/executions/`execution`/
370
+ # stepEntries/
371
+ # @param [String] filter
372
+ # Optional. Filters applied to the `[StepEntries.ListStepEntries]` results. The
373
+ # following fields are supported for filtering: `entryId`, `createTime`, `
374
+ # updateTime`, `routine`, `step`, `stepType`, `state`. For details, see AIP-160.
375
+ # For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or
376
+ # `createTime>"2023-08-01" AND state="FAILED"`
377
+ # @param [String] order_by
378
+ # Optional. Comma-separated list of fields that specify the ordering applied to
379
+ # the `[StepEntries.ListStepEntries]` results. By default the ordering is based
380
+ # on ascending `entryId`. The following fields are supported for ordering: `
381
+ # entryId`, `createTime`, `updateTime`, `routine`, `step`, `stepType`, `state`.
382
+ # For details, see AIP-132.
383
+ # @param [Fixnum] page_size
384
+ # Optional. Number of step entries to return per call. The default max is 1000.
385
+ # @param [String] page_token
386
+ # Optional. A page token, received from a previous `ListStepEntries` call.
387
+ # Provide this to retrieve the subsequent page. When paginating, all other
388
+ # parameters provided to `ListStepEntries` must match the call that provided the
389
+ # page token.
390
+ # @param [Fixnum] skip
391
+ # Optional. The number of step entries to skip. It can be used with or without a
392
+ # pageToken. If used with a pageToken, then it indicates the number of step
393
+ # entries to skip starting from the requested page.
394
+ # @param [String] fields
395
+ # Selector specifying which fields to include in a partial response.
396
+ # @param [String] quota_user
397
+ # Available to use for quota purposes for server-side applications. Can be any
398
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
399
+ # @param [Google::Apis::RequestOptions] options
400
+ # Request-specific options
401
+ #
402
+ # @yield [result, err] Result & error if block supplied
403
+ # @yieldparam result [Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse] parsed result object
404
+ # @yieldparam err [StandardError] error object if request failed
405
+ #
406
+ # @return [Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse]
407
+ #
408
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
409
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
410
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
411
+ def list_project_location_workflow_execution_step_entries(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, skip: nil, fields: nil, quota_user: nil, options: nil, &block)
412
+ command = make_simple_command(:get, 'v1/{+parent}/stepEntries', options)
413
+ command.response_representation = Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse::Representation
414
+ command.response_class = Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse
415
+ command.params['parent'] = parent unless parent.nil?
416
+ command.query['filter'] = filter unless filter.nil?
417
+ command.query['orderBy'] = order_by unless order_by.nil?
418
+ command.query['pageSize'] = page_size unless page_size.nil?
419
+ command.query['pageToken'] = page_token unless page_token.nil?
420
+ command.query['skip'] = skip unless skip.nil?
421
+ command.query['fields'] = fields unless fields.nil?
422
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
423
+ execute_or_queue_command(command, &block)
424
+ end
327
425
 
328
426
  protected
329
427
 
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.28.0
4
+ version: 0.30.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-10-01 00:00:00.000000000 Z
11
+ date: 2023-12-10 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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1/v0.30.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: []