google-apis-dataflow_v1b3 0.24.0 → 0.27.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: 771ba032068be147e11debd744d854fe51b0efba3fa543ed030dbcb6df27f8bb
4
- data.tar.gz: a676e8ba3f1df28e5bf434da41fa66b9d69e8d4f518462e395758adbbde419ea
3
+ metadata.gz: af6461050ecc687ed401f0e61fa89b51097fd25d1cca002405276ae77a2a5590
4
+ data.tar.gz: fccbcdf088683572ab84c558c0232c2c0b876bc2566370a5d29d87f9b49ffc59
5
5
  SHA512:
6
- metadata.gz: f1e1c248463f19640aa7c2459ecd7b5c4403414939a6ebde7f7f9bd6347c4f93636d7eb631e07db986f6740e803b46bb487202e1d02596e81e14cb0d2dd1430b
7
- data.tar.gz: fb58cb086597c6439b96dfe08d952eef6759c7b978bf0ebb69f73a359057f5262346c5a73d9a5924b5b220ee76fb4c62ce2ec6429161da2b46fc7103ef5db99a
6
+ metadata.gz: 02a726b0f2a32b44876b443a1cb1aab431101d287087c7f10db68a83398494b662d876e32a6a3fdaeee79934ba99f45248b386c64d6e22e09ce4e6c9683053ad
7
+ data.tar.gz: 113ada6902811d87a0c7479c58e9a338b22bf35d8df4923257887fd30b1a0fd76a7fd565deb0dd15f2cca210b17fc90ad231ed6290f976b9a427f05ce71cb68a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.27.0 (2022-09-10)
4
+
5
+ * Regenerated from discovery document revision 20220904
6
+
7
+ ### v0.26.0 (2022-08-18)
8
+
9
+ * Regenerated from discovery document revision 20220812
10
+
11
+ ### v0.25.0 (2022-08-11)
12
+
13
+ * Regenerated from discovery document revision 20220806
14
+ * Regenerated using generator version 0.9.0
15
+
3
16
  ### v0.24.0 (2022-07-02)
4
17
 
5
18
  * Regenerated from discovery document revision 20220629
@@ -1501,6 +1501,12 @@ module Google
1501
1501
  attr_accessor :dump_heap_on_oom
1502
1502
  alias_method :dump_heap_on_oom?, :dump_heap_on_oom
1503
1503
 
1504
+ # If true serial port logging will be enabled for the launcher VM.
1505
+ # Corresponds to the JSON property `enableLauncherVmSerialPortLogging`
1506
+ # @return [Boolean]
1507
+ attr_accessor :enable_launcher_vm_serial_port_logging
1508
+ alias_method :enable_launcher_vm_serial_port_logging?, :enable_launcher_vm_serial_port_logging
1509
+
1504
1510
  # Whether to enable Streaming Engine for the job.
1505
1511
  # Corresponds to the JSON property `enableStreamingEngine`
1506
1512
  # @return [Boolean]
@@ -1628,6 +1634,7 @@ module Google
1628
1634
  @autoscaling_algorithm = args[:autoscaling_algorithm] if args.key?(:autoscaling_algorithm)
1629
1635
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1630
1636
  @dump_heap_on_oom = args[:dump_heap_on_oom] if args.key?(:dump_heap_on_oom)
1637
+ @enable_launcher_vm_serial_port_logging = args[:enable_launcher_vm_serial_port_logging] if args.key?(:enable_launcher_vm_serial_port_logging)
1631
1638
  @enable_streaming_engine = args[:enable_streaming_engine] if args.key?(:enable_streaming_engine)
1632
1639
  @flexrs_goal = args[:flexrs_goal] if args.key?(:flexrs_goal)
1633
1640
  @ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
@@ -1821,6 +1828,25 @@ module Google
1821
1828
  end
1822
1829
  end
1823
1830
 
1831
+ # Information useful for debugging a hot key detection.
1832
+ class HotKeyDebuggingInfo
1833
+ include Google::Apis::Core::Hashable
1834
+
1835
+ # Debugging information for each detected hot key. Keyed by a hash of the key.
1836
+ # Corresponds to the JSON property `detectedHotKeys`
1837
+ # @return [Hash<String,Google::Apis::DataflowV1b3::HotKeyInfo>]
1838
+ attr_accessor :detected_hot_keys
1839
+
1840
+ def initialize(**args)
1841
+ update!(**args)
1842
+ end
1843
+
1844
+ # Update properties of this object
1845
+ def update!(**args)
1846
+ @detected_hot_keys = args[:detected_hot_keys] if args.key?(:detected_hot_keys)
1847
+ end
1848
+ end
1849
+
1824
1850
  # Proto describing a hot key detected on a given WorkItem.
