google-apis-dataflow_v1b3 0.73.0 → 0.75.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1da519c4c95b617a028b4720c09b229e34c37caece726da9e4928bf0d3e493f7
|
|
4
|
+
data.tar.gz: 4f2a74ef11588b9ced92a451273324863c1ede8f837dc967fa70c47aef362ff8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2002aec39ac4a80b82b0e5569c0d5f831499ea8831c7b93d4f956b96d41ff0230b9cd092853cf49fc8d26ac95d7fa9512cda557dbc2b4fa9962707d05a3ca3e5
|
|
7
|
+
data.tar.gz: deff443d24f855f68607911123baedc7344c7bbea2a482f8d7facb4d9e7ccfce615f21ed4ecf697670f123c0bb1fddf9de88ad26c3ff0c054875322cc5852694
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.75.0 (2026-01-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260118
|
|
6
|
+
|
|
7
|
+
### v0.74.0 (2025-12-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251214
|
|
10
|
+
|
|
3
11
|
### v0.73.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251003
|
|
@@ -4837,6 +4837,12 @@ module Google
|
|
|
4837
4837
|
class RuntimeUpdatableParams
|
|
4838
4838
|
include Google::Apis::Core::Hashable
|
|
4839
4839
|
|
|
4840
|
+
# Optional. The backlog threshold duration in seconds for autoscaling. Value
|
|
4841
|
+
# must be non-negative.
|
|
4842
|
+
# Corresponds to the JSON property `acceptableBacklogDuration`
|
|
4843
|
+
# @return [String]
|
|
4844
|
+
attr_accessor :acceptable_backlog_duration
|
|
4845
|
+
|
|
4840
4846
|
# The maximum number of workers to cap autoscaling at. This field is currently
|
|
4841
4847
|
# only supported for Streaming Engine jobs.
|
|
4842
4848
|
# Corresponds to the JSON property `maxNumWorkers`
|
|
@@ -4864,6 +4870,7 @@ module Google
|
|
|
4864
4870
|
|
|
4865
4871
|
# Update properties of this object
|
|
4866
4872
|
def update!(**args)
|
|
4873
|
+
@acceptable_backlog_duration = args[:acceptable_backlog_duration] if args.key?(:acceptable_backlog_duration)
|
|
4867
4874
|
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
|
4868
4875
|
@min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
|
|
4869
4876
|
@worker_utilization_hint = args[:worker_utilization_hint] if args.key?(:worker_utilization_hint)
|
|
@@ -6447,6 +6454,11 @@ module Google
|
|
|
6447
6454
|
# @return [Array<Google::Apis::DataflowV1b3::StreamingComputationConfig>]
|
|
6448
6455
|
attr_accessor :streaming_computation_configs
|
|
6449
6456
|
|
|
6457
|
+
# Optional. The state tag encoding format version for streaming engine jobs.
|
|
6458
|
+
# Corresponds to the JSON property `streamingEngineStateTagEncodingVersion`
|
|
6459
|
+
# @return [Fixnum]
|
|
6460
|
+
attr_accessor :streaming_engine_state_tag_encoding_version
|
|
6461
|
+
|
|
6450
6462
|
# Map from user step names to state families.
|
|
6451
6463
|
# Corresponds to the JSON property `userStepToStateFamilyNameMap`
|
|
6452
6464
|
# @return [Hash<String,String>]
|
|
@@ -6489,6 +6501,7 @@ module Google
|
|
|
6489
6501
|
@max_work_item_commit_bytes = args[:max_work_item_commit_bytes] if args.key?(:max_work_item_commit_bytes)
|
|
6490
6502
|
@operational_limits = args[:operational_limits] if args.key?(:operational_limits)
|
|
6491
6503
|
@streaming_computation_configs = args[:streaming_computation_configs] if args.key?(:streaming_computation_configs)
|
|
6504
|
+
@streaming_engine_state_tag_encoding_version = args[:streaming_engine_state_tag_encoding_version] if args.key?(:streaming_engine_state_tag_encoding_version)
|
|
6492
6505
|
@user_step_to_state_family_name_map = args[:user_step_to_state_family_name_map] if args.key?(:user_step_to_state_family_name_map)
|
|
6493
6506
|
@user_worker_runner_v1_settings = args[:user_worker_runner_v1_settings] if args.key?(:user_worker_runner_v1_settings)
|
|
6494
6507
|
@user_worker_runner_v2_settings = args[:user_worker_runner_v2_settings] if args.key?(:user_worker_runner_v2_settings)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.75.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260118"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2479,6 +2479,7 @@ module Google
|
|
|
2479
2479
|
class RuntimeUpdatableParams
|
|
2480
2480
|
# @private
|
|
2481
2481
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2482
|
+
property :acceptable_backlog_duration, as: 'acceptableBacklogDuration'
|
|
2482
2483
|
property :max_num_workers, as: 'maxNumWorkers'
|
|
2483
2484
|
property :min_num_workers, as: 'minNumWorkers'
|
|
2484
2485
|
property :worker_utilization_hint, as: 'workerUtilizationHint'
|
|
@@ -2952,6 +2953,7 @@ module Google
|
|
|
2952
2953
|
|
|
2953
2954
|
collection :streaming_computation_configs, as: 'streamingComputationConfigs', class: Google::Apis::DataflowV1b3::StreamingComputationConfig, decorator: Google::Apis::DataflowV1b3::StreamingComputationConfig::Representation
|
|
2954
2955
|
|
|
2956
|
+
property :streaming_engine_state_tag_encoding_version, as: 'streamingEngineStateTagEncodingVersion'
|
|
2955
2957
|
hash :user_step_to_state_family_name_map, as: 'userStepToStateFamilyNameMap'
|
|
2956
2958
|
property :user_worker_runner_v1_settings, :base64 => true, as: 'userWorkerRunnerV1Settings'
|
|
2957
2959
|
property :user_worker_runner_v2_settings, :base64 => true, as: 'userWorkerRunnerV2Settings'
|
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.
|
|
4
|
+
version: 0.75.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.75.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:
|