Show / Hide Table of Contents

Class BucketCommandDescriptor

Command descriptor for querylanguage BUCKET command.

Inheritance
object
AbstractCommandDescriptor
BucketCommandDescriptor
Inherited Members
AbstractCommandDescriptor.DisplayQueryString
AbstractCommandDescriptor.InternalQueryString
AbstractCommandDescriptor.Category
AbstractCommandDescriptor.ReferencedFields
AbstractCommandDescriptor.DeclaredFields
AbstractCommandDescriptor.IsHidden
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 BucketCommandDescriptor : AbstractCommandDescriptor

Properties

DefaultValue

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

Default value to use in place of null if a result does not fit into any of the specified / calculated ranges.

MaxBuckets

Declaration
[JsonProperty(PropertyName = "maxBuckets")]
public int? MaxBuckets { get; set; }
Property Value
Type Description
int?

number of auto calculated ranges to compute if specified.

Ranges

Declaration
[JsonProperty(PropertyName = "ranges")]
public List<BucketRange> Ranges { get; set; }
Property Value
Type Description
List<BucketRange>

List of the specified numeric ranges.

Span

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

Size of each numeric range if specified. Data type should match numeric field data type specified in the query string.

In this article
Back to top