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: f3c4c87ace2c9b54d042ed23e66fcec70511b9117b12d5b599295a047d0be591
4
- data.tar.gz: e65f8a188f3f7407f33f0891890f0f393896a29594f4564079ab84facee34bf8
3
+ metadata.gz: 32da7e1ee52b571da57cd4d2e9de551cc4303bfed7f5eba15ab3083e7fce4527
4
+ data.tar.gz: e8b5b4058e86890d78c5f5c1fa331fefa0277e45226408f4f54f0d220475091a
5
5
  SHA512:
6
- metadata.gz: 9e92991f7a29bde09278f2c3f7d58fbd15722ca91f38fad839bcc00e5d38cb10d23476181a59cb4dbfa71c20072c7d1c4c209a1fbde56d97cdceab70a2d639a7
7
- data.tar.gz: 30241ac06509892f4e0ae5ca89103aaad800db24505b900cd743a0c016462e21ee10936ff92cc736fe287b77c6ae18f3e1597968e74f7e752f5b84fb60d452a7
6
+ metadata.gz: 96dc6fa294542c92b23d612cc2dc1d97ad5b12521e59f51ef5799bddf83917ff9e03cd78af31f9f55540184828fe7a6f1a8f3d920181ed11f11ee0c91e7c33be
7
+ data.tar.gz: a49b1962c4516400027db770d52e189d947f4cc8e2ca8f3b85ab2f4fd01fff9e3bbefb0d83fb378a915bcac9503f2e127f41e913ed621305ecc5fa4cf7a4567a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.8.0 (2021-05-29)
4
+
5
+ * Regenerated from discovery document revision 20210522
6
+
3
7
  ### v0.7.0 (2021-05-19)
4
8
 
5
9
  * Unspecified changes
@@ -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. For more details see the
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). For more
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.7.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 = "20210420"
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.7.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-24 00:00:00.000000000 Z
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.7.0
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: []