google-apis-dataflow_v1b3 0.7.0 → 0.8.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: 32da7e1ee52b571da57cd4d2e9de551cc4303bfed7f5eba15ab3083e7fce4527
|
|
4
|
+
data.tar.gz: e8b5b4058e86890d78c5f5c1fa331fefa0277e45226408f4f54f0d220475091a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96dc6fa294542c92b23d612cc2dc1d97ad5b12521e59f51ef5799bddf83917ff9e03cd78af31f9f55540184828fe7a6f1a8f3d920181ed11f11ee0c91e7c33be
|
|
7
|
+
data.tar.gz: a49b1962c4516400027db770d52e189d947f4cc8e2ca8f3b85ab2f4fd01fff9e3bbefb0d83fb378a915bcac9503f2e127f41e913ed621305ecc5fa4cf7a4567a
|
data/CHANGELOG.md
CHANGED
|
@@ -1175,8 +1175,7 @@ module Google
|
|
|
1175
1175
|
|
|
1176
1176
|
# The list of experiments to enable. This field should be used for SDK related
|
|
1177
1177
|
# experiments and not for service related experiments. The proper field for
|
|
1178
|
-
# service related experiments is service_options.
|
|
1179
|
-
# rationale at go/user-specified-service-options.
|
|
1178
|
+
# service related experiments is service_options.
|
|
1180
1179
|
# Corresponds to the JSON property `experiments`
|
|
1181
1180
|
# @return [Array<String>]
|
|
1182
1181
|
attr_accessor :experiments
|
|
@@ -1212,8 +1211,7 @@ module Google
|
|
|
1212
1211
|
|
|
1213
1212
|
# The list of service options to enable. This field should be used for service
|
|
1214
1213
|
# related experiments only. These experiments, when graduating to GA, should be
|
|
1215
|
-
# replaced by dedicated fields or become default (i.e. always on).
|
|
1216
|
-
# details see the rationale at go/user-specified-service-options.
|
|
1214
|
+
# replaced by dedicated fields or become default (i.e. always on).
|
|
1217
1215
|
# Corresponds to the JSON property `serviceOptions`
|
|
1218
1216
|
# @return [Array<String>]
|
|
1219
1217
|
attr_accessor :service_options
|
|
@@ -1511,6 +1509,13 @@ module Google
|
|
|
1511
1509
|
# @return [Fixnum]
|
|
1512
1510
|
attr_accessor :num_workers
|
|
1513
1511
|
|
|
1512
|
+
# Docker registry location of container image to use for the 'worker harness.
|
|
1513
|
+
# Default is the container for the version of the SDK. Note this field is only
|
|
1514
|
+
# valid for portable pipelines.
|
|
1515
|
+
# Corresponds to the JSON property `sdkContainerImage`
|
|
1516
|
+
# @return [String]
|
|
1517
|
+
attr_accessor :sdk_container_image
|
|
1518
|
+
|
|
1514
1519
|
# The email address of the service account to run the job as.
|
|
1515
1520
|
# Corresponds to the JSON property `serviceAccountEmail`
|
|
1516
1521
|
# @return [String]
|
|
@@ -1579,6 +1584,7 @@ module Google
|
|
|
1579
1584
|
@max_workers = args[:max_workers] if args.key?(:max_workers)
|
|
1580
1585
|
@network = args[:network] if args.key?(:network)
|
|
1581
1586
|
@num_workers = args[:num_workers] if args.key?(:num_workers)
|
|
1587
|
+
@sdk_container_image = args[:sdk_container_image] if args.key?(:sdk_container_image)
|
|
1582
1588
|
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
|
1583
1589
|
@staging_location = args[:staging_location] if args.key?(:staging_location)
|
|
1584
1590
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
|
@@ -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.8.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210522"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1391,6 +1391,7 @@ module Google
|
|
|
1391
1391
|
property :max_workers, as: 'maxWorkers'
|
|
1392
1392
|
property :network, as: 'network'
|
|
1393
1393
|
property :num_workers, as: 'numWorkers'
|
|
1394
|
+
property :sdk_container_image, as: 'sdkContainerImage'
|
|
1394
1395
|
property :service_account_email, as: 'serviceAccountEmail'
|
|
1395
1396
|
property :staging_location, as: 'stagingLocation'
|
|
1396
1397
|
property :subnetwork, as: 'subnetwork'
|
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.8.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: 2021-05-
|
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataflow_v1b3/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.8.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataflow_v1b3
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|