Show / Hide Table of Contents

Class BucketRange

Represents querylanguage bucket command input arguments in parse output.

Inheritance
object
BucketRange
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class BucketRange

Properties

Alias

Declaration
[JsonProperty(PropertyName = "alias")]
public string Alias { get; set; }
Property Value
Type Description
string

Optional alias of the bucket range if specified in the querystring.

Lower

Declaration
[JsonProperty(PropertyName = "lower")]
public decimal? Lower { get; set; }
Property Value
Type Description
decimal?

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

Upper

Declaration
[JsonProperty(PropertyName = "upper")]
public decimal? Upper { get; set; }
Property Value
Type Description
decimal?

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

In this article
Back to top