google-apis-dataflow_v1b3 0.81.0 → 0.82.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: 89cd7519ed889362f22aac8f342fc04d80d7d522f5f1552f764afdc26c5a8928
4
- data.tar.gz: d3a4f8cf32b7cd310a05834efc17db6bff969b1f702858dd406f8c8b67acdf08
3
+ metadata.gz: 4e597c6c7be92ae509e2d7bfb1a0506cb0d1ff54d45c59a21b40956ebdd0fb1c
4
+ data.tar.gz: '08b147dc0a6657ebbbf129b30ee6b265fef83cf6b1abb2ee24a4602201583924'
5
5
  SHA512:
6
- metadata.gz: 25924d81ea905b45685eacc5fca6e444eeb7e74222d21a162535a09e00783a2d42cbe9852ea040520fd980f0467fdd91fcc5864b7897542880d1764b5e31c604
7
- data.tar.gz: ef13c9568a8ccf4420a9509274c88ff88a1282fb550ad6f8ff1622ec3fa9dcbd8f0e0e42184b3cd26735ab604bf48029a73e269e98ace91eb8d8446a590b7702
6
+ metadata.gz: bfd34bf98da002cad4ca75bcdaec06e4b1be733e5686497d742150d9e7741842e8c04710f0f8f96c2b75829d217dadd46eaa92c78dcc65b79786eb742a87807b
7
+ data.tar.gz: '081eb2820195ffc5d0ad4dda47a6935ddf08da925e2cc2c6175d2c867c767611304587401bc98c59dc67da4b8e5a337973c364791420c4e3dcf07425ff13d973'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.82.0 (2026-08-16)
4
+
5
+ * Regenerated from discovery document revision 20260807
6
+
3
7
  ### v0.81.0 (2026-06-14)
4
8
 
5
9
  * Regenerated using generator version 0.19.0
@@ -185,6 +185,68 @@ module Google
185
185
  end
186
186
  end
187
187
 
188
+ # A schedule for autoscaling.
189
+ class AutoscalingSchedule
190
+ include Google::Apis::Core::Hashable
191
+
192
+ # Optional. A crontab specification of when this schedule should trigger
193
+ # applying overrides. The overrides will be applied from the trigger time until
194
+ # the specified duration elapses.
195
+ # Corresponds to the JSON property `crontab`
196
+ # @return [String]
197
+ attr_accessor :crontab
198
+
199
+ # Optional. The duration for which the parameter overrides for this schedule
200
+ # will be applied when triggered by the crontab.
201
+ # Corresponds to the JSON property `duration`
202
+ # @return [String]
203
+ attr_accessor :duration
204
+
205
+ # Optional. The name of the schedule.
206
+ # Corresponds to the JSON property `name`
207
+ # @return [String]
208
+ attr_accessor :name
209
+
210
+ # The parameters to use for autoscaling when this schedule is active.
211
+ # Corresponds to the JSON property `parameters`
212
+ # @return [Google::Apis::DataflowV1b3::Parameters]
213
+ attr_accessor :parameters
214
+
215
+ # Optional. Specifies the priority of the schedule. If two schedules overlap,
216
+ # the one with the higher priority will be used. The higher the value, the
217
+ # higher the priority of the schedule.
218
+ # Corresponds to the JSON property `priority`
219
+ # @return [Fixnum]
220
+ attr_accessor :priority
221
+
222
+ # Optional. The time zone for the schedule. The value of this field must be a
223
+ # time zone name from the [tz database](http://en.wikipedia.org/wiki/Tz_database)
224
+ # . The default value is UTC.
225
+ # Corresponds to the JSON property `timeZone`
226
+ # @return [String]
227
+ attr_accessor :time_zone
228
+
229
+ # Output only. When the customer last updated the schedule.
230
+ # Corresponds to the JSON property `updateTime`
231
+ # @return [String]
232
+ attr_accessor :update_time
233
+
234
+ def initialize(**args)
235
+ update!(**args)
236
+ end
237
+
238
+ # Update properties of this object
239
+ def update!(**args)
240
+ @crontab = args[:crontab] if args.key?(:crontab)
241
+ @duration = args[:duration] if args.key?(:duration)
242
+ @name = args[:name] if args.key?(:name)
243
+ @parameters = args[:parameters] if args.key?(:parameters)
244
+ @priority = args[:priority] if args.key?(:priority)
245
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
246
+ @update_time = args[:update_time] if args.key?(:update_time)
247
+ end
248
+ end
249
+
188
250
  # Settings for WorkerPool autoscaling.
