Show / Hide Table of Contents

Class Exponential

Specifies an exponential sequence of buckets that have a width that is proportional to the value of the lower bound. Each bucket represents a constant relative uncertainty on a 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): scale * (growth_factor ^ i).Lower bound (1 <= i < N): scale * (growth_factor ^ (i - 1)).

Inheritance
object
Exponential
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 Exponential : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

GrowthFactor

Must be greater than 1.

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

NumFiniteBuckets

Must be greater than 0.

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

Scale

Must be greater than 0.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX