Class: Google::Apis::DataflowV1b3::OutlierStats

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

Statistics for the underflow and overflow bucket.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OutlierStats

Returns a new instance of OutlierStats.



3612
3613
3614
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3612

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

Instance Attribute Details

#overflow_countFixnum

Number of values that are larger than the upper bound of the largest bucket. Corresponds to the JSON property overflowCount

Returns:

  • (Fixnum)


3595
3596
3597
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3595

def overflow_count
  @overflow_count
end

#overflow_meanFloat

Mean of values in the overflow bucket. Corresponds to the JSON property overflowMean

Returns:

  • (Float)


3600
3601
3602
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3600

def overflow_mean
  @overflow_mean
end

#underflow_countFixnum

Number of values that are smaller than the lower bound of the smallest bucket. Corresponds to the JSON property underflowCount

Returns:

  • (Fixnum)


3605
3606
3607
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3605

def underflow_count
  @underflow_count
end

#underflow_meanFloat

Mean of values in the undeflow bucket. Corresponds to the JSON property underflowMean

Returns:

  • (Float)


3610
3611
3612
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3610

def underflow_mean
  @underflow_mean
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3617
3618
3619
3620
3621
3622
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3617

def update!(**args)
  @overflow_count = args[:overflow_count] if args.key?(:overflow_count)
  @overflow_mean = args[:overflow_mean] if args.key?(:overflow_mean)
  @underflow_count = args[:underflow_count] if args.key?(:underflow_count)
  @underflow_mean = args[:underflow_mean] if args.key?(:underflow_mean)
end