189
251
  class AutoscalingSettings
190
252
  include Google::Apis::Core::Hashable
@@ -4110,6 +4172,43 @@ module Google
4110
4172
  end
4111
4173
  end
4112
4174
 
4175
+ # The parameters to use for autoscaling when this schedule is active.
4176
+ class Parameters
4177
+ include Google::Apis::Core::Hashable
4178
+
4179
+ # Optional. The target CPU utilization for this schedule.
4180
+ # Corresponds to the JSON property `cpuUtilizationTarget`
4181
+ # @return [Float]
4182
+ attr_accessor :cpu_utilization_target
4183
+
4184
+ # Optional. The target latency for this schedule.
4185
+ # Corresponds to the JSON property `latencyTarget`
4186
+ # @return [String]
4187
+ attr_accessor :latency_target
4188
+
4189
+ # Optional. The maximum number of workers for this schedule.
4190
+ # Corresponds to the JSON property `maxWorkerCount`
4191
+ # @return [Fixnum]
4192
+ attr_accessor :max_worker_count
4193
+
4194
+ # Optional. The minimum number of workers for this schedule.
4195
+ # Corresponds to the JSON property `minWorkerCount`
4196
+ # @return [Fixnum]
4197
+ attr_accessor :min_worker_count
4198
+
4199
+ def initialize(**args)
4200
+ update!(**args)
4201
+ end
4202
+
4203
+ # Update properties of this object
4204
+ def update!(**args)
4205
+ @cpu_utilization_target = args[:cpu_utilization_target] if args.key?(:cpu_utilization_target)
4206
+ @latency_target = args[:latency_target] if args.key?(:latency_target)
4207
+ @max_worker_count = args[:max_worker_count] if args.key?(:max_worker_count)
4208
+ @min_worker_count = args[:min_worker_count] if args.key?(:min_worker_count)
4209
+ end
4210
+ end
4211
+
4113
4212
  # An instruction that does a partial group-by-key. One input and one output.
4114
4213
  class PartialGroupByKeyInstruction
4115
4214
  include Google::Apis::Core::Hashable
@@ -4891,6 +4990,11 @@ module Google
4891
4990
  # @return [Fixnum]
4892
4991
  attr_accessor :min_num_workers
4893
4992
 
4993
+ # Optional. The schedule for autoscaling.
4994
+ # Corresponds to the JSON property `schedules`
4995
+ # @return [Array<Google::Apis::DataflowV1b3::AutoscalingSchedule>]
4996
+ attr_accessor :schedules
4997
+
4894
4998
  # Target worker utilization, compared against the aggregate utilization of the
4895
4999
  # worker pool by autoscaler, to determine upscaling and downscaling when absent
4896
5000
  # other constraints such as backlog. For more information, see [Update an
@@ -4911,6 +5015,7 @@ module Google
4911
5015
  @latency_tier = args[:latency_tier] if args.key?(:latency_tier)
4912
5016
  @max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
4913
5017
  @min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
5018
+ @schedules = args[:schedules] if args.key?(:schedules)
4914
5019
  @worker_utilization_hint = args[:worker_utilization_hint] if args.key?(:worker_utilization_hint)
4915
5020
  end
4916
5021
  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.81.0"
19
+ GEM_VERSION = "0.82.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260503"
25
+ REVISION = "20260807"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class AutoscalingSchedule
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class AutoscalingSettings
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -604,6 +610,12 @@ module Google
604
610
  include Google::Apis::Core::JsonObjectSupport
605
611
  end
606
612
 
613
+ class Parameters
614
+ class Representation < Google::Apis::Core::JsonRepresentation; end
615
+
616
+ include Google::Apis::Core::JsonObjectSupport
617
+ end
618
+
607
619
  class PartialGroupByKeyInstruction
608
620
  class Representation < Google::Apis::Core::JsonRepresentation; end
609
621
 
@@ -1232,6 +1244,20 @@ module Google
1232
1244
  end
1233
1245
  end
1234
1246
 
1247
+ class AutoscalingSchedule
1248
+ # @private
1249
+ class Representation < Google::Apis::Core::JsonRepresentation
1250
+ property :crontab, as: 'crontab'
1251
+ property :duration, as: 'duration'
1252
+ property :name, as: 'name'
1253
+ property :parameters, as: 'parameters', class: Google::Apis::DataflowV1b3::Parameters, decorator: Google::Apis::DataflowV1b3::Parameters::Representation
1254
+
1255
+ property :priority, :numeric_string => true, as: 'priority'
1256
+ property :time_zone, as: 'timeZone'
1257
+ property :update_time, as: 'updateTime'
1258
+ end
1259
+ end
1260
+
1235
1261
  class AutoscalingSettings
1236
1262
  # @private
1237
1263
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2280,6 +2306,16 @@ module Google
2280
2306
  end
2281
2307
  end
2282
2308
 
2309
+ class Parameters
2310
+ # @private
2311
+ class Representation < Google::Apis::Core::JsonRepresentation
2312
+ property :cpu_utilization_target, as: 'cpuUtilizationTarget'
2313
+ property :latency_target, as: 'latencyTarget'
2314
+ property :max_worker_count, as: 'maxWorkerCount'
2315
+ property :min_worker_count, as: 'minWorkerCount'
2316
+ end
2317
+ end
2318
+
2283
2319
  class PartialGroupByKeyInstruction
2284
2320
  # @private
2285
2321
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2487,6 +2523,8 @@ module Google
2487
2523
  property :latency_tier, as: 'latencyTier'
2488
2524
  property :max_num_workers, as: 'maxNumWorkers'
2489
2525
  property :min_num_workers, as: 'minNumWorkers'
2526
+ collection :schedules, as: 'schedules', class: Google::Apis::DataflowV1b3::AutoscalingSchedule, decorator: Google::Apis::DataflowV1b3::AutoscalingSchedule::Representation
2527
+
2490
2528
  property :worker_utilization_hint, as: 'workerUtilizationHint'
2491
2529
  end
2492
2530
  end
@@ -121,7 +121,8 @@ module Google
121
121
  end
122
122
 
123
123
  # List the jobs of a project across all regions. **Note:** This method doesn't
124
- # support filtering the list of jobs by name.
124
+ # support filtering the list of jobs by name. # IAM Permissions Requires the `
125
+ # dataflow.jobs.list` permission on the project.
125
126
  # @param [String] project_id
126
127
  # The project which owns the jobs.
127
128
  # @param [String] filter
@@ -178,7 +179,10 @@ module Google
178
179
  # locations.jobs.create` with a [regional endpoint] (https://cloud.google.com/
179
180
  # dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.create` is
180
181
  # not recommended, as your job will always start in `us-central1`. Do not enter
181
- # confidential information when you supply string values using the API.
182
+ # confidential information when you supply string values using the API. # IAM
183
+ # Permissions 1. Requires the `dataflow.jobs.create` permission on the project.
184
+ # 2. `resourcemanager.projects.get` (Specifically required for regional
185
+ # endpoints to resolve regional resource metadata)
182
186
  # @param [String] project_id
183
187
  # The ID of the Cloud Platform project that the job belongs to.
184
188
  # @param [Google::Apis::DataflowV1b3::Job] job_object
@@ -225,7 +229,8 @@ module Google
225
229
  # we recommend using `projects.locations.jobs.get` with a [regional endpoint] (
226
230
  # https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `
227
231
  # projects.jobs.get` is not recommended, as you can only get the state of jobs
228
- # that are running in `us-central1`.
232
+ # that are running in `us-central1`. # IAM Permissions Requires the `dataflow.
233
+ # jobs.get` permission on the job.
229
234
  # @param [String] project_id
230
235
  # The ID of the Cloud Platform project that the job belongs to.
231
236
  # @param [String] job_id
@@ -269,7 +274,8 @@ module Google
269
274
  # projects.locations.jobs.getMetrics` with a [regional endpoint] (https://cloud.
270
275
  # google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.
271
276
  # getMetrics` is not recommended, as you can only request the status of jobs
272
- # that are running in `us-central1`.
277
+ # that are running in `us-central1`. # IAM Permissions Requires the `dataflow.
278
+ # metrics.get` permission on the job.
273
279
  # @param [String] project_id
