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



4272
4273
4274
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4272

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



4259
4260
4261
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4259

def count
  @count
end

#log_bucketsArray<Google::Apis::DataflowV1b3::LogBucket>

(Optional) Logarithmic histogram of values. Each log may be in no more than one bucket. Order does not matter. Corresponds to the JSON property logBuckets



4253
4254
4255
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4253

def log_buckets
  @log_buckets
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



4247
4248
4249
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4247

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



4265
4266
4267
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4265

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



4241
4242
4243
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4241

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)


4270
4271
4272
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4270

def sum_of_squares
  @sum_of_squares
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4277
4278
4279
4280
4281
4282
4283
4284
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4277

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