1825
1851
  class HotKeyDetection
1826
1852
  include Google::Apis::Core::Hashable
@@ -1853,6 +1879,41 @@ module Google
1853
1879
  end
1854
1880
  end
1855
1881
 
1882
+ # Information about a hot key.
1883
+ class HotKeyInfo
1884
+ include Google::Apis::Core::Hashable
1885
+
1886
+ # The age of the hot key measured from when it was first detected.
1887
+ # Corresponds to the JSON property `hotKeyAge`
1888
+ # @return [String]
1889
+ attr_accessor :hot_key_age
1890
+
1891
+ # A detected hot key that is causing limited parallelism. This field will be
1892
+ # populated only if the following flag is set to true: "--enable_hot_key_logging"
1893
+ # .
1894
+ # Corresponds to the JSON property `key`
1895
+ # @return [String]
1896
+ attr_accessor :key
1897
+
1898
+ # If true, then the above key is truncated and cannot be deserialized. This
1899
+ # occurs if the key above is populated and the key size is >5MB.
1900
+ # Corresponds to the JSON property `keyTruncated`
1901
+ # @return [Boolean]
1902
+ attr_accessor :key_truncated
1903
+ alias_method :key_truncated?, :key_truncated
1904
+
1905
+ def initialize(**args)
1906
+ update!(**args)
1907
+ end
1908
+
1909
+ # Update properties of this object
1910
+ def update!(**args)
1911
+ @hot_key_age = args[:hot_key_age] if args.key?(:hot_key_age)
1912
+ @key = args[:key] if args.key?(:key)
1913
+ @key_truncated = args[:key_truncated] if args.key?(:key_truncated)
1914
+ end
1915
+ end
1916
+
1856
1917
  # An input of an instruction, as a reference to an output of a producer
1857
1918
  # instruction.
1858
1919
  class InstructionInput
@@ -3448,6 +3509,11 @@ module Google
3448
3509
  # @return [Array<Google::Apis::DataflowV1b3::TransformSummary>]
3449
3510
  attr_accessor :original_pipeline_transform
3450
3511
 
3512
+ # A hash value of the submitted pipeline portable graph step names if exists.
3513
+ # Corresponds to the JSON property `stepNamesHash`
3514
+ # @return [String]
3515
+ attr_accessor :step_names_hash
3516
+
3451
3517
  def initialize(**args)
3452
3518
  update!(**args)
3453
3519
  end
@@ -3457,6 +3523,7 @@ module Google
3457
3523
  @display_data = args[:display_data] if args.key?(:display_data)
3458
3524
  @execution_pipeline_stage = args[:execution_pipeline_stage] if args.key?(:execution_pipeline_stage)
3459
3525
  @original_pipeline_transform = args[:original_pipeline_transform] if args.key?(:original_pipeline_transform)
3526
+ @step_names_hash = args[:step_names_hash] if args.key?(:step_names_hash)
3460
3527
  end
3461
3528
  end
3462
3529
 
@@ -5054,6 +5121,11 @@ module Google
5054
5121
  # @return [String]
5055
5122
  attr_accessor :state
5056
5123
 
5124
+ # Summarized straggler identification details.
5125
+ # Corresponds to the JSON property `stragglerSummary`
5126
+ # @return [Google::Apis::DataflowV1b3::StragglerSummary]
5127
+ attr_accessor :straggler_summary
5128
+
5057
5129
  def initialize(**args)
5058
5130
  update!(**args)
5059
5131
  end
@@ -5066,6 +5138,7 @@ module Google
5066
5138
  @stage_id = args[:stage_id] if args.key?(:stage_id)
5067
5139
  @start_time = args[:start_time] if args.key?(:start_time)
5068
5140
  @state = args[:state] if args.key?(:state)
5141
+ @straggler_summary = args[:straggler_summary] if args.key?(:straggler_summary)
5069
5142
  end
5070
5143
  end
5071
5144
 
@@ -5178,6 +5251,79 @@ module Google
5178
5251
  end
5179
5252
  end
5180
5253
 
5254
+ # Information useful for debugging a straggler. Each type will provide
5255
+ # specialized debugging information relevant for a particular cause. The
5256
+ # StragglerDebuggingInfo will be 1:1 mapping to the StragglerCause enum.
5257
+ class StragglerDebuggingInfo
5258
+ include Google::Apis::Core::Hashable
5259
+
5260
+ # Information useful for debugging a hot key detection.
5261
+ # Corresponds to the JSON property `hotKey`
5262
+ # @return [Google::Apis::DataflowV1b3::HotKeyDebuggingInfo]
5263
+ attr_accessor :hot_key
5264
+
5265
+ def initialize(**args)
5266
+ update!(**args)
5267
+ end
5268
+
5269
+ # Update properties of this object
5270
+ def update!(**args)
5271
+ @hot_key = args[:hot_key] if args.key?(:hot_key)
5272
+ end
5273
+ end
5274
+
5275
+ # Information useful for straggler identification and debugging.
5276
+ class StragglerInfo
5277
+ include Google::Apis::Core::Hashable
5278
+
5279
+ # The straggler causes, keyed by the string representation of the StragglerCause
5280
+ # enum and contains specialized debugging information for each straggler cause.
5281
+ # Corresponds to the JSON property `causes`
5282
+ # @return [Hash<String,Google::Apis::DataflowV1b3::StragglerDebuggingInfo>]
5283
+ attr_accessor :causes
5284
+
5285
+ # The time when the work item attempt became a straggler.
5286
+ # Corresponds to the JSON property `startTime`
5287
+ # @return [String]
5288
+ attr_accessor :start_time
5289
+
5290
+ def initialize(**args)
5291
+ update!(**args)
5292
+ end
5293
+
5294
+ # Update properties of this object
5295
+ def update!(**args)
5296
+ @causes = args[:causes] if args.key?(:causes)
5297
+ @start_time = args[:start_time] if args.key?(:start_time)
5298
+ end
5299
+ end
5300
+
5301
+ # Summarized straggler identification details.
5302
+ class StragglerSummary
5303
+ include Google::Apis::Core::Hashable
5304
+
5305
+ # Aggregated counts of straggler causes, keyed by the string representation of
5306
+ # the StragglerCause enum.
5307
+ # Corresponds to the JSON property `stragglerCauseCount`
5308
+ # @return [Hash<String,Fixnum>]
5309
+ attr_accessor :straggler_cause_count
5310
+
5311
+ # The total count of stragglers.
5312
+ # Corresponds to the JSON property `totalStragglerCount`
5313
+ # @return [Fixnum]
5314
+ attr_accessor :total_straggler_count
5315
+
5316
+ def initialize(**args)
5317
+ update!(**args)
5318
+ end
5319
+
5320
+ # Update properties of this object
5321
+ def update!(**args)
5322
+ @straggler_cause_count = args[:straggler_cause_count] if args.key?(:straggler_cause_count)
5323
+ @total_straggler_count = args[:total_straggler_count] if args.key?(:total_straggler_count)
5324
+ end
5325
+ end
5326
+
5181
5327
  # Describes a stream of data, either as input to be processed or as output of a
5182
5328
  # streaming Dataflow job.
5183
5329
  class StreamLocation
@@ -5983,6 +6129,11 @@ module Google
5983
6129
  # @return [String]
5984
6130
  attr_accessor :state
5985
6131
 
6132
+ # Information useful for straggler identification and debugging.
6133
+ # Corresponds to the JSON property `stragglerInfo`
6134
+ # @return [Google::Apis::DataflowV1b3::StragglerInfo]
6135
+ attr_accessor :straggler_info
6136
+
5986
6137
  # Name of this work item.
5987
6138
  # Corresponds to the JSON property `taskId`
5988
6139
  # @return [String]
@@ -6000,6 +6151,7 @@ module Google
6000
6151
  @progress = args[:progress] if args.key?(:progress)
6001
6152
  @start_time = args[:start_time] if args.key?(:start_time)
6002
6153
  @state = args[:state] if args.key?(:state)
6154
+ @straggler_info = args[:straggler_info] if args.key?(:straggler_info)
6003
6155
  @task_id = args[:task_id] if args.key?(:task_id)
6004
6156
  end
6005
6157
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataflowV1b3
18
18
  # Version of the google-apis-dataflow_v1b3 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220629"
25
+ REVISION = "20220904"
26
26
  end
27
27
  end
28
28
  end
@@ -268,12 +268,24 @@ module Google
268
268
  include Google::Apis::Core::JsonObjectSupport
269
269
  end
270
270
 
271
+ class HotKeyDebuggingInfo
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
271
277
  class HotKeyDetection
272
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
279
 
274
280
  include Google::Apis::Core::JsonObjectSupport
275
281
  end
276
282
 
283
+ class HotKeyInfo
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
277
289
  class InstructionInput
278
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
291
 
@@ -796,6 +808,24 @@ module Google
796
808
  include Google::Apis::Core::JsonObjectSupport
797
809
  end
798
810
 
811
+ class StragglerDebuggingInfo
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
817
+ class StragglerInfo
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
823
+ class StragglerSummary
824
+ class Representation < Google::Apis::Core::JsonRepresentation; end
825
+
826
+ include Google::Apis::Core::JsonObjectSupport
827
+ end
828
+
799
829
  class StreamLocation
800
830
  class Representation < Google::Apis::Core::JsonRepresentation; end
801
831
 
@@ -1389,6 +1419,7 @@ module Google
1389
1419
  property :autoscaling_algorithm, as: 'autoscalingAlgorithm'
1390
1420
  property :disk_size_gb, as: 'diskSizeGb'
1391
1421
  property :dump_heap_on_oom, as: 'dumpHeapOnOom'
1422
+ property :enable_launcher_vm_serial_port_logging, as: 'enableLauncherVmSerialPortLogging'
1392
1423
  property :enable_streaming_engine, as: 'enableStreamingEngine'
1393
1424
  property :flexrs_goal, as: 'flexrsGoal'
1394
1425
  property :ip_configuration, as: 'ipConfiguration'
@@ -1463,6 +1494,14 @@ module Google
1463
1494
  end
1464
1495
  end
1465
1496
 
1497
+ class HotKeyDebuggingInfo
1498
+ # @private
1499
+ class Representation < Google::Apis::Core::JsonRepresentation
1500
+ hash :detected_hot_keys, as: 'detectedHotKeys', class: Google::Apis::DataflowV1b3::HotKeyInfo, decorator: Google::Apis::DataflowV1b3::HotKeyInfo::Representation
1501
+
1502
+ end
1503
+ end
1504
+
1466
1505
  class HotKeyDetection
1467
1506
  # @private
1468
1507
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1472,6 +1511,15 @@ module Google
1472
1511
  end
1473
1512
  end
1474
1513
 
1514
+ class HotKeyInfo
1515
+ # @private
1516
+ class Representation < Google::Apis::Core::JsonRepresentation
1517
+ property :hot_key_age, as: 'hotKeyAge'
1518
+ property :key, as: 'key'
1519
+ property :key_truncated, as: 'keyTruncated'
1520
+ end
1521
+ end
1522
+
1475
1523
  class InstructionInput
1476
1524
  # @private
1477
1525
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1910,6 +1958,7 @@ module Google
1910
1958
 
1911
1959
  collection :original_pipeline_transform, as: 'originalPipelineTransform', class: Google::Apis::DataflowV1b3::TransformSummary, decorator: Google::Apis::DataflowV1b3::TransformSummary::Representation
1912
1960
 
1961
+ property :step_names_hash, as: 'stepNamesHash'
1913
1962
  end
1914
1963
  end
1915
1964
 
@@ -2364,6 +2413,8 @@ module Google
2364
2413
  property :stage_id, as: 'stageId'
2365
2414
  property :start_time, as: 'startTime'
2366
2415
  property :state, as: 'state'
2416
+ property :straggler_summary, as: 'stragglerSummary', class: Google::Apis::DataflowV1b3::StragglerSummary, decorator: Google::Apis::DataflowV1b3::StragglerSummary::Representation
2417
+
2367
2418
  end
2368
2419
  end
2369
2420
 
@@ -2393,6 +2444,31 @@ module Google
2393
2444
  end
2394
2445
  end
2395
2446
 
2447
+ class StragglerDebuggingInfo
2448
+ # @private
2449
+ class Representation < Google::Apis::Core::JsonRepresentation
2450
+ property :hot_key, as: 'hotKey', class: Google::Apis::DataflowV1b3::HotKeyDebuggingInfo, decorator: Google::Apis::DataflowV1b3::HotKeyDebuggingInfo::Representation
2451
+
2452
+ end
2453
+ end
2454
+
2455
+ class StragglerInfo
2456
+ # @private
2457
+ class Representation < Google::Apis::Core::JsonRepresentation
2458
+ hash :causes, as: 'causes', class: Google::Apis::DataflowV1b3::StragglerDebuggingInfo, decorator: Google::Apis::DataflowV1b3::StragglerDebuggingInfo::Representation
2459
+
2460
+ property :start_time, as: 'startTime'
2461
+ end
2462
+ end
2463
+
2464
+ class StragglerSummary
2465
+ # @private
2466
+ class Representation < Google::Apis::Core::JsonRepresentation
2467
+ hash :straggler_cause_count, as: 'stragglerCauseCount'
2468
+ property :total_straggler_count, :numeric_string => true, as: 'totalStragglerCount'
2469
+ end
2470
+ end
2471
+
2396
2472
  class StreamLocation
2397
2473
  # @private
2398
2474
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2617,6 +2693,8 @@ module Google
2617
2693
 
2618
2694
  property :start_time, as: 'startTime'
2619
2695
  property :state, as: 'state'
2696
+ property :straggler_info, as: 'stragglerInfo', class: Google::Apis::DataflowV1b3::StragglerInfo, decorator: Google::Apis::DataflowV1b3::StragglerInfo::Representation
2697
+
2620
2698
  property :task_id, as: 'taskId'
2621
2699
  end
2622
2700
  end
@@ -126,6 +126,8 @@ module Google
126
126
  # @param [String] location
127
127
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
128
128
  # regional-endpoints) that contains this job.
129
+ # @param [String] name
130
+ # Optional. The job name. Optional.
129
131
  # @param [Fixnum] page_size
130
132
  # If there are many jobs, limit response to at most this many. The actual number
131
133
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -153,13 +155,14 @@ module Google
153
155
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
154
156
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
155
157
  # @raise [Google::Apis::AuthorizationError] Authorization is required
156
- def aggregated_project_job(project_id, filter: nil, location: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
158
+ def aggregated_project_job(project_id, filter: nil, location: nil, name: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
157
159
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/jobs:aggregated', options)
158
160
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
159
161
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
160
162
  command.params['projectId'] = project_id unless project_id.nil?
161
163
  command.query['filter'] = filter unless filter.nil?
162
164
  command.query['location'] = location unless location.nil?
165
+ command.query['name'] = name unless name.nil?
163
166
  command.query['pageSize'] = page_size unless page_size.nil?
164
167
  command.query['pageToken'] = page_token unless page_token.nil?
165
168
  command.query['view'] = view unless view.nil?
@@ -317,6 +320,8 @@ module Google
317
320
  # @param [String] location
318
321
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
319
322
  # regional-endpoints) that contains this job.
323
+ # @param [String] name
324
+ # Optional. The job name. Optional.
320
325
  # @param [Fixnum] page_size
321
326
  # If there are many jobs, limit response to at most this many. The actual number
322
327
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -344,13 +349,14 @@ module Google
344
349
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
345
350
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
346
351
  # @raise [Google::Apis::AuthorizationError] Authorization is required
347
- def list_project_jobs(project_id, filter: nil, location: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
352
+ def list_project_jobs(project_id, filter: nil, location: nil, name: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
348
353
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/jobs', options)
349
354
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
350
355
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
351
356
  command.params['projectId'] = project_id unless project_id.nil?
352
357
  command.query['filter'] = filter unless filter.nil?
353
358
  command.query['location'] = location unless location.nil?
359
+ command.query['name'] = name unless name.nil?
354
360
  command.query['pageSize'] = page_size unless page_size.nil?
355
361
  command.query['pageToken'] = page_token unless page_token.nil?
356
362
  command.query['view'] = view unless view.nil?
@@ -915,6 +921,8 @@ module Google
915
921
  # regional-endpoints) that contains this job.
916
922
  # @param [String] filter
917
923
  # The kind of filter to use.
924
+ # @param [String] name
925
+ # Optional. The job name. Optional.
918
926
  # @param [Fixnum] page_size
919
927
  # If there are many jobs, limit response to at most this many. The actual number
920
928
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -942,13 +950,14 @@ module Google
942
950
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
943
951
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
944
952
  # @raise [Google::Apis::AuthorizationError] Authorization is required
945
- def list_project_location_jobs(project_id, location, filter: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
953
+ def list_project_location_jobs(project_id, location, filter: nil, name: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
946
954
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/locations/{location}/jobs', options)
947
955
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
948
956
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
949
957
  command.params['projectId'] = project_id unless project_id.nil?
950
958
  command.params['location'] = location unless location.nil?
951
959
  command.query['filter'] = filter unless filter.nil?
960
+ command.query['name'] = name unless name.nil?
952
961
  command.query['pageSize'] = page_size unless page_size.nil?
953
962
  command.query['pageToken'] = page_token unless page_token.nil?
954
963
  command.query['view'] = view unless view.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataflow_v1b3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.27.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-09-12 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-dataflow_v1b3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
63
63
  post_install_message:
64
64
  rdoc_options: []