google-apis-dataflow_v1b3 0.77.0 → 0.79.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: 9bf4832b08f18fcd319848fa61432f7e4074aacda8eac1ceb5e7c6adc08b41f5
|
|
4
|
+
data.tar.gz: 3e4b1d06b8cd177ceba5b1742a69b2294783cc292e6e00705ce2b939280115c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33bb9768f5554f1542426670750e24c4d6357546aa4b5f14b3f85d07c435f8275995d51902cea9c402af6aabab52d67b806d38d05578f8c315c54bdbea0e5a6e
|
|
7
|
+
data.tar.gz: 82d1f1488a159a6a6362522a3dad8063be80c6c7a4c9b4b8927ce5243ac47f2c0ca3ce37c49d52b4d90683ae75826542fffc06184343e613359f13c56c530d11
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.79.0 (2026-04-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260405
|
|
6
|
+
|
|
7
|
+
### v0.78.0 (2026-02-22)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260213
|
|
10
|
+
|
|
3
11
|
### v0.77.0 (2026-02-15)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260208
|
|
@@ -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
|
|
@@ -4851,18 +4852,25 @@ module Google
|
|
|
4851
4852
|
class RuntimeUpdatableParams
|
|
4852
4853
|
include Google::Apis::Core::Hashable
|
|
4853
4854
|
|
|
4854
|
-
# Optional. Deprecated: Use `
|
|
4855
|
+
# Optional. Deprecated: Use `latency_tier` instead. The backlog threshold
|
|
4855
4856
|
# duration in seconds for autoscaling. Value must be non-negative.
|
|
4856
4857
|
# Corresponds to the JSON property `acceptableBacklogDuration`
|
|
4857
4858
|
# @return [String]
|
|
4858
4859
|
attr_accessor :acceptable_backlog_duration
|
|
4859
4860
|
|
|
4860
|
-
# Optional.
|
|
4861
|
-
# low-latency", "medium-latency", or "
|
|
4861
|
+
# Optional. Deprecated: Use `latency_tier` instead. The backlog threshold tier
|
|
4862
|
+
# for autoscaling. Value must be one of "low-latency", "medium-latency", or "
|
|
4863
|
+
# high-latency".
|
|
4862
4864
|
# Corresponds to the JSON property `autoscalingTier`
|
|
4863
4865
|
# @return [String]
|
|
4864
4866
|
attr_accessor :autoscaling_tier
|
|
4865
4867
|
|
|
4868
|
+
# Optional. The backlog threshold tier for autoscaling. Value must be one of "
|
|
4869
|
+
# low-latency", "medium-latency", or "high-latency".
|
|
4870
|
+
# Corresponds to the JSON property `latencyTier`
|
|
4871
|
+
# @return [String]
|
|
4872
|
+
attr_accessor :latency_tier
|
|
4873
|
+
|
|
4866
4874
|
# The maximum number of workers to cap autoscaling at. This field is currently
|
|
4867
4875
|
# only supported for Streaming Engine jobs.
|
|
4868
4876
|
# Corresponds to the JSON property `maxNumWorkers`
|
|
@@ -4892,6 +4900,7 @@ module Google
|
|
|
4892
4900
|
def update!(**args)
|
|
4893
4901
|
@acceptable_backlog_duration = args[:acceptable_backlog_duration] if args.key?(:acceptable_backlog_duration)
|
|
4894
4902
|
@autoscaling_tier = args[:autoscaling_tier] if args.key?(:autoscaling_tier)
|
|
4903
|
+
@latency_tier = args[:latency_tier] if args.key?(:latency_tier)
|
|
4895
4904
|
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
|
4896
4905
|
@min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
|
|
4897
4906
|
@worker_utilization_hint = args[:worker_utilization_hint] if args.key?(:worker_utilization_hint)
|
|
@@ -7896,6 +7905,16 @@ module Google
|
|
|
7896
7905
|
# @return [String]
|
|
7897
7906
|
attr_accessor :default_package_set
|
|
7898
7907
|
|
|
7908
|
+
# Optional. IOPS provisioned for the root disk for VMs.
|
|
7909
|
+
# Corresponds to the JSON property `diskProvisionedIops`
|
|
7910
|
+
# @return [Fixnum]
|
|
7911
|
+
attr_accessor :disk_provisioned_iops
|
|
7912
|
+
|
|
7913
|
+
# Optional. Throughput provisioned for the root disk for VMs.
|
|
7914
|
+
# Corresponds to the JSON property `diskProvisionedThroughputMibps`
|
|
7915
|
+
# @return [Fixnum]
|
|
7916
|
+
attr_accessor :disk_provisioned_throughput_mibps
|
|
7917
|
+
|
|
7899
7918
|
# Size of root disk for VMs, in GB. If zero or unspecified, the service will
|
|
7900
7919
|
# attempt to choose a reasonable default.
|
|
7901
7920
|
# Corresponds to the JSON property `diskSizeGb`
|
|
@@ -8026,6 +8045,8 @@ module Google
|
|
|
8026
8045
|
@autoscaling_settings = args[:autoscaling_settings] if args.key?(:autoscaling_settings)
|
|
8027
8046
|
@data_disks = args[:data_disks] if args.key?(:data_disks)
|
|
8028
8047
|
@default_package_set = args[:default_package_set] if args.key?(:default_package_set)
|
|
8048
|
+
@disk_provisioned_iops = args[:disk_provisioned_iops] if args.key?(:disk_provisioned_iops)
|
|
8049
|
+
@disk_provisioned_throughput_mibps = args[:disk_provisioned_throughput_mibps] if args.key?(:disk_provisioned_throughput_mibps)
|
|
8029
8050
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
8030
8051
|
@disk_source_image = args[:disk_source_image] if args.key?(:disk_source_image)
|
|
8031
8052
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
@@ -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.79.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 = "20260405"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2483,6 +2483,7 @@ module Google
|
|
|
2483
2483
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2484
2484
|
property :acceptable_backlog_duration, as: 'acceptableBacklogDuration'
|
|
2485
2485
|
property :autoscaling_tier, as: 'autoscalingTier'
|
|
2486
|
+
property :latency_tier, as: 'latencyTier'
|
|
2486
2487
|
property :max_num_workers, as: 'maxNumWorkers'
|
|
2487
2488
|
property :min_num_workers, as: 'minNumWorkers'
|
|
2488
2489
|
property :worker_utilization_hint, as: 'workerUtilizationHint'
|
|
@@ -3317,6 +3318,8 @@ module Google
|
|
|
3317
3318
|
collection :data_disks, as: 'dataDisks', class: Google::Apis::DataflowV1b3::Disk, decorator: Google::Apis::DataflowV1b3::Disk::Representation
|
|
3318
3319
|
|
|
3319
3320
|
property :default_package_set, as: 'defaultPackageSet'
|
|
3321
|
+
property :disk_provisioned_iops, :numeric_string => true, as: 'diskProvisionedIops'
|
|
3322
|
+
property :disk_provisioned_throughput_mibps, :numeric_string => true, as: 'diskProvisionedThroughputMibps'
|
|
3320
3323
|
property :disk_size_gb, as: 'diskSizeGb'
|
|
3321
3324
|
property :disk_source_image, as: 'diskSourceImage'
|
|
3322
3325
|
property :disk_type, as: 'diskType'
|
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.79.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.79.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:
|