google-apis-dataflow_v1b3 0.65.0 → 0.67.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: 4a706ded03b705cc31c95af3cc1c7444dc57665374d473bc7a5b572a30917929
|
4
|
+
data.tar.gz: 6d59e227d1ea734e119d020d5dbb9d666279417fd9c1d14e437f7ae89f7d2451
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c370bc4b97c5c7a06067504b385885eb413bed13b1cb44a1ac2ebeeee23497c35efe1d0ae3b60e41a244665a03b4076681ca9c9112298a40e0eafccd6039d85
|
7
|
+
data.tar.gz: da7b14a1a45c280d84a241c35cbf5f464b9dfaf40a30e84973bd1e53d5ccd51bc933ec0e22f75048707ed53c8fbccba171075ef5f5e6a0964f1ae29ce75d78f7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.67.0 (2025-04-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250421
|
6
|
+
|
7
|
+
### v0.66.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250310
|
10
|
+
|
3
11
|
### v0.65.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250131
|
@@ -1768,6 +1768,11 @@ module Google
|
|
1768
1768
|
# @return [Array<String>]
|
1769
1769
|
attr_accessor :additional_experiments
|
1770
1770
|
|
1771
|
+
# Optional. Additional pipeline option flags for the job.
|
1772
|
+
# Corresponds to the JSON property `additionalPipelineOptions`
|
1773
|
+
# @return [Array<String>]
|
1774
|
+
attr_accessor :additional_pipeline_options
|
1775
|
+
|
1771
1776
|
# Additional user labels to be specified for the job. Keys and values must
|
1772
1777
|
# follow the restrictions specified in the [labeling restrictions](https://cloud.
|
1773
1778
|
# google.com/compute/docs/labeling-resources#restrictions) page. An object
|
@@ -1937,6 +1942,7 @@ module Google
|
|
1937
1942
|
# Update properties of this object
|
1938
1943
|
def update!(**args)
|
1939
1944
|
@additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
|
1945
|
+
@additional_pipeline_options = args[:additional_pipeline_options] if args.key?(:additional_pipeline_options)
|
1940
1946
|
@additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
|
1941
1947
|
@autoscaling_algorithm = args[:autoscaling_algorithm] if args.key?(:autoscaling_algorithm)
|
1942
1948
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
@@ -3470,10 +3476,18 @@ module Google
|
|
3470
3476
|
end
|
3471
3477
|
end
|
3472
3478
|
|
3473
|
-
# Describes the state of a metric.
|
3479
|
+
# Describes the state of a metric.
|
3474
3480
|
class MetricUpdate
|
3475
3481
|
include Google::Apis::Core::Hashable
|
3476
3482
|
|
3483
|
+
# Worker-computed aggregate value for the "Trie" aggregation kind. The only
|
3484
|
+
# possible value type is a BoundedTrieNode. Introduced this field to avoid
|
3485
|
+
# breaking older SDKs when Dataflow service starts to populate the `bounded_trie`
|
3486
|
+
# field.
|
3487
|
+
# Corresponds to the JSON property `boundedTrie`
|
3488
|
+
# @return [Object]
|
3489
|
+
attr_accessor :bounded_trie
|
3490
|
+
|
3477
3491
|
# True if this metric is reported as the total cumulative aggregate value
|
3478
3492
|
# accumulated since the worker started working on this WorkItem. By default this
|
3479
3493
|
# is false, indicating that this metric is reported as a delta that is not
|
@@ -3560,6 +3574,7 @@ module Google
|
|
3560
3574
|
|
3561
3575
|
# Update properties of this object
|
3562
3576
|
def update!(**args)
|
3577
|
+
@bounded_trie = args[:bounded_trie] if args.key?(:bounded_trie)
|
3563
3578
|
@cumulative = args[:cumulative] if args.key?(:cumulative)
|
3564
3579
|
@distribution = args[:distribution] if args.key?(:distribution)
|
3565
3580
|
@gauge = args[:gauge] if args.key?(:gauge)
|
@@ -4592,6 +4607,11 @@ module Google
|
|
4592
4607
|
# @return [Array<String>]
|
4593
4608
|
attr_accessor :additional_experiments
|
4594
4609
|
|
4610
|
+
# Optional. Additional pipeline option flags for the job.
|
4611
|
+
# Corresponds to the JSON property `additionalPipelineOptions`
|
4612
|
+
# @return [Array<String>]
|
4613
|
+
attr_accessor :additional_pipeline_options
|
4614
|
+
|
4595
4615
|
# Optional. Additional user labels to be specified for the job. Keys and values
|
4596
4616
|
# should follow the restrictions specified in the [labeling restrictions](https:/
|
4597
4617
|
# /cloud.google.com/compute/docs/labeling-resources#restrictions) page. An
|
@@ -4719,6 +4739,7 @@ module Google
|
|
4719
4739
|
# Update properties of this object
|
4720
4740
|
def update!(**args)
|
4721
4741
|
@additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
|
4742
|
+
@additional_pipeline_options = args[:additional_pipeline_options] if args.key?(:additional_pipeline_options)
|
4722
4743
|
@additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
|
4723
4744
|
@bypass_temp_dir_validation = args[:bypass_temp_dir_validation] if args.key?(:bypass_temp_dir_validation)
|
4724
4745
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
@@ -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.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250421"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1642,6 +1642,7 @@ module Google
|
|
1642
1642
|
# @private
|
1643
1643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1644
1644
|
collection :additional_experiments, as: 'additionalExperiments'
|
1645
|
+
collection :additional_pipeline_options, as: 'additionalPipelineOptions'
|
1645
1646
|
hash :additional_user_labels, as: 'additionalUserLabels'
|
1646
1647
|
property :autoscaling_algorithm, as: 'autoscalingAlgorithm'
|
1647
1648
|
property :disk_size_gb, as: 'diskSizeGb'
|
@@ -2094,6 +2095,7 @@ module Google
|
|
2094
2095
|
class MetricUpdate
|
2095
2096
|
# @private
|
2096
2097
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2098
|
+
property :bounded_trie, as: 'boundedTrie'
|
2097
2099
|
property :cumulative, as: 'cumulative'
|
2098
2100
|
property :distribution, as: 'distribution'
|
2099
2101
|
property :gauge, as: 'gauge'
|
@@ -2403,6 +2405,7 @@ module Google
|
|
2403
2405
|
# @private
|
2404
2406
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2405
2407
|
collection :additional_experiments, as: 'additionalExperiments'
|
2408
|
+
collection :additional_pipeline_options, as: 'additionalPipelineOptions'
|
2406
2409
|
hash :additional_user_labels, as: 'additionalUserLabels'
|
2407
2410
|
property :bypass_temp_dir_validation, as: 'bypassTempDirValidation'
|
2408
2411
|
property :disk_size_gb, as: 'diskSizeGb'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.67.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:
|