google-apis-dataflow_v1b3 0.81.0 → 0.83.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: e26e5699011c511ebf2e1c13e756c713f88a05f2f10482433d5ae79b07522e90
4
+ data.tar.gz: 91735d4ef1b65538dc274376599898370c639c7e142fe3ef8a7f0850912395f3
5
5
  SHA512:
6
- metadata.gz: 25924d81ea905b45685eacc5fca6e444eeb7e74222d21a162535a09e00783a2d42cbe9852ea040520fd980f0467fdd91fcc5864b7897542880d1764b5e31c604
7
- data.tar.gz: ef13c9568a8ccf4420a9509274c88ff88a1282fb550ad6f8ff1622ec3fa9dcbd8f0e0e42184b3cd26735ab604bf48029a73e269e98ace91eb8d8446a590b7702
6
+ metadata.gz: b29964e47f84d124cdc8d06c37f23e21728e60aba29e01d48b15712a224e43381a75a998c8d3bc936a5cd0582f960a28916de648371a948e4872cb16aef35fba
7
+ data.tar.gz: d80adb99c0d652f1db9799da2c0d705528eae6d85d83c158cdf5b0a0ea930d9d6c76ffbc107975922deb56ef86950ae8a5a13b206b3bdccd113d21a3c710b2a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.83.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260825
6
+
7
+ ### v0.82.0 (2026-08-16)
8
+
9
+ * Regenerated from discovery document revision 20260807
10
+
3
11
  ### v0.81.0 (2026-06-14)
4
12
 
5
13
  * 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
@@ -568,6 +630,57 @@ module Google
568
630
  end
569
631
  end
570
632
 
633
+ # A ConfigStoreSetting resource.
634
+ class ConfigStoreSetting
635
+ include Google::Apis::Core::Hashable
636
+
637
+ # Identifier. The resource name of the setting.
638
+ # Corresponds to the JSON property `name`
639
+ # @return [String]
640
+ attr_accessor :name
641
+
642
+ # Represents a dynamically typed value.
643
+ # Corresponds to the JSON property `value`
644
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSettingValue]
645
+ attr_accessor :value
646
+
647
+ def initialize(**args)
648
+ update!(**args)
649
+ end
650
+
651
+ # Update properties of this object
652
+ def update!(**args)
653
+ @name = args[:name] if args.key?(:name)
654
+ @value = args[:value] if args.key?(:value)
655
+ end
656
+ end
657
+
658
+ # Represents a dynamically typed value.
659
+ class ConfigStoreSettingValue
660
+ include Google::Apis::Core::Hashable
661
+
662
+ # Represents a boolean value.
663
+ # Corresponds to the JSON property `boolValue`
664
+ # @return [Boolean]
665
+ attr_accessor :bool_value
666
+ alias_method :bool_value?, :bool_value
667
+
668
+ # Represents a string value.
669
+ # Corresponds to the JSON property `stringValue`
670
+ # @return [String]
671
+ attr_accessor :string_value
672
+
673
+ def initialize(**args)
674
+ update!(**args)
675
+ end
676
+
677
+ # Update properties of this object
678
+ def update!(**args)
679
+ @bool_value = args[:bool_value] if args.key?(:bool_value)
680
+ @string_value = args[:string_value] if args.key?(:string_value)
681
+ end
682
+ end
683
+
571
684
  # Container Spec.
572
685
  class ContainerSpec
573
686
  include Google::Apis::Core::Hashable
@@ -1445,6 +1558,22 @@ module Google
1445
1558
  end
1446
1559
  end
1447
1560
 
1561
+ # A generic empty message that you can re-use to avoid defining duplicated empty
1562
+ # messages in your APIs. A typical example is to use it as the request or the
1563
+ # response type of an API method. For instance: service Foo ` rpc Bar(google.
1564
+ # protobuf.Empty) returns (google.protobuf.Empty); `
1565
+ class Empty
1566
+ include Google::Apis::Core::Hashable
1567
+
1568
+ def initialize(**args)
1569
+ update!(**args)
1570
+ end
1571
+
1572
+ # Update properties of this object
1573
+ def update!(**args)
1574
+ end
1575
+ end
1576
+
1448
1577
  # Describes the environment in which a Dataflow Job runs.
1449
1578
  class Environment