274
280
  # A project id.
275
281
  # @param [String] job_id
@@ -317,7 +323,8 @@ module Google
317
323
  # projects.jobs.list` is not recommended, because you can only get the list of
318
324
  # jobs that are running in `us-central1`. `projects.locations.jobs.list` and `
319
325
  # projects.jobs.list` support filtering the list of jobs by name. Filtering by
320
- # name isn't supported by `projects.jobs.aggregated`.
326
+ # name isn't supported by `projects.jobs.aggregated`. # IAM Permissions Requires
327
+ # the `dataflow.jobs.list` permission on the project.
321
328
  # @param [String] project_id
322
329
  # The project which owns the jobs.
323
330
  # @param [String] filter
@@ -370,7 +377,8 @@ module Google
370
377
  execute_or_queue_command(command, &block)
371
378
  end
372
379
 
373
- # Snapshot the state of a streaming job.
380
+ # Snapshot the state of a streaming job. # IAM Permissions Requires the `
381
+ # dataflow.jobs.snapshot` permission on the job.
374
382
  # @param [String] project_id
375
383
  # The project which owns the job to be snapshotted.
376
384
  # @param [String] job_id
@@ -410,7 +418,9 @@ module Google
410
418
  # existing job, we recommend using `projects.locations.jobs.update` with a [
411
419
  # regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-
412
420
  # endpoints). Using `projects.jobs.update` is not recommended, as you can only
413
- # update the state of jobs that are running in `us-central1`.
421
+ # update the state of jobs that are running in `us-central1`. # IAM Permissions
422
+ # 1. Requires the `dataflow.jobs.cancel` permission to cancel a job. 2. Requires
423
+ # the `dataflow.jobs.updateContents` permission to update runtime parameters.
414
424
  # @param [String] project_id
415
425
  # The ID of the Cloud Platform project that the job belongs to.
416
426
  # @param [String] job_id
@@ -534,7 +544,8 @@ module Google
534
544
  # projects.locations.jobs.messages.list` with a [regional endpoint] (https://
535
545
  # cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.
536
546
  # jobs.messages.list` is not recommended, as you can only request the status of
537
- # jobs that are running in `us-central1`.
547
+ # jobs that are running in `us-central1`. # IAM Permissions Requires the `
548
+ # dataflow.messages.list` permission on the job.
538
549
  # @param [String] project_id
539
550
  # A project id.
540
551
  # @param [String] job_id
@@ -700,7 +711,10 @@ module Google
700
711
  execute_or_queue_command(command, &block)
701
712
  end
702
713
 
703
- # Launch a job with a FlexTemplate.
714
+ # Launch a job with a FlexTemplate. # IAM Permissions Requires the following IAM
715
+ # permission(s) on the resource: - `dataflow.jobs.create` - `resourcemanager.
716
+ # projects.get` - `iam.serviceAccounts.actAs` - `storage.buckets.get` - `storage.
717
+ # buckets.create` (Required if the default staging bucket must be created)
704
718
  # @param [String] project_id
705
719
  # Required. The ID of the Cloud Platform project that the job belongs to.
706
720
  # @param [String] location
@@ -742,7 +756,10 @@ module Google
742
756
  # locations.jobs.create` with a [regional endpoint] (https://cloud.google.com/
743
757
  # dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.create` is
744
758
  # not recommended, as your job will always start in `us-central1`. Do not enter
745
- # confidential information when you supply string values using the API.
759
+ # confidential information when you supply string values using the API. # IAM
760
+ # Permissions 1. Requires the `dataflow.jobs.create` permission on the project.
761
+ # 2. `resourcemanager.projects.get` (Specifically required for regional
762
+ # endpoints to resolve regional resource metadata)
746
763
  # @param [String] project_id
747
764
  # The ID of the Cloud Platform project that the job belongs to.
748
765
  # @param [String] location
@@ -789,7 +806,8 @@ module Google
789
806
  # we recommend using `projects.locations.jobs.get` with a [regional endpoint] (
790
807
  # https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `
791
808
  # projects.jobs.get` is not recommended, as you can only get the state of jobs
