Class: Google::Apis::MonitoringV3::Explicit

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

Overview

Specifies a set of buckets with arbitrary widths.There are size(bounds) + 1 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N-1): boundsi Lower bound (1 <= i < N); boundsi - 1The bounds field must contain at least one element. If bounds has only one element, then there are no finite buckets, and that single element is the common boundary of the overflow and underflow buckets.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Explicit

Returns a new instance of Explicit.

[View source]

1401
1402
1403
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1401

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

Instance Attribute Details

#boundsArray<Float>

The values must be monotonically increasing. Corresponds to the JSON property bounds

Returns:

  • (Array<Float>)

1399
1400
1401
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1399

def bounds
  @bounds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1406
1407
1408
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1406

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