Class: Google::Apis::DataflowV1b3::DistributionUpdate

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 metric value representing a distribution.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DistributionUpdate

Returns a new instance of DistributionUpdate



1050
1051
1052
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1050

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



1015
1016
1017
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1015

def count
  @count
end

#histogramGoogle::Apis::DataflowV1b3::Histogram

Histogram of value counts for a distribution. Buckets have an inclusive lower bound and exclusive upper bound and use "1,2,5 bucketing": The first bucket range is from [0,1) and all subsequent bucket boundaries are powers of ten multiplied by 1, 2, or 5. Thus, bucket boundaries are 0, 1, 2, 5, 10, 20, 50, 100, 200, 500, 1000, ... Negative values are not supported. Corresponds to the JSON property histogram



1025
1026
1027
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1025

def histogram
  @histogram
end

#maxGoogle::Apis::DataflowV1b3::SplitInt64

A representation of an int64, n, that is immune to precision loss when encoded in JSON. Corresponds to the JSON property max



1031
1032
1033
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1031

def max
  @max
end

#minGoogle::Apis::DataflowV1b3::SplitInt64

A representation of an int64, n, that is immune to precision loss when encoded in JSON. Corresponds to the JSON property min



1037
1038
1039
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1037

def min
  @min
end

#sumGoogle::Apis::DataflowV1b3::SplitInt64

A representation of an int64, n, that is immune to precision loss when encoded in JSON. Corresponds to the JSON property sum



1043
1044
1045
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1043

def sum
  @sum
end

#sum_of_squaresFloat

Use a double since the sum of squares is likely to overflow int64. Corresponds to the JSON property sumOfSquares

Returns:

  • (Float)


1048
1049
1050
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1048

def sum_of_squares
  @sum_of_squares
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1055
1056
1057
1058
1059
1060
1061
1062
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1055

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