BucketRange

class oci.log_analytics.models.BucketRange(**kwargs)

Bases: object

Represents querylanguage bucket command input arguments in parse output.

Methods

__init__(**kwargs) Initializes a new BucketRange object with values from keyword arguments.

Attributes

alias Gets the alias of this BucketRange.
lower Gets the lower of this BucketRange.
upper Gets the upper of this BucketRange.
__init__(**kwargs)

Initializes a new BucketRange object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • lower (float) – The value to assign to the lower property of this BucketRange.
  • upper (float) – The value to assign to the upper property of this BucketRange.
  • alias (str) – The value to assign to the alias property of this BucketRange.
alias

Gets the alias of this BucketRange. Optional alias of the bucket range if specified in the querystring.

Returns:The alias of this BucketRange.
Return type:str
lower

Gets the lower of this BucketRange. Lower bound of the bucket range specified in the querystring for the numeric field referenced in tbe bucket command.

Returns:The lower of this BucketRange.
Return type:float
upper

Gets the upper of this BucketRange. Upper bound of the bucket range specified in the querystring for the numeric field referenced in tbe bucket command.

Returns:The upper of this BucketRange.
Return type:float