1450
1579
  include Google::Apis::Core::Hashable
@@ -3305,6 +3434,31 @@ module Google
3305
3434
  end
3306
3435
  end
3307
3436
 
3437
+ # Response message for ListConfigStoreSettings.
3438
+ class ListConfigStoreSettingsResponse
3439
+ include Google::Apis::Core::Hashable
3440
+
3441
+ # The list of ConfigStoreSettings.
3442
+ # Corresponds to the JSON property `configStoreSettings`
3443
+ # @return [Array<Google::Apis::DataflowV1b3::ConfigStoreSetting>]
3444
+ attr_accessor :config_store_settings
3445
+
3446
+ # A token that can be sent as `page_token` to retrieve the next page.
3447
+ # Corresponds to the JSON property `nextPageToken`
3448
+ # @return [String]
3449
+ attr_accessor :next_page_token
3450
+
3451
+ def initialize(**args)
3452
+ update!(**args)
3453
+ end
3454
+
3455
+ # Update properties of this object
3456
+ def update!(**args)
3457
+ @config_store_settings = args[:config_store_settings] if args.key?(:config_store_settings)
3458
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3459
+ end
3460
+ end
3461
+
3308
3462
  # Response to a request to list job messages.
3309
3463
  class ListJobMessagesResponse
3310
3464
  include Google::Apis::Core::Hashable
@@ -4110,6 +4264,43 @@ module Google
4110
4264
  end
4111
4265
  end
4112
4266
 
4267
+ # The parameters to use for autoscaling when this schedule is active.
4268
+ class Parameters
4269
+ include Google::Apis::Core::Hashable
4270
+
4271
+ # Optional. The target CPU utilization for this schedule.
4272
+ # Corresponds to the JSON property `cpuUtilizationTarget`
4273
+ # @return [Float]
4274
+ attr_accessor :cpu_utilization_target
4275
+
4276
+ # Optional. The target latency for this schedule.
4277
+ # Corresponds to the JSON property `latencyTarget`
4278
+ # @return [String]
4279
+ attr_accessor :latency_target
4280
+
4281
+ # Optional. The maximum number of workers for this schedule.
4282
+ # Corresponds to the JSON property `maxWorkerCount`
4283
+ # @return [Fixnum]
4284
+ attr_accessor :max_worker_count
4285
+
4286
+ # Optional. The minimum number of workers for this schedule.
4287
+ # Corresponds to the JSON property `minWorkerCount`
4288
+ # @return [Fixnum]
4289
+ attr_accessor :min_worker_count
4290
+
4291
+ def initialize(**args)
4292
+ update!(**args)
4293
+ end
4294
+
4295
+ # Update properties of this object
4296
+ def update!(**args)
4297
+ @cpu_utilization_target = args[:cpu_utilization_target] if args.key?(:cpu_utilization_target)
4298
+ @latency_target = args[:latency_target] if args.key?(:latency_target)
4299
+ @max_worker_count = args[:max_worker_count] if args.key?(:max_worker_count)
4300
+ @min_worker_count = args[:min_worker_count] if args.key?(:min_worker_count)
4301
+ end
4302
+ end
4303
+
4113
4304
  # An instruction that does a partial group-by-key. One input and one output.
4114
4305
  class PartialGroupByKeyInstruction
4115
4306
  include Google::Apis::Core::Hashable
@@ -4614,6 +4805,44 @@ module Google
4614
4805
  end
4615
4806
  end
4616
4807
 
4808
+ # Request message for ResolveConfigStoreSetting.
4809
+ class ResolveConfigStoreSettingRequest
4810
+ include Google::Apis::Core::Hashable
4811
+
4812
+ def initialize(**args)
4813
+ update!(**args)
4814
+ end
4815
+
4816
+ # Update properties of this object
4817
+ def update!(**args)
4818
+ end
4819
+ end
4820
+
4821
+ # Response message for ResolveConfigStoreSetting.
4822
+ class ResolveConfigStoreSettingResponse
4823
+ include Google::Apis::Core::Hashable
4824
+
4825
+ # The list of settings that were considered during resolution.
4826
+ # Corresponds to the JSON property `choices`
4827
+ # @return [Array<Google::Apis::DataflowV1b3::ConfigStoreSetting>]
4828
+ attr_accessor :choices
4829
+
4830
+ # A ConfigStoreSetting resource.
4831
+ # Corresponds to the JSON property `setting`
4832
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
4833
+ attr_accessor :setting
4834
+
4835
+ def initialize(**args)
4836
+ update!(**args)
4837
+ end
4838
+
4839
+ # Update properties of this object
4840
+ def update!(**args)
4841
+ @choices = args[:choices] if args.key?(:choices)
4842
+ @setting = args[:setting] if args.key?(:setting)
4843
+ end
4844
+ end
4845
+
4617
4846
  # Worker metrics exported from workers. This contains resource utilization
