google-apis-dataflow_v1b3 0.76.0 → 0.78.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: c90d2befd2f2ff920f38172b4fe2d80501e754cf25848aaa66b69e87969704fc
|
|
4
|
+
data.tar.gz: c126ea7204e7956e6c7232e7d3983b72836d1286d08847b9762533985fb1757b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecb9066537c83bed355ba2063ff0781f7ceea12cf7bae030a78b47632464b5b10113be74258d6378b67f441110a503230ba7bb0c8305f3931868e35980b0b417
|
|
7
|
+
data.tar.gz: 1010e038e3d6d3a1ceae52983c5b0d33c846ab7f9f6dc2c996c21f352eb9fbf5110b0cdf745579acf6b6e7d6bc8a7214faa1c14d23a28ba38ad8b4df8fb97388
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.78.0 (2026-02-22)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260213
|
|
6
|
+
|
|
7
|
+
### v0.77.0 (2026-02-15)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260208
|
|
10
|
+
|
|
3
11
|
### v0.76.0 (2026-02-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260127
|
|
@@ -2569,6 +2569,12 @@ module Google
|
|
|
2569
2569
|
# @return [String]
|
|
2570
2570
|
attr_accessor :name
|
|
2571
2571
|
|
|
2572
|
+
# Output only. Indicates whether the job can be paused.
|
|
2573
|
+
# Corresponds to the JSON property `pausable`
|
|
2574
|
+
# @return [Boolean]
|
|
2575
|
+
attr_accessor :pausable
|
|
2576
|
+
alias_method :pausable?, :pausable
|
|
2577
|
+
|
|
2572
2578
|
# A descriptive representation of submitted pipeline as well as the executed
|
|
2573
2579
|
# form. This data is provided by the Dataflow service for ease of visualizing
|
|
2574
2580
|
# the pipeline and interpreting Dataflow provided metrics.
|
|
@@ -2696,6 +2702,7 @@ module Google
|
|
|
2696
2702
|
@labels = args[:labels] if args.key?(:labels)
|
|
2697
2703
|
@location = args[:location] if args.key?(:location)
|
|
2698
2704
|
@name = args[:name] if args.key?(:name)
|
|
2705
|
+
@pausable = args[:pausable] if args.key?(:pausable)
|
|
2699
2706
|
@pipeline_description = args[:pipeline_description] if args.key?(:pipeline_description)
|
|
2700
2707
|
@project_id = args[:project_id] if args.key?(:project_id)
|
|
2701
2708
|
@replace_job_id = args[:replace_job_id] if args.key?(:replace_job_id)
|
|
@@ -4844,12 +4851,18 @@ module Google
|
|
|
4844
4851
|
class RuntimeUpdatableParams
|
|
4845
4852
|
include Google::Apis::Core::Hashable
|
|
4846
4853
|
|
|
4847
|
-
# Optional.
|
|
4848
|
-
# must be non-negative.
|
|
4854
|
+
# Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold
|
|
4855
|
+
# duration in seconds for autoscaling. Value must be non-negative.
|
|
4849
4856
|
# Corresponds to the JSON property `acceptableBacklogDuration`
|
|
4850
4857
|
# @return [String]
|
|
4851
4858
|
attr_accessor :acceptable_backlog_duration
|
|
4852
4859
|
|
|
4860
|
+
# Optional. The backlog threshold tier for autoscaling. Value must be one of "
|
|
4861
|
+
# low-latency", "medium-latency", or "high-latency".
|
|
4862
|
+
# Corresponds to the JSON property `autoscalingTier`
|
|
4863
|
+
# @return [String]
|
|
4864
|
+
attr_accessor :autoscaling_tier
|
|
4865
|
+
|
|
4853
4866
|
# The maximum number of workers to cap autoscaling at. This field is currently
|
|
4854
4867
|
# only supported for Streaming Engine jobs.
|
|
4855
4868
|
# Corresponds to the JSON property `maxNumWorkers`
|
|
@@ -4878,6 +4891,7 @@ module Google
|
|
|
4878
4891
|
# Update properties of this object
|
|
4879
4892
|
def update!(**args)
|
|
4880
4893
|
@acceptable_backlog_duration = args[:acceptable_backlog_duration] if args.key?(:acceptable_backlog_duration)
|
|
4894
|
+
@autoscaling_tier = args[:autoscaling_tier] if args.key?(:autoscaling_tier)
|
|
4881
4895
|
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
|
4882
4896
|
@min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
|
|
4883
4897
|
@worker_utilization_hint = args[:worker_utilization_hint] if args.key?(:worker_utilization_hint)
|
|
@@ -7882,6 +7896,16 @@ module Google
|
|
|
7882
7896
|
# @return [String]
|
|
7883
7897
|
attr_accessor :default_package_set
|
|
7884
7898
|
|
|
7899
|
+
# Optional. IOPS provisioned for the root disk for VMs.
|
|
7900
|
+
# Corresponds to the JSON property `diskProvisionedIops`
|
|
7901
|
+
# @return [Fixnum]
|
|
7902
|
+
attr_accessor :disk_provisioned_iops
|
|
7903
|
+
|
|
7904
|
+
# Optional. Throughput provisioned for the root disk for VMs.
|
|
7905
|
+
# Corresponds to the JSON property `diskProvisionedThroughputMibps`
|
|
7906
|
+
# @return [Fixnum]
|
|
7907
|
+
attr_accessor :disk_provisioned_throughput_mibps
|
|
7908
|
+
|
|
7885
7909
|
# Size of root disk for VMs, in GB. If zero or unspecified, the service will
|
|
7886
7910
|
# attempt to choose a reasonable default.
|
|
7887
7911
|
# Corresponds to the JSON property `diskSizeGb`
|
|
@@ -8012,6 +8036,8 @@ module Google
|
|
|
8012
8036
|
@autoscaling_settings = args[:autoscaling_settings] if args.key?(:autoscaling_settings)
|
|
8013
8037
|
@data_disks = args[:data_disks] if args.key?(:data_disks)
|
|
8014
8038
|
@default_package_set = args[:default_package_set] if args.key?(:default_package_set)
|
|
8039
|
+
@disk_provisioned_iops = args[:disk_provisioned_iops] if args.key?(:disk_provisioned_iops)
|
|
8040
|
+
@disk_provisioned_throughput_mibps = args[:disk_provisioned_throughput_mibps] if args.key?(:disk_provisioned_throughput_mibps)
|
|
8015
8041
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
8016
8042
|
@disk_source_image = args[:disk_source_image] if args.key?(:disk_source_image)
|
|
8017
8043
|
@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.78.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 = "20260213"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1871,6 +1871,7 @@ module Google
|
|
|
1871
1871
|
hash :labels, as: 'labels'
|
|
1872
1872
|
property :location, as: 'location'
|
|
1873
1873
|
property :name, as: 'name'
|
|
1874
|
+
property :pausable, as: 'pausable'
|
|
1874
1875
|
property :pipeline_description, as: 'pipelineDescription', class: Google::Apis::DataflowV1b3::PipelineDescription, decorator: Google::Apis::DataflowV1b3::PipelineDescription::Representation
|
|
1875
1876
|
|
|
1876
1877
|
property :project_id, as: 'projectId'
|
|
@@ -2481,6 +2482,7 @@ module Google
|
|
|
2481
2482
|
# @private
|
|
2482
2483
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2483
2484
|
property :acceptable_backlog_duration, as: 'acceptableBacklogDuration'
|
|
2485
|
+
property :autoscaling_tier, as: 'autoscalingTier'
|
|
2484
2486
|
property :max_num_workers, as: 'maxNumWorkers'
|
|
2485
2487
|
property :min_num_workers, as: 'minNumWorkers'
|
|
2486
2488
|
property :worker_utilization_hint, as: 'workerUtilizationHint'
|
|
@@ -3315,6 +3317,8 @@ module Google
|
|
|
3315
3317
|
collection :data_disks, as: 'dataDisks', class: Google::Apis::DataflowV1b3::Disk, decorator: Google::Apis::DataflowV1b3::Disk::Representation
|
|
3316
3318
|
|
|
3317
3319
|
property :default_package_set, as: 'defaultPackageSet'
|
|
3320
|
+
property :disk_provisioned_iops, :numeric_string => true, as: 'diskProvisionedIops'
|
|
3321
|
+
property :disk_provisioned_throughput_mibps, :numeric_string => true, as: 'diskProvisionedThroughputMibps'
|
|
3318
3322
|
property :disk_size_gb, as: 'diskSizeGb'
|
|
3319
3323
|
property :disk_source_image, as: 'diskSourceImage'
|
|
3320
3324
|
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.78.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.78.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:
|