Class LinearBuckets
Describing buckets with constant width.
Implements
Inherited Members
Namespace: Google.Apis.ServiceControl.v1.Data
Assembly: Google.Apis.ServiceControl.v1.dll
Syntax
public class LinearBuckets : IDirectResponseSchemaProperties
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? |