Show / Hide Table of Contents

Class GoogleApiDistributionBucketOptions

BucketOptions describes the bucket boundaries used to create a histogram for the distribution. The buckets can be in a linear sequence, an exponential sequence, or each bucket can be specified explicitly. BucketOptions does not include the number of values in each bucket. A bucket has an inclusive lower bound and exclusive upper bound for the values that are counted for that bucket. The upper bound of a bucket must be strictly greater than the lower bound. The sequence of N buckets for a distribution consists of an underflow bucket (number 0), zero or more finite buckets (number 1 through N - 2) and an overflow bucket (number N - 1). The buckets are contiguous: the lower bound of bucket i (i > 0) is the same as the upper bound of bucket i - 1. The buckets span the whole range of finite values: lower bound of the underflow bucket is -infinity and the upper bound of the overflow bucket is +infinity. The finite buckets are so-called because both bounds are finite.

Inheritance
object
GoogleApiDistributionBucketOptions
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DiscoveryEngine.v1.Data
Assembly: Google.Apis.DiscoveryEngine.v1.dll
Syntax
public class GoogleApiDistributionBucketOptions : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ExplicitBuckets

The explicit buckets.

Declaration
[JsonProperty("explicitBuckets")]
public virtual GoogleApiDistributionBucketOptionsExplicit ExplicitBuckets { get; set; }
Property Value
Type Description
GoogleApiDistributionBucketOptionsExplicit

ExponentialBuckets

The exponential buckets.

Declaration
[JsonProperty("exponentialBuckets")]
public virtual GoogleApiDistributionBucketOptionsExponential ExponentialBuckets { get; set; }
Property Value
Type Description
GoogleApiDistributionBucketOptionsExponential

LinearBuckets

The linear bucket.

Declaration
[JsonProperty("linearBuckets")]
public virtual GoogleApiDistributionBucketOptionsLinear LinearBuckets { get; set; }
Property Value
Type Description
GoogleApiDistributionBucketOptionsLinear

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX