Class: Google::Apis::DataflowV1b3::FloatingPointMean
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::FloatingPointMean
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
A representation of a floating point mean metric contribution.
Instance Attribute Summary collapse
-
#count ⇒ Google::Apis::DataflowV1b3::SplitInt64
A representation of an int64, n, that is immune to precision loss when encoded in JSON.
-
#sum ⇒ Float
The sum of all values being aggregated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FloatingPointMean
constructor
A new instance of FloatingPointMean.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FloatingPointMean
Returns a new instance of FloatingPointMean
1372 1373 1374 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1372 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Google::Apis::DataflowV1b3::SplitInt64
A representation of an int64, n, that is immune to precision loss when
encoded in JSON.
Corresponds to the JSON property count
1365 1366 1367 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1365 def count @count end |
#sum ⇒ Float
The sum of all values being aggregated.
Corresponds to the JSON property sum
1370 1371 1372 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1370 def sum @sum end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1377 1378 1379 1380 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1377 def update!(**args) @count = args[:count] if args.key?(:count) @sum = args[:sum] if args.key?(:sum) end |