google-apis-dataflow_v1b3 0.62.0 → 0.64.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: 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,14 @@
|
|
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
|
+
|
8
|
+
### v0.63.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241209
|
11
|
+
|
3
12
|
### v0.62.0 (2024-11-03)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241028
|
@@ -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)
|
@@ -996,6 +1060,31 @@ module Google
|
|
996
1060
|
end
|
997
1061
|
end
|
998
1062
|
|
1063
|
+
# The gauge value of a metric.
|
1064
|
+
class DataflowGaugeValue
|
1065
|
+
include Google::Apis::Core::Hashable
|
1066
|
+
|
1067
|
+
# The timestamp when the gauge was recorded.
|
1068
|
+
# Corresponds to the JSON property `measuredTime`
|
1069
|
+
# @return [String]
|
1070
|
+
attr_accessor :measured_time
|
1071
|
+
|
1072
|
+
# The value of the gauge.
|
1073
|
+
# Corresponds to the JSON property `value`
|
1074
|
+
# @return [Fixnum]
|
1075
|
+
attr_accessor :value
|
1076
|
+
|
1077
|
+
def initialize(**args)
|
1078
|
+
update!(**args)
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
# Update properties of this object
|
1082
|
+
def update!(**args)
|
1083
|
+
@measured_time = args[:measured_time] if args.key?(:measured_time)
|
1084
|
+
@value = args[:value] if args.key?(:value)
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
|
999
1088
|
# Summary statistics for a population of values. HistogramValue contains a
|
1000
1089
|
# sequence of buckets and gives a count of values that fall into each bucket.
|
1001
1090
|
# Bucket boundares are defined by a formula and bucket widths are either fixed
|
@@ -3381,7 +3470,7 @@ module Google
|
|
3381
3470
|
end
|
3382
3471
|
end
|
3383
3472
|
|
3384
|
-
# Describes the state of a metric.
|
3473
|
+
# Describes the state of a metric. Next ID: 14
|
3385
3474
|
class MetricUpdate
|
3386
3475
|
include Google::Apis::Core::Hashable
|
3387
3476
|
|
@@ -3446,13 +3535,19 @@ module Google
|
|
3446
3535
|
attr_accessor :scalar
|
3447
3536
|
|
3448
3537
|
# Worker-computed aggregate value for the "Set" aggregation kind. The only
|
3449
|
-
# possible value type is a list of Values whose type can be Long, Double,
|
3450
|
-
#
|
3451
|
-
# 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.
|
3452
3541
|
# Corresponds to the JSON property `set`
|
3453
3542
|
# @return [Object]
|
3454
3543
|
attr_accessor :set
|
3455
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
|
+
|
3456
3551
|
# Timestamp associated with the metric value. Optional when workers are
|
3457
3552
|
# reporting work progress; it will be filled in responses from the metrics API.
|
3458
3553
|
# Corresponds to the JSON property `updateTime`
|
@@ -3475,6 +3570,7 @@ module Google
|
|
3475
3570
|
@name = args[:name] if args.key?(:name)
|
3476
3571
|
@scalar = args[:scalar] if args.key?(:scalar)
|
3477
3572
|
@set = args[:set] if args.key?(:set)
|
3573
|
+
@trie = args[:trie] if args.key?(:trie)
|
3478
3574
|
@update_time = args[:update_time] if args.key?(:update_time)
|
3479
3575
|
end
|
3480
3576
|
end
|
@@ -3493,6 +3589,11 @@ module Google
|
|
3493
3589
|
# @return [Hash<String,String>]
|
3494
3590
|
attr_accessor :metric_labels
|
3495
3591
|
|
3592
|
+
# The gauge value of a metric.
|
3593
|
+
# Corresponds to the JSON property `valueGauge64`
|
3594
|
+
# @return [Google::Apis::DataflowV1b3::DataflowGaugeValue]
|
3595
|
+
attr_accessor :value_gauge64
|
3596
|
+
|
3496
3597
|
# Summary statistics for a population of values. HistogramValue contains a
|
3497
3598
|
# sequence of buckets and gives a count of values that fall into each bucket.
|
3498
3599
|
# Bucket boundares are defined by a formula and bucket widths are either fixed
|
@@ -3514,6 +3615,7 @@ module Google
|
|
3514
3615
|
def update!(**args)
|
3515
3616
|
@metric = args[:metric] if args.key?(:metric)
|
3516
3617
|
@metric_labels = args[:metric_labels] if args.key?(:metric_labels)
|
3618
|
+
@value_gauge64 = args[:value_gauge64] if args.key?(:value_gauge64)
|
3517
3619
|
@value_histogram = args[:value_histogram] if args.key?(:value_histogram)
|
3518
3620
|
@value_int64 = args[:value_int64] if args.key?(:value_int64)
|
3519
3621
|
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
|
|
@@ -166,6 +178,12 @@ module Google
|
|
166
178
|
include Google::Apis::Core::JsonObjectSupport
|
167
179
|
end
|
168
180
|
|
181
|
+
class DataflowGaugeValue
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
169
187
|
class DataflowHistogramValue
|
170
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
189
|
|
@@ -1225,6 +1243,25 @@ module Google
|
|
1225
1243
|
end
|
1226
1244
|
end
|
1227
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
|
+
|
1228
1265
|
class BucketOptions
|
1229
1266
|
# @private
|
1230
1267
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1343,6 +1380,8 @@ module Google
|
|
1343
1380
|
# @private
|
1344
1381
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1345
1382
|
property :boolean, as: 'boolean'
|
1383
|
+
property :bounded_trie, as: 'boundedTrie', class: Google::Apis::DataflowV1b3::BoundedTrie, decorator: Google::Apis::DataflowV1b3::BoundedTrie::Representation
|
1384
|
+
|
1346
1385
|
property :cumulative, as: 'cumulative'
|
1347
1386
|
property :distribution, as: 'distribution', class: Google::Apis::DataflowV1b3::DistributionUpdate, decorator: Google::Apis::DataflowV1b3::DistributionUpdate::Representation
|
1348
1387
|
|
@@ -1417,6 +1456,14 @@ module Google
|
|
1417
1456
|
end
|
1418
1457
|
end
|
1419
1458
|
|
1459
|
+
class DataflowGaugeValue
|
1460
|
+
# @private
|
1461
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1462
|
+
property :measured_time, as: 'measuredTime'
|
1463
|
+
property :value, :numeric_string => true, as: 'value'
|
1464
|
+
end
|
1465
|
+
end
|
1466
|
+
|
1420
1467
|
class DataflowHistogramValue
|
1421
1468
|
# @private
|
1422
1469
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2058,6 +2105,7 @@ module Google
|
|
2058
2105
|
|
2059
2106
|
property :scalar, as: 'scalar'
|
2060
2107
|
property :set, as: 'set'
|
2108
|
+
property :trie, as: 'trie'
|
2061
2109
|
property :update_time, as: 'updateTime'
|
2062
2110
|
end
|
2063
2111
|
end
|
@@ -2067,6 +2115,8 @@ module Google
|
|
2067
2115
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2068
2116
|
property :metric, as: 'metric'
|
2069
2117
|
hash :metric_labels, as: 'metricLabels'
|
2118
|
+
property :value_gauge64, as: 'valueGauge64', class: Google::Apis::DataflowV1b3::DataflowGaugeValue, decorator: Google::Apis::DataflowV1b3::DataflowGaugeValue::Representation
|
2119
|
+
|
2070
2120
|
property :value_histogram, as: 'valueHistogram', class: Google::Apis::DataflowV1b3::DataflowHistogramValue, decorator: Google::Apis::DataflowV1b3::DataflowHistogramValue::Representation
|
2071
2121
|
|
2072
2122
|
property :value_int64, :numeric_string => true, as: 'valueInt64'
|
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: []
|