google-apis-dataflow_v1b3 0.4.0 → 0.5.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: 9b9fcebd5e911c5400d94744f6ef6d0079fda992afcda141690a3306d98b327d
|
4
|
+
data.tar.gz: 4c951b53e8e1e3b7a997ea2e5645604d133d34fd9585ed720df7e851cfbeda56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0011f1be10d715328c02e531bc171d424dbc1b0538a2bead89b792e9a618e8b26d7cbc8fc1276559fd47ec48c412fd7d80bff86c100501498340ac120d0b01e3
|
7
|
+
data.tar.gz: d05fc0c0db9afbf3a7102f26f3caec958cd379b48208926d936d53e88ab802212cfd4c769e89a162debc339771cb25c13204d69db97f295d6d0b37dbd673de8b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.5.0 (2021-03-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210301
|
6
|
+
* Regenerated using generator version 0.2.0
|
7
|
+
|
3
8
|
### v0.4.0 (2021-03-04)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20210217
|
@@ -947,6 +947,27 @@ module Google
|
|
947
947
|
end
|
948
948
|
end
|
949
949
|
|
950
|
+
# Describes any options that have an effect on the debugging of pipelines.
|
951
|
+
class DebugOptions
|
952
|
+
include Google::Apis::Core::Hashable
|
953
|
+
|
954
|
+
# When true, enables the logging of the literal hot key to the user's Cloud
|
955
|
+
# Logging.
|
956
|
+
# Corresponds to the JSON property `enableHotKeyLogging`
|
957
|
+
# @return [Boolean]
|
958
|
+
attr_accessor :enable_hot_key_logging
|
959
|
+
alias_method :enable_hot_key_logging?, :enable_hot_key_logging
|
960
|
+
|
961
|
+
def initialize(**args)
|
962
|
+
update!(**args)
|
963
|
+
end
|
964
|
+
|
965
|
+
# Update properties of this object
|
966
|
+
def update!(**args)
|
967
|
+
@enable_hot_key_logging = args[:enable_hot_key_logging] if args.key?(:enable_hot_key_logging)
|
968
|
+
end
|
969
|
+
end
|
970
|
+
|
950
971
|
# Response from deleting a snapshot.
|
951
972
|
class DeleteSnapshotResponse
|
952
973
|
include Google::Apis::Core::Hashable
|
@@ -1247,6 +1268,11 @@ module Google
|
|
1247
1268
|
# @return [String]
|
1248
1269
|
attr_accessor :dataset
|
1249
1270
|
|
1271
|
+
# Describes any options that have an effect on the debugging of pipelines.
|
1272
|
+
# Corresponds to the JSON property `debugOptions`
|
1273
|
+
# @return [Google::Apis::DataflowV1b3::DebugOptions]
|
1274
|
+
attr_accessor :debug_options
|
1275
|
+
|
1250
1276
|
# The list of experiments to enable. This field should be used for SDK related
|
1251
1277
|
# experiments and not for service related experiments. The proper field for
|
1252
1278
|
# service related experiments is service_options. For more details see the
|
@@ -1350,6 +1376,7 @@ module Google
|
|
1350
1376
|
def update!(**args)
|
1351
1377
|
@cluster_manager_api_service = args[:cluster_manager_api_service] if args.key?(:cluster_manager_api_service)
|
1352
1378
|
@dataset = args[:dataset] if args.key?(:dataset)
|
1379
|
+
@debug_options = args[:debug_options] if args.key?(:debug_options)
|
1353
1380
|
@experiments = args[:experiments] if args.key?(:experiments)
|
1354
1381
|
@flex_resource_scheduling_goal = args[:flex_resource_scheduling_goal] if args.key?(:flex_resource_scheduling_goal)
|
1355
1382
|
@internal_experiments = args[:internal_experiments] if args.key?(:internal_experiments)
|
@@ -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.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210301"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -166,6 +166,12 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
+
class DebugOptions
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
169
175
|
class DeleteSnapshotResponse
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
177
|
|
@@ -1309,6 +1315,13 @@ module Google
|
|
1309
1315
|
end
|
1310
1316
|
end
|
1311
1317
|
|
1318
|
+
class DebugOptions
|
1319
|
+
# @private
|
1320
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1321
|
+
property :enable_hot_key_logging, as: 'enableHotKeyLogging'
|
1322
|
+
end
|
1323
|
+
end
|
1324
|
+
|
1312
1325
|
class DeleteSnapshotResponse
|
1313
1326
|
# @private
|
1314
1327
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1389,6 +1402,8 @@ module Google
|
|
1389
1402
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1390
1403
|
property :cluster_manager_api_service, as: 'clusterManagerApiService'
|
1391
1404
|
property :dataset, as: 'dataset'
|
1405
|
+
property :debug_options, as: 'debugOptions', class: Google::Apis::DataflowV1b3::DebugOptions, decorator: Google::Apis::DataflowV1b3::DebugOptions::Representation
|
1406
|
+
|
1392
1407
|
collection :experiments, as: 'experiments'
|
1393
1408
|
property :flex_resource_scheduling_goal, as: 'flexResourceSchedulingGoal'
|
1394
1409
|
hash :internal_experiments, as: 'internalExperiments'
|
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.5.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-03-
|
11
|
+
date: 2021-03-15 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.5.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: []
|