Class: Google::Apis::LoggingV2::Linear
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2::Linear
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2/classes.rb,
generated/google/apis/logging_v2/representations.rb,
generated/google/apis/logging_v2/representations.rb
Overview
Specifies a linear sequence of buckets that all have the same width (except overflow and underflow). Each bucket represents a constant absolute uncertainty on the specific value in the bucket.There are num_finite_buckets + 2 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N- 1): offset + (width * i). Lower bound (1 <= i < N): offset + (width * (i - 1)) .
Instance Attribute Summary collapse
-
#num_finite_buckets ⇒ Fixnum
Must be greater than 0.
-
#offset ⇒ Float
Lower bound of the first bucket.
-
#width ⇒ Float
Must be greater than 0.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Linear
constructor
A new instance of Linear.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Linear
Returns a new instance of Linear
335 336 337 |
# File 'generated/google/apis/logging_v2/classes.rb', line 335 def initialize(**args) update!(**args) end |
Instance Attribute Details
#num_finite_buckets ⇒ Fixnum
Must be greater than 0.
Corresponds to the JSON property numFiniteBuckets
323 324 325 |
# File 'generated/google/apis/logging_v2/classes.rb', line 323 def num_finite_buckets @num_finite_buckets end |
#offset ⇒ Float
Lower bound of the first bucket.
Corresponds to the JSON property offset
328 329 330 |
# File 'generated/google/apis/logging_v2/classes.rb', line 328 def offset @offset end |
#width ⇒ Float
Must be greater than 0.
Corresponds to the JSON property width
333 334 335 |
# File 'generated/google/apis/logging_v2/classes.rb', line 333 def width @width end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
340 341 342 343 344 |
# File 'generated/google/apis/logging_v2/classes.rb', line 340 def update!(**args) @num_finite_buckets = args[:num_finite_buckets] if args.key?(:num_finite_buckets) @offset = args[:offset] if args.key?(:offset) @width = args[:width] if args.key?(:width) end |