792
- # that are running in `us-central1`.
809
+ # that are running in `us-central1`. # IAM Permissions Requires the `dataflow.
810
+ # jobs.get` permission on the job.
793
811
  # @param [String] project_id
794
812
  # The ID of the Cloud Platform project that the job belongs to.
795
813
  # @param [String] location
@@ -830,7 +848,8 @@ module Google
830
848
  end
831
849
 
832
850
  # Request detailed information about the execution status of the job.
833
- # EXPERIMENTAL. This API is subject to change or removal without notice.
851
+ # EXPERIMENTAL. This API is subject to change or removal without notice. # IAM
852
+ # Permissions Requires the `dataflow.metrics.get` permission on the job.
834
853
  # @param [String] project_id
835
854
  # A project id.
836
855
  # @param [String] location
@@ -880,7 +899,8 @@ module Google
880
899
  # projects.locations.jobs.getMetrics` with a [regional endpoint] (https://cloud.
881
900
  # google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.
882
901
  # getMetrics` is not recommended, as you can only request the status of jobs
883
- # that are running in `us-central1`.
902
+ # that are running in `us-central1`. # IAM Permissions Requires the `dataflow.
903
+ # metrics.get` permission on the job.
884
904
  # @param [String] project_id
885
905
  # A project id.
886
906
  # @param [String] location
@@ -928,7 +948,8 @@ module Google
928
948
  # projects.jobs.list` is not recommended, because you can only get the list of
929
949
  # jobs that are running in `us-central1`. `projects.locations.jobs.list` and `
930
950
  # projects.jobs.list` support filtering the list of jobs by name. Filtering by
931
- # name isn't supported by `projects.jobs.aggregated`.
951
+ # name isn't supported by `projects.jobs.aggregated`. # IAM Permissions Requires
952
+ # the `dataflow.jobs.list` permission on the project.
932
953
  # @param [String] project_id
933
954
  # The project which owns the jobs.
934
955
  # @param [String] location
@@ -981,7 +1002,8 @@ module Google
981
1002
  execute_or_queue_command(command, &block)
982
1003
  end
983
1004
 
984
- # Snapshot the state of a streaming job.
1005
+ # Snapshot the state of a streaming job. # IAM Permissions Requires the `
1006
+ # dataflow.jobs.snapshot` permission on the job.
985
1007
  # @param [String] project_id
986
1008
  # The project which owns the job to be snapshotted.
987
1009
  # @param [String] location
@@ -1024,7 +1046,9 @@ module Google
1024
1046
  # existing job, we recommend using `projects.locations.jobs.update` with a [
1025
1047
  # regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-
1026
1048
  # endpoints). Using `projects.jobs.update` is not recommended, as you can only
1027
- # update the state of jobs that are running in `us-central1`.
1049
+ # update the state of jobs that are running in `us-central1`. # IAM Permissions
1050
+ # 1. Requires the `dataflow.jobs.cancel` permission to cancel a job. 2. Requires
1051
+ # the `dataflow.jobs.updateContents` permission to update runtime parameters.
1028
1052
  # @param [String] project_id
1029
1053
  # The ID of the Cloud Platform project that the job belongs to.
1030
1054
  # @param [String] location
@@ -1196,7 +1220,8 @@ module Google
1196
1220
  # projects.locations.jobs.messages.list` with a [regional endpoint] (https://
1197
1221
  # cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.
1198
1222
  # jobs.messages.list` is not recommended, as you can only request the status of
1199
- # jobs that are running in `us-central1`.
1223
+ # jobs that are running in `us-central1`. # IAM Permissions Requires the `
1224
+ # dataflow.messages.list` permission on the job.
1200
1225
  # @param [String] project_id
1201
1226
  # A project id.
1202
1227
  # @param [String] location
@@ -1290,7 +1315,8 @@ module Google
1290
1315
  end
1291
1316
 
1292
1317
  # Request detailed information about the execution status of a stage of the job.
1293
- # EXPERIMENTAL. This API is subject to change or removal without notice.
1318
+ # EXPERIMENTAL. This API is subject to change or removal without notice. # IAM
1319
+ # Permissions Requires the `dataflow.metrics.get` permission on the job.
1294
1320
  # @param [String] project_id
1295
1321
  # A project id.
1296
1322
  # @param [String] location