4618
4847
  # metrics accumulated from a variety of sources. For more information, see go/df-
4619
4848
  # resource-signals.
@@ -4891,6 +5120,11 @@ module Google
4891
5120
  # @return [Fixnum]
4892
5121
  attr_accessor :min_num_workers
4893
5122
 
5123
+ # Optional. The schedule for autoscaling.
5124
+ # Corresponds to the JSON property `schedules`
5125
+ # @return [Array<Google::Apis::DataflowV1b3::AutoscalingSchedule>]
5126
+ attr_accessor :schedules
5127
+
4894
5128
  # Target worker utilization, compared against the aggregate utilization of the
4895
5129
  # worker pool by autoscaler, to determine upscaling and downscaling when absent
4896
5130
  # other constraints such as backlog. For more information, see [Update an
@@ -4911,6 +5145,7 @@ module Google
4911
5145
  @latency_tier = args[:latency_tier] if args.key?(:latency_tier)
4912
5146
  @max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
4913
5147
  @min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
5148
+ @schedules = args[:schedules] if args.key?(:schedules)
4914
5149
  @worker_utilization_hint = args[:worker_utilization_hint] if args.key?(:worker_utilization_hint)
4915
5150
  end
4916
5151
  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.83.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 = "20260825"
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
 
@@ -118,6 +124,18 @@ module Google
118
124
  include Google::Apis::Core::JsonObjectSupport
119
125
  end
120
126
 
127
+ class ConfigStoreSetting
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class ConfigStoreSettingValue
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
121
139
  class ContainerSpec
122
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
141
 
@@ -238,6 +256,12 @@ module Google
238
256
  include Google::Apis::Core::JsonObjectSupport
239
257
  end
240
258
 
259
+ class Empty
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
241
265
  class Environment
242
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
267
 
@@ -490,6 +514,12 @@ module Google
490
514
  include Google::Apis::Core::JsonObjectSupport
491
515
  end
492
516
 
517
+ class ListConfigStoreSettingsResponse
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
493
523
  class ListJobMessagesResponse
494
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
525
 
@@ -604,6 +634,12 @@ module Google
604
634
  include Google::Apis::Core::JsonObjectSupport
605
635
  end
606
636
 
637
+ class Parameters
638
+ class Representation < Google::Apis::Core::JsonRepresentation; end
639
+
640
+ include Google::Apis::Core::JsonObjectSupport
641
+ end
642
+
607
643
  class PartialGroupByKeyInstruction
608
644
  class Representation < Google::Apis::Core::JsonRepresentation; end
609
645
 
@@ -688,6 +724,18 @@ module Google
688
724
  include Google::Apis::Core::JsonObjectSupport
689
725
  end
690
726
 
727
+ class ResolveConfigStoreSettingRequest
728
+ class Representation < Google::Apis::Core::JsonRepresentation; end
729
+
730
+ include Google::Apis::Core::JsonObjectSupport
731
+ end
732
+
733
+ class ResolveConfigStoreSettingResponse
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
691
739
  class ResourceUtilizationReport
692
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
693
741
 
@@ -1232,6 +1280,20 @@ module Google
1232
1280
  end
1233
1281
  end
1234
1282
 
1283
+ class AutoscalingSchedule
1284
+ # @private
1285
+ class Representation < Google::Apis::Core::JsonRepresentation
1286
+ property :crontab, as: 'crontab'
1287
+ property :duration, as: 'duration'
1288
+ property :name, as: 'name'
1289
+ property :parameters, as: 'parameters', class: Google::Apis::DataflowV1b3::Parameters, decorator: Google::Apis::DataflowV1b3::Parameters::Representation
1290
+
1291
+ property :priority, :numeric_string => true, as: 'priority'
1292
+ property :time_zone, as: 'timeZone'
1293
+ property :update_time, as: 'updateTime'
1294
+ end
1295
+ end
1296
+
1235
1297
  class AutoscalingSettings
