Show / Hide Table of Contents

Class LinearBuckets

Describing buckets with constant width.

Inheritance
object
LinearBuckets
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.ServiceControl.v1.Data
Assembly: Google.Apis.ServiceControl.v1.dll
Syntax
public class LinearBuckets : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NumFiniteBuckets

The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is num_finite_buckets + 2. See comments on bucket_options for details.

Declaration
[JsonProperty("numFiniteBuckets")]
public virtual int? NumFiniteBuckets { get; set; }
Property Value
Type Description
int?

Offset

The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive.

Declaration
[JsonProperty("offset")]
public virtual double? Offset { get; set; }
Property Value
Type Description
double?

Width

The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive. Must be strictly positive.

Declaration
[JsonProperty("width")]
public virtual double? Width { get; set; }
Property Value
Type Description
double?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX