google-apis-dataflow_v1b3 0.78.0 → 0.80.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: 50ca8dd01611b85689eb4b6d574f77e377f384113488ab590755c788efb1b4b0
|
|
4
|
+
data.tar.gz: 3add316e5e7a5ac32ba40334810bd02971a2daa55b2acfccebd691c6613668fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f889299e3b13d4208c3a141dd30bfa42b1b29f5d7fb5edc3582e58f4909120a6daee3002723ca1eebae3e65d10351f1d426f8f2ee03fcdbb2fec5990751229a
|
|
7
|
+
data.tar.gz: c9c0a2427b99a3f4438eff4280903eeb3df74a3a4cee2bf9fbc0b193e7c599b14c0434918b1b6c4b30dc597c8bfc83cac2b2dc0dd87190b7e51417fc7f8367f6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.80.0 (2026-05-10)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260503
|
|
6
|
+
|
|
7
|
+
### v0.79.0 (2026-04-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260405
|
|
10
|
+
|
|
3
11
|
### v0.78.0 (2026-02-22)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260213
|
|
@@ -1839,7 +1839,8 @@ module Google
|
|
|
1839
1839
|
# @return [String]
|
|
1840
1840
|
attr_accessor :kms_key_name
|
|
1841
1841
|
|
|
1842
|
-
# The machine type to use for launching the job.
|
|
1842
|
+
# The machine type to use for launching the job. If not set, Dataflow will
|
|
1843
|
+
# select a default machine type.
|
|
1843
1844
|
# Corresponds to the JSON property `launcherMachineType`
|
|
1844
1845
|
# @return [String]
|
|
1845
1846
|
attr_accessor :launcher_machine_type
|
|
@@ -3819,6 +3820,13 @@ module Google
|
|
|
3819
3820
|
# @return [String]
|
|
3820
3821
|
attr_accessor :name
|
|
3821
3822
|
|
|
3823
|
+
# Optional. The hex-encoded SHA256 checksum of the package. If the checksum is
|
|
3824
|
+
# provided, the worker will verify the checksum of the package before using it.
|
|
3825
|
+
# If the checksum does not match, the worker will fail to start.
|
|
3826
|
+
# Corresponds to the JSON property `sha256`
|
|
3827
|
+
# @return [String]
|
|
3828
|
+
attr_accessor :sha256
|
|
3829
|
+
|
|
3822
3830
|
def initialize(**args)
|
|
3823
3831
|
update!(**args)
|
|
3824
3832
|
end
|
|
@@ -3827,6 +3835,7 @@ module Google
|
|
|
3827
3835
|
def update!(**args)
|
|
3828
3836
|
@location = args[:location] if args.key?(:location)
|
|
3829
3837
|
@name = args[:name] if args.key?(:name)
|
|
3838
|
+
@sha256 = args[:sha256] if args.key?(:sha256)
|
|
3830
3839
|
end
|
|
3831
3840
|
end
|
|
3832
3841
|
|
|
@@ -4851,18 +4860,25 @@ module Google
|
|
|
4851
4860
|
class RuntimeUpdatableParams
|
|
4852
4861
|
include Google::Apis::Core::Hashable
|
|
4853
4862
|
|
|
4854
|
-
# Optional. Deprecated: Use `
|
|
4863
|
+
# Optional. Deprecated: Use `latency_tier` instead. The backlog threshold
|
|
4855
4864
|
# duration in seconds for autoscaling. Value must be non-negative.
|
|
4856
4865
|
# Corresponds to the JSON property `acceptableBacklogDuration`
|
|
4857
4866
|
# @return [String]
|
|
4858
4867
|
attr_accessor :acceptable_backlog_duration
|
|
4859
4868
|
|
|
4860
|
-
# Optional.
|
|
4861
|
-
# low-latency", "medium-latency", or "
|
|
4869
|
+
# Optional. Deprecated: Use `latency_tier` instead. The backlog threshold tier
|
|
4870
|
+
# for autoscaling. Value must be one of "low-latency", "medium-latency", or "
|
|
4871
|
+
# high-latency".
|
|
4862
4872
|
# Corresponds to the JSON property `autoscalingTier`
|
|
4863
4873
|
# @return [String]
|
|
4864
4874
|
attr_accessor :autoscaling_tier
|
|
4865
4875
|
|
|
4876
|
+
# Optional. The backlog threshold tier for autoscaling. Value must be one of "
|
|
4877
|
+
# low-latency", "medium-latency", or "high-latency".
|
|
4878
|
+
# Corresponds to the JSON property `latencyTier`
|
|
4879
|
+
# @return [String]
|
|
4880
|
+
attr_accessor :latency_tier
|
|
4881
|
+
|
|
4866
4882
|
# The maximum number of workers to cap autoscaling at. This field is currently
|
|
4867
4883
|
# only supported for Streaming Engine jobs.
|
|
4868
4884
|
# Corresponds to the JSON property `maxNumWorkers`
|
|
@@ -4892,6 +4908,7 @@ module Google
|
|
|
4892
4908
|
def update!(**args)
|
|
4893
4909
|
@acceptable_backlog_duration = args[:acceptable_backlog_duration] if args.key?(:acceptable_backlog_duration)
|
|
4894
4910
|
@autoscaling_tier = args[:autoscaling_tier] if args.key?(:autoscaling_tier)
|
|
4911
|
+
@latency_tier = args[:latency_tier] if args.key?(:latency_tier)
|
|
4895
4912
|
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
|
4896
4913
|
@min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
|
|
4897
4914
|
@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.80.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 = "20260503"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2204,6 +2204,7 @@ module Google
|
|
|
2204
2204
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2205
2205
|
property :location, as: 'location'
|
|
2206
2206
|
property :name, as: 'name'
|
|
2207
|
+
property :sha256, as: 'sha256'
|
|
2207
2208
|
end
|
|
2208
2209
|
end
|
|
2209
2210
|
|
|
@@ -2483,6 +2484,7 @@ module Google
|
|
|
2483
2484
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2484
2485
|
property :acceptable_backlog_duration, as: 'acceptableBacklogDuration'
|
|
2485
2486
|
property :autoscaling_tier, as: 'autoscalingTier'
|
|
2487
|
+
property :latency_tier, as: 'latencyTier'
|
|
2486
2488
|
property :max_num_workers, as: 'maxNumWorkers'
|
|
2487
2489
|
property :min_num_workers, as: 'minNumWorkers'
|
|
2488
2490
|
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.80.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.80.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:
|