@@ -1538,7 +1564,9 @@ module Google
1538
1564
  # recommend using `projects.locations.templates.create` with a [regional
1539
1565
  # endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints).
1540
1566
  # Using `projects.templates.create` is not recommended, because your job will
1541
- # always start in `us-central1`.
1567
+ # always start in `us-central1`. # IAM Permissions Requires the following IAM
1568
+ # permission(s) on the project: - `dataflow.jobs.create` - `resourcemanager.
1569
+ # projects.get`
1542
1570
  # @param [String] project_id
1543
1571
  # Required. The ID of the Cloud Platform project that the job belongs to.
1544
1572
  # @param [String] location
@@ -1579,7 +1607,8 @@ module Google
1579
1607
  # using `projects.locations.templates.get` with a [regional endpoint] (https://
1580
1608
  # cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.
1581
1609
  # templates.get` is not recommended, because only templates that are running in `
1582
- # us-central1` are retrieved.
1610
+ # us-central1` are retrieved. # IAM Permissions Requires the `resourcemanager.
1611
+ # projects.get` permission on the project.
1583
1612
  # @param [String] project_id
1584
1613
  # Required. The ID of the Cloud Platform project that the job belongs to.
1585
1614
  # @param [String] location
@@ -1624,7 +1653,9 @@ module Google
1624
1653
  # locations.templates.launch` with a [regional endpoint] (https://cloud.google.
1625
1654
  # com/dataflow/docs/concepts/regional-endpoints). Using `projects.templates.
1626
1655
  # launch` is not recommended, because jobs launched from the template will
1627
- # always start in `us-central1`.
1656
+ # always start in `us-central1`. # IAM Permissions Requires the following IAM
1657
+ # permission(s) on the project: - `dataflow.jobs.create` - `resourcemanager.
1658
+ # projects.get`
1628
1659
  # @param [String] project_id
1629
1660
  # Required. The ID of the Cloud Platform project that the job belongs to.
1630
1661
  # @param [String] location
@@ -1753,7 +1784,9 @@ module Google
1753
1784
  # recommend using `projects.locations.templates.create` with a [regional
1754
1785
  # endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints).
1755
1786
  # Using `projects.templates.create` is not recommended, because your job will
1756
- # always start in `us-central1`.
1787
+ # always start in `us-central1`. # IAM Permissions Requires the following IAM
1788
+ # permission(s) on the project: - `dataflow.jobs.create` - `resourcemanager.
1789
+ # projects.get`
1757
1790
  # @param [String] project_id
1758
1791
  # Required. The ID of the Cloud Platform project that the job belongs to.
1759
1792
  # @param [Google::Apis::DataflowV1b3::CreateJobFromTemplateRequest] create_job_from_template_request_object
@@ -1790,7 +1823,8 @@ module Google
1790
1823
  # using `projects.locations.templates.get` with a [regional endpoint] (https://
1791
1824
  # cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.
1792
1825
  # templates.get` is not recommended, because only templates that are running in `
1793
- # us-central1` are retrieved.
1826
+ # us-central1` are retrieved. # IAM Permissions Requires the `resourcemanager.
1827
+ # projects.get` permission on the project.
1794
1828
  # @param [String] project_id
1795
1829
  # Required. The ID of the Cloud Platform project that the job belongs to.
1796
1830
  # @param [String] gcs_path
@@ -1835,7 +1869,9 @@ module Google
1835
1869
  # locations.templates.launch` with a [regional endpoint] (https://cloud.google.
1836
1870
  # com/dataflow/docs/concepts/regional-endpoints). Using `projects.templates.
1837
1871
  # launch` is not recommended, because jobs launched from the template will
1838
- # always start in `us-central1`.
1872
+ # always start in `us-central1`. # IAM Permissions Requires the following IAM
1873
+ # permission(s) on the project: - `dataflow.jobs.create` - `resourcemanager.
1874
+ # projects.get`
1839
1875
  # @param [String] project_id
1840
1876
  # Required. The ID of the Cloud Platform project that the job belongs to.
1841
1877
  # @param [Google::Apis::DataflowV1b3::LaunchTemplateParameters] launch_template_parameters_object
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataflow_v1b3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.81.0
4
+ version: 0.82.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.81.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.82.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
62
62
  rdoc_options: []
63
63
  require_paths: