google-cloud-dataflow 0.7.0 → 0.9.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/README.md +1 -1
- data/lib/google/cloud/dataflow/version.rb +1 -1
- data/lib/google/cloud/dataflow.rb +5 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d25f561e8196ef94ad42633a80b0f199c1fea9125941e2d9b99443057a05ebb9
|
|
4
|
+
data.tar.gz: 3cd97667aea82ea60d9f324f8285896e89512853f48875b9ac23461a92c9a271
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fac2944a92fcf1f35629940b3bab6f941597dfca39605205e7e42b58f4d92863a071ff1de284259f108ff298715ef65183b07353a16a74d23cadc9d9dae2d6d
|
|
7
|
+
data.tar.gz: 8022f9ac132ba7327f1636427f8e145b2b2f355c087995786935cc1f39b327e7f43106e5e2e778b4beeccf599e180608e80842b8853a3c31a6b6542ad9fad28c
|
data/README.md
CHANGED
|
@@ -74,7 +74,7 @@ working, try updating the versioned clients in your bundle or installed gems:
|
|
|
74
74
|
|
|
75
75
|
## Supported Ruby Versions
|
|
76
76
|
|
|
77
|
-
This library is supported on Ruby 3.
|
|
77
|
+
This library is supported on Ruby 3.2+.
|
|
78
78
|
|
|
79
79
|
Google provides official support for Ruby versions that are actively supported
|
|
80
80
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
|
@@ -135,8 +135,8 @@ module Google
|
|
|
135
135
|
#
|
|
136
136
|
# ## About Jobs
|
|
137
137
|
#
|
|
138
|
-
# Provides a method to create and modify
|
|
139
|
-
# A Job is a multi-stage computation graph run by the
|
|
138
|
+
# Provides a method to create and modify Dataflow jobs.
|
|
139
|
+
# A Job is a multi-stage computation graph run by the Dataflow service.
|
|
140
140
|
#
|
|
141
141
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
|
142
142
|
# Defaults to `:v1beta3`.
|
|
@@ -206,8 +206,7 @@ module Google
|
|
|
206
206
|
#
|
|
207
207
|
# ## About Messages
|
|
208
208
|
#
|
|
209
|
-
# The Dataflow Messages API is used
|
|
210
|
-
# Dataflow jobs.
|
|
209
|
+
# The Dataflow Messages API is used to monitor the progress of Dataflow jobs.
|
|
211
210
|
#
|
|
212
211
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
|
213
212
|
# Defaults to `:v1beta3`.
|
|
@@ -277,8 +276,7 @@ module Google
|
|
|
277
276
|
#
|
|
278
277
|
# ## About Metrics
|
|
279
278
|
#
|
|
280
|
-
# The Dataflow Metrics API lets you monitor the progress of Dataflow
|
|
281
|
-
# jobs.
|
|
279
|
+
# The Dataflow Metrics API lets you monitor the progress of Dataflow jobs.
|
|
282
280
|
#
|
|
283
281
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
|
284
282
|
# Defaults to `:v1beta3`.
|
|
@@ -491,6 +489,7 @@ module Google
|
|
|
491
489
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
492
490
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
493
491
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
492
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
494
493
|
# * `:retry_codes` (*type:* `Array<String>`) -
|
|
495
494
|
# The error codes that should trigger a retry.
|
|
496
495
|
#
|