google-apis-dataflow_v1b3 0.19.0 → 0.22.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/dataflow_v1b3/classes.rb +18 -16
- data/lib/google/apis/dataflow_v1b3/gem_version.rb +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60d7a263c80ce3122c246b060cb5f2948aba3e355780b9bf98c68980cf415a53
|
|
4
|
+
data.tar.gz: e0d98af5fa87a69c7754322cf969e03aa6256b5c83e09a58f7aa156d8be7903d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75f2c0a0c1c010b016556c7315a9d80bf82ededf64c7a38031e2d8c7f7dcf6acd5ced471334d086f2509b5a18123b36ad18b2065c538eb7397b531bea4039c24
|
|
7
|
+
data.tar.gz: edb1e17557af4dded8448011c9da3bd1e038371d52d871d890a6ab238cefd7d6615d006c3ce3a930b9bceea25afb7f60b2e0842eae046d4b8615dc0e6189330b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.22.0 (2022-06-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.5.0
|
|
6
|
+
|
|
7
|
+
### v0.21.0 (2022-05-20)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20220513
|
|
10
|
+
|
|
11
|
+
### v0.20.0 (2022-04-21)
|
|
12
|
+
|
|
13
|
+
* Regenerated from discovery document revision 20220414
|
|
14
|
+
|
|
3
15
|
### v0.19.0 (2022-04-14)
|
|
4
16
|
|
|
5
17
|
* Regenerated from discovery document revision 20220405
|
|
@@ -1490,10 +1490,12 @@ module Google
|
|
|
1490
1490
|
# @return [Fixnum]
|
|
1491
1491
|
attr_accessor :disk_size_gb
|
|
1492
1492
|
|
|
1493
|
-
# If true,
|
|
1494
|
-
#
|
|
1495
|
-
#
|
|
1496
|
-
# the
|
|
1493
|
+
# If true, when processing time is spent almost entirely on garbage collection (
|
|
1494
|
+
# GC), saves a heap dump before ending the thread or process. If false, ends the
|
|
1495
|
+
# thread or process without saving a heap dump. Does not save a heap dump when
|
|
1496
|
+
# the Java Virtual Machine (JVM) has an out of memory error during processing.
|
|
1497
|
+
# The location of the heap file is either echoed back to the user, or the user
|
|
1498
|
+
# is given the opportunity to download the heap file.
|
|
1497
1499
|
# Corresponds to the JSON property `dumpHeapOnOom`
|
|
1498
1500
|
# @return [Boolean]
|
|
1499
1501
|
attr_accessor :dump_heap_on_oom
|
|
@@ -1550,9 +1552,8 @@ module Google
|
|
|
1550
1552
|
# @return [Fixnum]
|
|
1551
1553
|
attr_accessor :num_workers
|
|
1552
1554
|
|
|
1553
|
-
# Cloud Storage bucket (directory) to upload heap dumps to
|
|
1554
|
-
#
|
|
1555
|
-
# dump_heap_on_oom is set to true).
|
|
1555
|
+
# Cloud Storage bucket (directory) to upload heap dumps to. Enabling this field
|
|
1556
|
+
# implies that `dump_heap_on_oom` is set to true.
|
|
1556
1557
|
# Corresponds to the JSON property `saveHeapDumpsToGcsPath`
|
|
1557
1558
|
# @return [String]
|
|
1558
1559
|
attr_accessor :save_heap_dumps_to_gcs_path
|
|
@@ -2085,11 +2086,11 @@ module Google
|
|
|
2085
2086
|
# @return [String]
|
|
2086
2087
|
attr_accessor :location
|
|
2087
2088
|
|
|
2088
|
-
# The user-specified Cloud Dataflow job name. Only one Job with a given name
|
|
2089
|
-
# exist in a project at any given time.
|
|
2090
|
-
#
|
|
2091
|
-
# existing Job
|
|
2092
|
-
# [a-z0-9])?`
|
|
2089
|
+
# The user-specified Cloud Dataflow job name. Only one Job with a given name can
|
|
2090
|
+
# exist in a project within one region at any given time. Jobs in different
|
|
2091
|
+
# regions can have the same name. If a caller attempts to create a Job with the
|
|
2092
|
+
# same name as an already-existing Job, the attempt returns the existing Job.
|
|
2093
|
+
# The name must match the regular expression `[a-z]([-a-z0-9]`0,38`[a-z0-9])?`
|
|
2093
2094
|
# Corresponds to the JSON property `name`
|
|
2094
2095
|
# @return [String]
|
|
2095
2096
|
attr_accessor :name
|
|
@@ -4057,13 +4058,14 @@ module Google
|
|
|
4057
4058
|
end
|
|
4058
4059
|
end
|
|
4059
4060
|
|
|
4060
|
-
# Defines
|
|
4061
|
+
# Defines an SDK harness container for executing Dataflow pipelines.
|
|
4061
4062
|
class SdkHarnessContainerImage
|
|
4062
4063
|
include Google::Apis::Core::Hashable
|
|
4063
4064
|
|
|
4064
|
-
# The set of capabilities enumerated in the above Environment proto. See also
|
|
4065
|
-
# https://github.com/apache/beam/blob/master/model/
|
|
4066
|
-
# beam_runner_api.
|
|
4065
|
+
# The set of capabilities enumerated in the above Environment proto. See also [
|
|
4066
|
+
# beam_runner_api.proto](https://github.com/apache/beam/blob/master/model/
|
|
4067
|
+
# pipeline/src/main/proto/org/apache/beam/model/pipeline/v1/beam_runner_api.
|
|
4068
|
+
# proto)
|
|
4067
4069
|
# Corresponds to the JSON property `capabilities`
|
|
4068
4070
|
# @return [Array<String>]
|
|
4069
4071
|
attr_accessor :capabilities
|
|
@@ -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.22.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220513"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.22.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
19
|
+
version: '0.5'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '0.
|
|
29
|
+
version: '0.5'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.22.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.3.
|
|
78
|
+
rubygems_version: 3.3.14
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Dataflow API V1b3
|