google-apis-dataflow_v1b3 0.63.0 → 0.64.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f684036018833954cf7126f6345a9fe5aedc20020fb2fee6cb018fa681fcfe79
|
4
|
+
data.tar.gz: e1ae21bcc595ba716c41e3c2e1f76962f4625deaae4365033822f4d1f0bf4bdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86074494c2c9dcd8b6ff16d9631f3c3bbd6a041ea44c858b28f95aae394aeb7cb6f4902e7b741ae31a2fa175d78f510f458c738578ddd153a6feafa3afdf13f7
|
7
|
+
data.tar.gz: 68106062f69d2aa3e7b3cc86aa898ef668eef6a1385db9f3bce7a8cf56f2f17920a809d3eb64a73236db2ac9cb0ed5214abbeef661547bb2dbd006f9e6401499
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.64.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250106
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.63.0 (2024-12-15)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241209
|
@@ -307,6 +307,64 @@ module Google
|
|
307
307
|
end
|
308
308
|
end
|
309
309
|
|
310
|
+
# The message type used for encoding metrics of type bounded trie.
|
311
|
+
class BoundedTrie
|
312
|
+
include Google::Apis::Core::Hashable
|
313
|
+
|
314
|
+
# The maximum number of elements to store before truncation.
|
315
|
+
# Corresponds to the JSON property `bound`
|
316
|
+
# @return [Fixnum]
|
317
|
+
attr_accessor :bound
|
318
|
+
|
319
|
+
# A single node in a BoundedTrie.
|
320
|
+
# Corresponds to the JSON property `root`
|
321
|
+
# @return [Google::Apis::DataflowV1b3::BoundedTrieNode]
|
322
|
+
attr_accessor :root
|
323
|
+
|
324
|
+
# A more efficient representation for metrics consisting of a single value.
|
325
|
+
# Corresponds to the JSON property `singleton`
|
326
|
+
# @return [Array<String>]
|
327
|
+
attr_accessor :singleton
|
328
|
+
|
329
|
+
def initialize(**args)
|
330
|
+
update!(**args)
|
331
|
+
end
|
332
|
+
|
333
|
+
# Update properties of this object
|
334
|
+
def update!(**args)
|
335
|
+
@bound = args[:bound] if args.key?(:bound)
|
336
|
+
@root = args[:root] if args.key?(:root)
|
337
|
+
@singleton = args[:singleton] if args.key?(:singleton)
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
# A single node in a BoundedTrie.
|
342
|
+
class BoundedTrieNode
|
343
|
+
include Google::Apis::Core::Hashable
|
344
|
+
|
345
|
+
# Children of this node. Must be empty if truncated is true.
|
346
|
+
# Corresponds to the JSON property `children`
|
347
|
+
# @return [Hash<String,Google::Apis::DataflowV1b3::BoundedTrieNode>]
|
348
|
+
attr_accessor :children
|
349
|
+
|
350
|
+
# Whether this node has been truncated. A truncated leaf represents possibly
|
351
|
+
# many children with the same prefix.
|
352
|
+
# Corresponds to the JSON property `truncated`
|
353
|
+
# @return [Boolean]
|
354
|
+
attr_accessor :truncated
|
355
|
+
alias_method :truncated?, :truncated
|
356
|
+
|
357
|
+
def initialize(**args)
|
358
|
+
update!(**args)
|
359
|
+
end
|
360
|
+
|
361
|
+
# Update properties of this object
|
362
|
+
def update!(**args)
|
363
|
+
@children = args[:children] if args.key?(:children)
|
364
|
+
@truncated = args[:truncated] if args.key?(:truncated)
|
365
|
+
end
|
366
|
+
end
|
367
|
+
|
310
368
|
# `BucketOptions` describes the bucket boundaries used in the histogram.
|
311
369
|
class BucketOptions
|
312
370
|
include Google::Apis::Core::Hashable
|
@@ -710,7 +768,7 @@ module Google
|
|
710
768
|
end
|
711
769
|
end
|
712
770
|
|
713
|
-
# An update to a Counter sent from a worker.
|
771
|
+
# An update to a Counter sent from a worker. Next ID: 17
|
714
772
|
class CounterUpdate
|
715
773
|
include Google::Apis::Core::Hashable
|
716
774
|
|
@@ -720,6 +778,11 @@ module Google
|
|
720
778
|
attr_accessor :boolean
|
721
779
|
alias_method :boolean?, :boolean
|
722
780
|
|
781
|
+
# The message type used for encoding metrics of type bounded trie.
|
782
|
+
# Corresponds to the JSON property `boundedTrie`
|
783
|
+
# @return [Google::Apis::DataflowV1b3::BoundedTrie]
|
784
|
+
attr_accessor :bounded_trie
|
785
|
+
|
723
786
|
# True if this counter is reported as the total cumulative aggregate value
|
724
787
|
# accumulated since the worker started working on this WorkItem. By default this
|
725
788
|
# is false, indicating that this counter is reported as a delta.
|
@@ -803,6 +866,7 @@ module Google
|
|
803
866
|
# Update properties of this object
|
804
867
|
def update!(**args)
|
805
868
|
@boolean = args[:boolean] if args.key?(:boolean)
|
869
|
+
@bounded_trie = args[:bounded_trie] if args.key?(:bounded_trie)
|
806
870
|
@cumulative = args[:cumulative] if args.key?(:cumulative)
|
807
871
|
@distribution = args[:distribution] if args.key?(:distribution)
|
808
872
|
@floating_point = args[:floating_point] if args.key?(:floating_point)
|
@@ -3406,7 +3470,7 @@ module Google
|
|
3406
3470
|
end
|
3407
3471
|
end
|
3408
3472
|
|
3409
|
-
# Describes the state of a metric.
|
3473
|
+
# Describes the state of a metric. Next ID: 14
|
3410
3474
|
class MetricUpdate
|
3411
3475
|
include Google::Apis::Core::Hashable
|
3412
3476
|
|
@@ -3471,13 +3535,19 @@ module Google
|
|
3471
3535
|
attr_accessor :scalar
|
3472
3536
|
|
3473
3537
|
# Worker-computed aggregate value for the "Set" aggregation kind. The only
|
3474
|
-
# possible value type is a list of Values whose type can be Long, Double,
|
3475
|
-
#
|
3476
|
-
# same type.
|
3538
|
+
# possible value type is a list of Values whose type can be Long, Double, String,
|
3539
|
+
# or BoundedTrie according to the metric's type. All Values in the list must be
|
3540
|
+
# of the same type.
|
3477
3541
|
# Corresponds to the JSON property `set`
|
3478
3542
|
# @return [Object]
|
3479
3543
|
attr_accessor :set
|
3480
3544
|
|
3545
|
+
# Worker-computed aggregate value for the "Trie" aggregation kind. The only
|
3546
|
+
# possible value type is a BoundedTrieNode.
|
3547
|
+
# Corresponds to the JSON property `trie`
|
3548
|
+
# @return [Object]
|
3549
|
+
attr_accessor :trie
|
3550
|
+
|
3481
3551
|
# Timestamp associated with the metric value. Optional when workers are
|
3482
3552
|
# reporting work progress; it will be filled in responses from the metrics API.
|
3483
3553
|
# Corresponds to the JSON property `updateTime`
|
@@ -3500,6 +3570,7 @@ module Google
|
|
3500
3570
|
@name = args[:name] if args.key?(:name)
|
3501
3571
|
@scalar = args[:scalar] if args.key?(:scalar)
|
3502
3572
|
@set = args[:set] if args.key?(:set)
|
3573
|
+
@trie = args[:trie] if args.key?(:trie)
|
3503
3574
|
@update_time = args[:update_time] if args.key?(:update_time)
|
3504
3575
|
end
|
3505
3576
|
end
|
@@ -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.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250106"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,18 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class BoundedTrie
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
79
|
+
class BoundedTrieNode
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
73
85
|
class BucketOptions
|
74
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
87
|
|
@@ -1231,6 +1243,25 @@ module Google
|
|
1231
1243
|
end
|
1232
1244
|
end
|
1233
1245
|
|
1246
|
+
class BoundedTrie
|
1247
|
+
# @private
|
1248
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1249
|
+
property :bound, as: 'bound'
|
1250
|
+
property :root, as: 'root', class: Google::Apis::DataflowV1b3::BoundedTrieNode, decorator: Google::Apis::DataflowV1b3::BoundedTrieNode::Representation
|
1251
|
+
|
1252
|
+
collection :singleton, as: 'singleton'
|
1253
|
+
end
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class BoundedTrieNode
|
1257
|
+
# @private
|
1258
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1259
|
+
hash :children, as: 'children', class: Google::Apis::DataflowV1b3::BoundedTrieNode, decorator: Google::Apis::DataflowV1b3::BoundedTrieNode::Representation
|
1260
|
+
|
1261
|
+
property :truncated, as: 'truncated'
|
1262
|
+
end
|
1263
|
+
end
|
1264
|
+
|
1234
1265
|
class BucketOptions
|
1235
1266
|
# @private
|
1236
1267
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1349,6 +1380,8 @@ module Google
|
|
1349
1380
|
# @private
|
1350
1381
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1351
1382
|
property :boolean, as: 'boolean'
|
1383
|
+
property :bounded_trie, as: 'boundedTrie', class: Google::Apis::DataflowV1b3::BoundedTrie, decorator: Google::Apis::DataflowV1b3::BoundedTrie::Representation
|
1384
|
+
|
1352
1385
|
property :cumulative, as: 'cumulative'
|
1353
1386
|
property :distribution, as: 'distribution', class: Google::Apis::DataflowV1b3::DistributionUpdate, decorator: Google::Apis::DataflowV1b3::DistributionUpdate::Representation
|
1354
1387
|
|
@@ -2072,6 +2105,7 @@ module Google
|
|
2072
2105
|
|
2073
2106
|
property :scalar, as: 'scalar'
|
2074
2107
|
property :set, as: 'set'
|
2108
|
+
property :trie, as: 'trie'
|
2075
2109
|
property :update_time, as: 'updateTime'
|
2076
2110
|
end
|
2077
2111
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.64.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.64.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Dataflow API V1b3
|
82
79
|
test_files: []
|