Show / Hide Table of Contents

Class Linear

Specifies a linear sequence of buckets that all have the same width (except overflow and underflow). Each bucket represents a constant absolute uncertainty on the specific value in the bucket.There are num_finite_buckets + 2 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N-1): offset + (width * i).Lower bound (1 <= i < N): offset + (width * (i - 1)).

Inheritance
object
Linear
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.Logging.v2.Data
Assembly: Google.Apis.Logging.v2.dll
Syntax
public class Linear : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NumFiniteBuckets

Must be greater than 0.

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

Offset

Lower bound of the first bucket.

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

Width

Must be greater than 0.

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