google-apis-dataflow_v1b3 0.72.0 → 0.74.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: 4cce44605e7304579c801a2c3902818d11fdd9cd38df3fce268a3e8d23fe05ef
|
|
4
|
+
data.tar.gz: 40c42c598c58ba94b07a6b63a63d65a9df0c98f14aa86d37b96c6311ffecb7b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9948d5392e51f620043bcd75467fda95739418f946e7db9e9ac24fa204c75a2b7720daebbbd79912bf5d256ac9d6d895eae8010b452516953ab54345437c46c8
|
|
7
|
+
data.tar.gz: af2de0fb3e49eb6f70b69598c020e95bb1f486ce2f101749dbc00eb40e798b49b6702dfbc6b746bf56e7a75a7a4bc3ebe44d4a2a342a9819b00b19dbad3c1f29
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.74.0 (2025-12-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251214
|
|
6
|
+
|
|
7
|
+
### v0.73.0 (2025-10-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251003
|
|
10
|
+
|
|
3
11
|
### v0.72.0 (2025-08-17)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250812
|
|
@@ -1550,7 +1550,7 @@ module Google
|
|
|
1550
1550
|
attr_accessor :use_streaming_engine_resource_based_billing
|
|
1551
1551
|
alias_method :use_streaming_engine_resource_based_billing?, :use_streaming_engine_resource_based_billing
|
|
1552
1552
|
|
|
1553
|
-
# A description of the process that generated the request.
|
|
1553
|
+
# Optional. A description of the process that generated the request.
|
|
1554
1554
|
# Corresponds to the JSON property `userAgent`
|
|
1555
1555
|
# @return [Hash<String,Object>]
|
|
1556
1556
|
attr_accessor :user_agent
|
|
@@ -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)
|
|
@@ -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.74.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 = "20251214"
|
|
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'
|
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.74.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.74.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:
|