Class: Google::Apis::DataflowV1b3::FloatingPointMean

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FloatingPointMean

Returns a new instance of FloatingPointMean.



1667
1668
1669
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1667

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#countGoogle::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



1660
1661
1662
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1660

def count
  @count
end

#sumFloat

The sum of all values being aggregated. Corresponds to the JSON property sum

Returns:

  • (Float)


1665
1666
1667
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1665

def sum
  @sum
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1672
1673
1674
1675
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1672

def update!(**args)
  @count = args[:count] if args.key?(:count)
  @sum = args[:sum] if args.key?(:sum)
end