Show / Hide Table of Contents

Class Streamingbuffer

Inheritance
System.Object
Streamingbuffer
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class Streamingbuffer : IDirectResponseSchema

Properties

EstimatedBytes

[Output-only] A lower-bound estimate of the number of bytes currently in the streaming buffer.

Declaration
[JsonProperty("estimatedBytes")]
public virtual ulong? EstimatedBytes { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

EstimatedRows

[Output-only] A lower-bound estimate of the number of rows currently in the streaming buffer.

Declaration
[JsonProperty("estimatedRows")]
public virtual ulong? EstimatedRows { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

ETag

The ETag of the item.

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

OldestEntryTime

[Output-only] Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.

Declaration
[JsonProperty("oldestEntryTime")]
public virtual ulong? OldestEntryTime { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top