google-apis-dataflow_v1b3 0.8.0 → 0.12.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: c531da9d531e2b908c2a9c18f22587655f37ac41d67f039abf5aaaf7c85de1c3
|
4
|
+
data.tar.gz: 529248a06c1f541c5d695e3728e2117467d94ddf8f0ad56212e8fe4e6f5432ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2af21d6a86f480e4d2a5c00a34bfdf7349556cdf9373d5215e9ce11e3f1d5f8474ea875b79c1db0258a5dba2402f1320fbb22515032bdb65540b9601eda16e79
|
7
|
+
data.tar.gz: 8ae46b0321f6da34539995778103363cc53de58765c771a6be24caa7aa57a454e87c88aa2b464f6678972e576270ecea3a7b6fdb1e54c23866c4fd1e61ca0378
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.12.0 (2021-08-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210818
|
6
|
+
|
7
|
+
### v0.11.0 (2021-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210703
|
10
|
+
|
11
|
+
### v0.10.0 (2021-07-01)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210618
|
14
|
+
* Regenerated using generator version 0.4.0
|
15
|
+
|
16
|
+
### v0.9.0 (2021-06-24)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210616
|
19
|
+
* Regenerated using generator version 0.3.0
|
20
|
+
|
3
21
|
### v0.8.0 (2021-05-29)
|
4
22
|
|
5
23
|
* Regenerated from discovery document revision 20210522
|
@@ -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
|
@@ -248,7 +247,7 @@ module Google
|
|
248
247
|
end
|
249
248
|
end
|
250
249
|
|
251
|
-
# Metadata for a Cloud
|
250
|
+
# Metadata for a Cloud Bigtable connector used by the job.
|
252
251
|
class BigTableIoDetails
|
253
252
|
include Google::Apis::Core::Hashable
|
254
253
|
|
@@ -1463,6 +1462,25 @@ module Google
|
|
1463
1462
|
# @return [Hash<String,String>]
|
1464
1463
|
attr_accessor :additional_user_labels
|
1465
1464
|
|
1465
|
+
# The algorithm to use for autoscaling
|
1466
|
+
# Corresponds to the JSON property `autoscalingAlgorithm`
|
1467
|
+
# @return [String]
|
1468
|
+
attr_accessor :autoscaling_algorithm
|
1469
|
+
|
1470
|
+
# Worker disk size, in gigabytes.
|
1471
|
+
# Corresponds to the JSON property `diskSizeGb`
|
1472
|
+
# @return [Fixnum]
|
1473
|
+
attr_accessor :disk_size_gb
|
1474
|
+
|
1475
|
+
# If true, save a heap dump before killing a thread or process which is GC
|
1476
|
+
# thrashing or out of memory. The location of the heap file will either be
|
1477
|
+
# echoed back to the user, or the user will be given the opportunity to download
|
1478
|
+
# the heap file.
|
1479
|
+
# Corresponds to the JSON property `dumpHeapOnOom`
|
1480
|
+
# @return [Boolean]
|
1481
|
+
attr_accessor :dump_heap_on_oom
|
1482
|
+
alias_method :dump_heap_on_oom?, :dump_heap_on_oom
|
1483
|
+
|
1466
1484
|
# Whether to enable Streaming Engine for the job.
|
1467
1485
|
# Corresponds to the JSON property `enableStreamingEngine`
|
1468
1486
|
# @return [Boolean]
|
@@ -1509,6 +1527,13 @@ module Google
|
|
1509
1527
|
# @return [Fixnum]
|
1510
1528
|
attr_accessor :num_workers
|
1511
1529
|
|
1530
|
+
# Cloud Storage bucket (directory) to upload heap dumps to the given location.
|
1531
|
+
# Enabling this implies that heap dumps should be generated on OOM (
|
1532
|
+
# dump_heap_on_oom is set to true).
|
1533
|
+
# Corresponds to the JSON property `saveHeapDumpsToGcsPath`
|
1534
|
+
# @return [String]
|
1535
|
+
attr_accessor :save_heap_dumps_to_gcs_path
|
1536
|
+
|
1512
1537
|
# Docker registry location of container image to use for the 'worker harness.
|
1513
1538
|
# Default is the container for the version of the SDK. Note this field is only
|
1514
1539
|
# valid for portable pipelines.
|
@@ -1576,6 +1601,9 @@ module Google
|
|
1576
1601
|
def update!(**args)
|
1577
1602
|
@additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
|
1578
1603
|
@additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
|
1604
|
+
@autoscaling_algorithm = args[:autoscaling_algorithm] if args.key?(:autoscaling_algorithm)
|
1605
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1606
|
+
@dump_heap_on_oom = args[:dump_heap_on_oom] if args.key?(:dump_heap_on_oom)
|
1579
1607
|
@enable_streaming_engine = args[:enable_streaming_engine] if args.key?(:enable_streaming_engine)
|
1580
1608
|
@flexrs_goal = args[:flexrs_goal] if args.key?(:flexrs_goal)
|
1581
1609
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
@@ -1584,6 +1612,7 @@ module Google
|
|
1584
1612
|
@max_workers = args[:max_workers] if args.key?(:max_workers)
|
1585
1613
|
@network = args[:network] if args.key?(:network)
|
1586
1614
|
@num_workers = args[:num_workers] if args.key?(:num_workers)
|
1615
|
+
@save_heap_dumps_to_gcs_path = args[:save_heap_dumps_to_gcs_path] if args.key?(:save_heap_dumps_to_gcs_path)
|
1587
1616
|
@sdk_container_image = args[:sdk_container_image] if args.key?(:sdk_container_image)
|
1588
1617
|
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
1589
1618
|
@staging_location = args[:staging_location] if args.key?(:staging_location)
|
@@ -2271,7 +2300,7 @@ module Google
|
|
2271
2300
|
class JobMetadata
|
2272
2301
|
include Google::Apis::Core::Hashable
|
2273
2302
|
|
2274
|
-
# Identification of a Cloud
|
2303
|
+
# Identification of a Cloud Bigtable source used in the Dataflow job.
|
2275
2304
|
# Corresponds to the JSON property `bigTableDetails`
|
2276
2305
|
# @return [Array<Google::Apis::DataflowV1b3::BigTableIoDetails>]
|
2277
2306
|
attr_accessor :big_table_details
|
@@ -2291,7 +2320,7 @@ module Google
|
|
2291
2320
|
# @return [Array<Google::Apis::DataflowV1b3::FileIoDetails>]
|
2292
2321
|
attr_accessor :file_details
|
2293
2322
|
|
2294
|
-
# Identification of a
|
2323
|
+
# Identification of a Pub/Sub source used in the Dataflow job.
|
2295
2324
|
# Corresponds to the JSON property `pubsubDetails`
|
2296
2325
|
# @return [Array<Google::Apis::DataflowV1b3::PubSubIoDetails>]
|
2297
2326
|
attr_accessor :pubsub_details
|
@@ -3810,7 +3839,8 @@ module Google
|
|
3810
3839
|
class RuntimeEnvironment
|
3811
3840
|
include Google::Apis::Core::Hashable
|
3812
3841
|
|
3813
|
-
# Additional experiment flags for the job
|
3842
|
+
# Additional experiment flags for the job, specified with the `--experiments`
|
3843
|
+
# option.
|
3814
3844
|
# Corresponds to the JSON property `additionalExperiments`
|
3815
3845
|
# @return [Array<String>]
|
3816
3846
|
attr_accessor :additional_experiments
|
@@ -4344,7 +4374,7 @@ module Google
|
|
4344
4374
|
# @return [String]
|
4345
4375
|
attr_accessor :project_id
|
4346
4376
|
|
4347
|
-
#
|
4377
|
+
# Pub/Sub snapshot metadata.
|
4348
4378
|
# Corresponds to the JSON property `pubsubMetadata`
|
4349
4379
|
# @return [Array<Google::Apis::DataflowV1b3::PubsubSnapshotMetadata>]
|
4350
4380
|
attr_accessor :pubsub_metadata
|
@@ -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.12.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 = "20210818"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1383,6 +1383,9 @@ 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 :autoscaling_algorithm, as: 'autoscalingAlgorithm'
|
1387
|
+
property :disk_size_gb, as: 'diskSizeGb'
|
1388
|
+
property :dump_heap_on_oom, as: 'dumpHeapOnOom'
|
1386
1389
|
property :enable_streaming_engine, as: 'enableStreamingEngine'
|
1387
1390
|
property :flexrs_goal, as: 'flexrsGoal'
|
1388
1391
|
property :ip_configuration, as: 'ipConfiguration'
|
@@ -1391,6 +1394,7 @@ module Google
|
|
1391
1394
|
property :max_workers, as: 'maxWorkers'
|
1392
1395
|
property :network, as: 'network'
|
1393
1396
|
property :num_workers, as: 'numWorkers'
|
1397
|
+
property :save_heap_dumps_to_gcs_path, as: 'saveHeapDumpsToGcsPath'
|
1394
1398
|
property :sdk_container_image, as: 'sdkContainerImage'
|
1395
1399
|
property :service_account_email, as: 'serviceAccountEmail'
|
1396
1400
|
property :staging_location, as: 'stagingLocation'
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1b3'
|
31
31
|
|
32
|
-
# See, edit, configure, and delete your Google Cloud
|
32
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
|
35
35
|
# View and manage your Google Compute Engine resources
|
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.12.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-08-30 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.12.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: []
|