google-apis-dataflow_v1b3 0.7.0 → 0.11.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: 405ca7d9f44b16efa723a7e8e3155c02fdb71ac0ccd44ab0880d6fd4ea4a3ae0
|
4
|
+
data.tar.gz: 1328700cb2778b964adc5c5819a7c34cc5c853c62ec9669b1a9d510224b98f7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e81f22dee6923b033acd139830b9e940565431bad9b05c1665903933bdc43868b0eaf38db354b9a2d9057c448c84badc7edcd12c7cf42c85b50d5c52f0f30eeb
|
7
|
+
data.tar.gz: f8092fe78d20fe427fa66b45d379a94e25095e375d5f5a43d1880a91fc2165b63c4a9523bba857547f26d3282a9e1baf87b14d56893c7cfc10606db5b02e88de
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.11.0 (2021-07-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210703
|
6
|
+
|
7
|
+
### v0.10.0 (2021-07-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210618
|
10
|
+
* Regenerated using generator version 0.4.0
|
11
|
+
|
12
|
+
### v0.9.0 (2021-06-24)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210616
|
15
|
+
* Regenerated using generator version 0.3.0
|
16
|
+
|
17
|
+
### v0.8.0 (2021-05-29)
|
18
|
+
|
19
|
+
* Regenerated from discovery document revision 20210522
|
20
|
+
|
3
21
|
### v0.7.0 (2021-05-19)
|
4
22
|
|
5
23
|
* Unspecified changes
|
@@ -165,8 +165,7 @@ module Google
|
|
165
165
|
# @return [String]
|
166
166
|
attr_accessor :time
|
167
167
|
|
168
|
-
# A short and friendly name for the worker pool this event refers to
|
169
|
-
# from the value of PoolStageRelation::user_pool_name.
|
168
|
+
# A short and friendly name for the worker pool this event refers to.
|
170
169
|
# Corresponds to the JSON property `workerPool`
|
171
170
|
# @return [String]
|
172
171
|
attr_accessor :worker_pool
|
@@ -1175,8 +1174,7 @@ module Google
|
|
1175
1174
|
|
1176
1175
|
# The list of experiments to enable. This field should be used for SDK related
|
1177
1176
|
# 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.
|
1177
|
+
# service related experiments is service_options.
|
1180
1178
|
# Corresponds to the JSON property `experiments`
|
1181
1179
|
# @return [Array<String>]
|
1182
1180
|
attr_accessor :experiments
|
@@ -1212,8 +1210,7 @@ module Google
|
|
1212
1210
|
|
1213
1211
|
# The list of service options to enable. This field should be used for service
|
1214
1212
|
# 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.
|
1213
|
+
# replaced by dedicated fields or become default (i.e. always on).
|
1217
1214
|
# Corresponds to the JSON property `serviceOptions`
|
1218
1215
|
# @return [Array<String>]
|
1219
1216
|
attr_accessor :service_options
|
@@ -1465,6 +1462,11 @@ module Google
|
|
1465
1462
|
# @return [Hash<String,String>]
|
1466
1463
|
attr_accessor :additional_user_labels
|
1467
1464
|
|
1465
|
+
# Worker disk size, in gigabytes.
|
1466
|
+
# Corresponds to the JSON property `diskSizeGb`
|
1467
|
+
# @return [Fixnum]
|
1468
|
+
attr_accessor :disk_size_gb
|
1469
|
+
|
1468
1470
|
# Whether to enable Streaming Engine for the job.
|
1469
1471
|
# Corresponds to the JSON property `enableStreamingEngine`
|
1470
1472
|
# @return [Boolean]
|
@@ -1494,6 +1496,11 @@ module Google
|
|
1494
1496
|
# @return [String]
|
1495
1497
|
attr_accessor :machine_type
|
1496
1498
|
|
1499
|
+
# The maximum number of workers to cap scaling at.
|
1500
|
+
# Corresponds to the JSON property `maxNumWorkers`
|
1501
|
+
# @return [Fixnum]
|
1502
|
+
attr_accessor :max_num_workers
|
1503
|
+
|
1497
1504
|
# The maximum number of Google Compute Engine instances to be made available to
|
1498
1505
|
# your pipeline during execution, from 1 to 1000.
|
1499
1506
|
# Corresponds to the JSON property `maxWorkers`
|
@@ -1511,6 +1518,13 @@ module Google
|
|
1511
1518
|
# @return [Fixnum]
|
1512
1519
|
attr_accessor :num_workers
|
1513
1520
|
|
1521
|
+
# Docker registry location of container image to use for the 'worker harness.
|
1522
|
+
# Default is the container for the version of the SDK. Note this field is only
|
1523
|
+
# valid for portable pipelines.
|
1524
|
+
# Corresponds to the JSON property `sdkContainerImage`
|
1525
|
+
# @return [String]
|
1526
|
+
attr_accessor :sdk_container_image
|
1527
|
+
|
1514
1528
|
# The email address of the service account to run the job as.
|
1515
1529
|
# Corresponds to the JSON property `serviceAccountEmail`
|
1516
1530
|
# @return [String]
|
@@ -1571,14 +1585,17 @@ module Google
|
|
1571
1585
|
def update!(**args)
|
1572
1586
|
@additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
|
1573
1587
|
@additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
|
1588
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1574
1589
|
@enable_streaming_engine = args[:enable_streaming_engine] if args.key?(:enable_streaming_engine)
|
1575
1590
|
@flexrs_goal = args[:flexrs_goal] if args.key?(:flexrs_goal)
|
1576
1591
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
1577
1592
|
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
1578
1593
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1594
|
+
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
1579
1595
|
@max_workers = args[:max_workers] if args.key?(:max_workers)
|
1580
1596
|
@network = args[:network] if args.key?(:network)
|
1581
1597
|
@num_workers = args[:num_workers] if args.key?(:num_workers)
|
1598
|
+
@sdk_container_image = args[:sdk_container_image] if args.key?(:sdk_container_image)
|
1582
1599
|
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
1583
1600
|
@staging_location = args[:staging_location] if args.key?(:staging_location)
|
1584
1601
|
@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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210703"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1383,14 +1383,17 @@ module Google
|
|
1383
1383
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1384
1384
|
collection :additional_experiments, as: 'additionalExperiments'
|
1385
1385
|
hash :additional_user_labels, as: 'additionalUserLabels'
|
1386
|
+
property :disk_size_gb, as: 'diskSizeGb'
|
1386
1387
|
property :enable_streaming_engine, as: 'enableStreamingEngine'
|
1387
1388
|
property :flexrs_goal, as: 'flexrsGoal'
|
1388
1389
|
property :ip_configuration, as: 'ipConfiguration'
|
1389
1390
|
property :kms_key_name, as: 'kmsKeyName'
|
1390
1391
|
property :machine_type, as: 'machineType'
|
1392
|
+
property :max_num_workers, as: 'maxNumWorkers'
|
1391
1393
|
property :max_workers, as: 'maxWorkers'
|
1392
1394
|
property :network, as: 'network'
|
1393
1395
|
property :num_workers, as: 'numWorkers'
|
1396
|
+
property :sdk_container_image, as: 'sdkContainerImage'
|
1394
1397
|
property :service_account_email, as: 'serviceAccountEmail'
|
1395
1398
|
property :staging_location, as: 'stagingLocation'
|
1396
1399
|
property :subnetwork, as: 'subnetwork'
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.11.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-
|
11
|
+
date: 2021-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Dataflow API V1b3. Simple REST clients
|
28
34
|
are Ruby client libraries that provide access to Google services via their HTTP
|
29
35
|
REST API endpoints. These libraries are generated and updated automatically based
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.11.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataflow_v1b3
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|