1236
1298
  # @private
1237
1299
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1348,6 +1410,23 @@ module Google
1348
1410
  end
1349
1411
  end
1350
1412
 
1413
+ class ConfigStoreSetting
1414
+ # @private
1415
+ class Representation < Google::Apis::Core::JsonRepresentation
1416
+ property :name, as: 'name'
1417
+ property :value, as: 'value', class: Google::Apis::DataflowV1b3::ConfigStoreSettingValue, decorator: Google::Apis::DataflowV1b3::ConfigStoreSettingValue::Representation
1418
+
1419
+ end
1420
+ end
1421
+
1422
+ class ConfigStoreSettingValue
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ property :bool_value, as: 'boolValue'
1426
+ property :string_value, as: 'stringValue'
1427
+ end
1428
+ end
1429
+
1351
1430
  class ContainerSpec
1352
1431
  # @private
1353
1432
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1586,6 +1665,12 @@ module Google
1586
1665
  end
1587
1666
  end
1588
1667
 
1668
+ class Empty
1669
+ # @private
1670
+ class Representation < Google::Apis::Core::JsonRepresentation
1671
+ end
1672
+ end
1673
+
1589
1674
  class Environment
1590
1675
  # @private
1591
1676
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2065,6 +2150,15 @@ module Google
2065
2150
  end
2066
2151
  end
2067
2152
 
2153
+ class ListConfigStoreSettingsResponse
2154
+ # @private
2155
+ class Representation < Google::Apis::Core::JsonRepresentation
2156
+ collection :config_store_settings, as: 'configStoreSettings', class: Google::Apis::DataflowV1b3::ConfigStoreSetting, decorator: Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
2157
+
2158
+ property :next_page_token, as: 'nextPageToken'
2159
+ end
2160
+ end
2161
+
2068
2162
  class ListJobMessagesResponse
2069
2163
  # @private
2070
2164
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2280,6 +2374,16 @@ module Google
2280
2374
  end
2281
2375
  end
2282
2376
 
2377
+ class Parameters
2378
+ # @private
2379
+ class Representation < Google::Apis::Core::JsonRepresentation
2380
+ property :cpu_utilization_target, as: 'cpuUtilizationTarget'
2381
+ property :latency_target, as: 'latencyTarget'
2382
+ property :max_worker_count, as: 'maxWorkerCount'
2383
+ property :min_worker_count, as: 'minWorkerCount'
2384
+ end
2385
+ end
2386
+
2283
2387
  class PartialGroupByKeyInstruction
2284
2388
  # @private
2285
2389
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2424,6 +2528,22 @@ module Google
2424
2528
  end
2425
2529
  end
2426
2530
 
2531
+ class ResolveConfigStoreSettingRequest
2532
+ # @private
2533
+ class Representation < Google::Apis::Core::JsonRepresentation
2534
+ end
2535
+ end
2536
+
2537
+ class ResolveConfigStoreSettingResponse
2538
+ # @private
2539
+ class Representation < Google::Apis::Core::JsonRepresentation
2540
+ collection :choices, as: 'choices', class: Google::Apis::DataflowV1b3::ConfigStoreSetting, decorator: Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
2541
+
2542
+ property :setting, as: 'setting', class: Google::Apis::DataflowV1b3::ConfigStoreSetting, decorator: Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
2543
+
2544
+ end
2545
+ end
2546
+
2427
2547
  class ResourceUtilizationReport
2428
2548
  # @private
2429
2549
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2487,6 +2607,8 @@ module Google
2487
2607
  property :latency_tier, as: 'latencyTier'
2488
2608
  property :max_num_workers, as: 'maxNumWorkers'
2489
2609
  property :min_num_workers, as: 'minNumWorkers'
2610
+ collection :schedules, as: 'schedules', class: Google::Apis::DataflowV1b3::AutoscalingSchedule, decorator: Google::Apis::DataflowV1b3::AutoscalingSchedule::Representation
2611
+
2490
2612
  property :worker_utilization_hint, as: 'workerUtilizationHint'
2491
2613
  end
2492
2614
  end