google-apis-dataflow_v1b3 0.62.0 → 0.63.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: a22e80f3219a59655f807a8cb0b0de54d240bdaf4f600305d5722443a11debe7
|
4
|
+
data.tar.gz: 48a68c694b1d0489c0e57a99f9949026a37680af7432ff9c8c7232cb6d5d99b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65137fe5bc31c3b7560698ff1651248be8a440f6dc060c1f391b99b2647df09ba9b32307873b01e47341d19acca12f2cc20e027876146e6bedb3a657400d3268
|
7
|
+
data.tar.gz: 0dcd71341b472d33aa02769fd31c097d609d96a618ecd2c57819f9d8a2d9ee5bdf68c6caa8ae8b7d0f2169260ce344dd50d76d6d64f1aba9e89c845244797d06
|
data/CHANGELOG.md
CHANGED
@@ -996,6 +996,31 @@ module Google
|
|
996
996
|
end
|
997
997
|
end
|
998
998
|
|
999
|
+
# The gauge value of a metric.
|
1000
|
+
class DataflowGaugeValue
|
1001
|
+
include Google::Apis::Core::Hashable
|
1002
|
+
|
1003
|
+
# The timestamp when the gauge was recorded.
|
1004
|
+
# Corresponds to the JSON property `measuredTime`
|
1005
|
+
# @return [String]
|
1006
|
+
attr_accessor :measured_time
|
1007
|
+
|
1008
|
+
# The value of the gauge.
|
1009
|
+
# Corresponds to the JSON property `value`
|
1010
|
+
# @return [Fixnum]
|
1011
|
+
attr_accessor :value
|
1012
|
+
|
1013
|
+
def initialize(**args)
|
1014
|
+
update!(**args)
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
# Update properties of this object
|
1018
|
+
def update!(**args)
|
1019
|
+
@measured_time = args[:measured_time] if args.key?(:measured_time)
|
1020
|
+
@value = args[:value] if args.key?(:value)
|
1021
|
+
end
|
1022
|
+
end
|
1023
|
+
|
999
1024
|
# Summary statistics for a population of values. HistogramValue contains a
|
1000
1025
|
# sequence of buckets and gives a count of values that fall into each bucket.
|
1001
1026
|
# Bucket boundares are defined by a formula and bucket widths are either fixed
|
@@ -3493,6 +3518,11 @@ module Google
|
|
3493
3518
|
# @return [Hash<String,String>]
|
3494
3519
|
attr_accessor :metric_labels
|
3495
3520
|
|
3521
|
+
# The gauge value of a metric.
|
3522
|
+
# Corresponds to the JSON property `valueGauge64`
|
3523
|
+
# @return [Google::Apis::DataflowV1b3::DataflowGaugeValue]
|
3524
|
+
attr_accessor :value_gauge64
|
3525
|
+
|
3496
3526
|
# Summary statistics for a population of values. HistogramValue contains a
|
3497
3527
|
# sequence of buckets and gives a count of values that fall into each bucket.
|
3498
3528
|
# Bucket boundares are defined by a formula and bucket widths are either fixed
|
@@ -3514,6 +3544,7 @@ module Google
|
|
3514
3544
|
def update!(**args)
|
3515
3545
|
@metric = args[:metric] if args.key?(:metric)
|
3516
3546
|
@metric_labels = args[:metric_labels] if args.key?(:metric_labels)
|
3547
|
+
@value_gauge64 = args[:value_gauge64] if args.key?(:value_gauge64)
|
3517
3548
|
@value_histogram = args[:value_histogram] if args.key?(:value_histogram)
|
3518
3549
|
@value_int64 = args[:value_int64] if args.key?(:value_int64)
|
3519
3550
|
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.63.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241209"
|
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 DataflowGaugeValue
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
169
175
|
class DataflowHistogramValue
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
177
|
|
@@ -1417,6 +1423,14 @@ module Google
|
|
1417
1423
|
end
|
1418
1424
|
end
|
1419
1425
|
|
1426
|
+
class DataflowGaugeValue
|
1427
|
+
# @private
|
1428
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1429
|
+
property :measured_time, as: 'measuredTime'
|
1430
|
+
property :value, :numeric_string => true, as: 'value'
|
1431
|
+
end
|
1432
|
+
end
|
1433
|
+
|
1420
1434
|
class DataflowHistogramValue
|
1421
1435
|
# @private
|
1422
1436
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2067,6 +2081,8 @@ module Google
|
|
2067
2081
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2068
2082
|
property :metric, as: 'metric'
|
2069
2083
|
hash :metric_labels, as: 'metricLabels'
|
2084
|
+
property :value_gauge64, as: 'valueGauge64', class: Google::Apis::DataflowV1b3::DataflowGaugeValue, decorator: Google::Apis::DataflowV1b3::DataflowGaugeValue::Representation
|
2085
|
+
|
2070
2086
|
property :value_histogram, as: 'valueHistogram', class: Google::Apis::DataflowV1b3::DataflowHistogramValue, decorator: Google::Apis::DataflowV1b3::DataflowHistogramValue::Representation
|
2071
2087
|
|
2072
2088
|
property :value_int64, :numeric_string => true, as: 'valueInt64'
|
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.63.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: 2024-
|
11
|
+
date: 2024-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.63.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dataflow API V1b3
|