Migration Center v1 API - Class AggregationResult.Types.Histogram.Types.Bucket (1.1.0)

public sealed class AggregationResult.Types.Histogram.Types.Bucket : IMessage<AggregationResult.Types.Histogram.Types.Bucket>, IEquatable<AggregationResult.Types.Histogram.Types.Bucket>, IDeepCloneable<AggregationResult.Types.Histogram.Types.Bucket>, IBufferMessage, IMessage

Reference documentation and code samples for the Migration Center v1 API class AggregationResult.Types.Histogram.Types.Bucket.

A histogram bucket with a lower and upper bound, and a count of items with a field value between those bounds. The lower bound is inclusive and the upper bound is exclusive. Lower bound may be -infinity and upper bound may be infinity.

Inheritance

object > AggregationResult.Types.Histogram.Types.Bucket

Namespace

Google.Cloud.MigrationCenter.V1

Assembly

Google.Cloud.MigrationCenter.V1.dll

Constructors

Bucket()

public Bucket()

Bucket(Bucket)

public Bucket(AggregationResult.Types.Histogram.Types.Bucket other)
Parameter
NameDescription
otherAggregationResultTypesHistogramTypesBucket

Properties

Count

public long Count { get; set; }

Count of items in the bucket.

Property Value
TypeDescription
long

LowerBound

public double LowerBound { get; set; }

Lower bound - inclusive.

Property Value
TypeDescription
double

UpperBound

public double UpperBound { get; set; }

Upper bound - exclusive.

Property Value
TypeDescription
double