Google BigQuery v2 API - Class GetQueryResultsOptions (3.11.0)
Stay organized with collections
Save and categorize content based on your preferences.
public sealed class GetQueryResultsOptionsReference documentation and code samples for the Google BigQuery v2 API class GetQueryResultsOptions.
Options for GetQueryResults operations.
Namespace
Google.Cloud.BigQuery.V2Assembly
Google.Cloud.BigQuery.V2.dll
Properties
PageSize
public int? PageSize { get; set; }The number of results to return per page. (This modifies the per-request page size; it does not affect the total number of results returned.)
| Property Value | |
|---|---|
| Type | Description |
int |
|
PageToken
public string PageToken { get; set; }The page token to use continue retrieving results after a previous request. If this property is non-null, StartIndex must be null.
| Property Value | |
|---|---|
| Type | Description |
string |
|
StartIndex
public ulong? StartIndex { get; set; }If set, the zero-based index of the first row of results to retrieve. If this property is non-null, PageToken must be null.
| Property Value | |
|---|---|
| Type | Description |
ulong |
|
Timeout
public TimeSpan? Timeout { get; set; }How long to wait for the query to complete before failing. If not set, this is effectively 5 minutes.
| Property Value | |
|---|---|
| Type | Description |
TimeSpan |
|
UseInt64Timestamp
public bool? UseInt64Timestamp { get; set; }Whether to use 64-bit integers for timestamps, instead of floating point, in order to preserve precision. If not set, this is effectively true.
| Property Value | |
|---|---|
| Type | Description |
bool |
|