Class JobsResource.GetQueryResultsRequest
Retrieves the results of a query job.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class GetQueryResultsRequest : BigqueryBaseServiceRequest<GetQueryResultsResponse>, IClientServiceRequest<GetQueryResultsResponse>, IClientServiceRequest
Constructors
GetQueryResultsRequest(IClientService, String, String)
Constructs a new GetQueryResults request.
Declaration
public GetQueryResultsRequest(IClientService service, string projectId, string jobId)
Parameters
Type | Name | Description |
---|---|---|
Google.Apis.Services.IClientService | service | |
System.String | projectId | |
System.String | jobId |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
JobId
[Required] Job ID of the query job
Declaration
[RequestParameter("jobId", RequestParameterType.Path)]
public virtual string JobId { get; }
Property Value
Type | Description |
---|---|
System.String |
Location
The geographic location where the job should run. Required except for US and EU. See details at https://cloud.google.com/bigquery/docs/locations#specifying_your_location.
Declaration
[RequestParameter("location", RequestParameterType.Query)]
public virtual string Location { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MaxResults
Maximum number of results to read
Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
PageToken
Page token, returned by a previous call, to request the next page of results
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ProjectId
[Required] Project ID of the query job
Declaration
[RequestParameter("projectId", RequestParameterType.Path)]
public virtual string ProjectId { get; }
Property Value
Type | Description |
---|---|
System.String |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
StartIndex
Zero-based index of the starting row
Declaration
[RequestParameter("startIndex", RequestParameterType.Query)]
public virtual ulong? StartIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
TimeoutMs
How long to wait for the query to complete, in milliseconds, before returning. Default is 10 seconds. If the timeout passes before the job completes, the 'jobComplete' field in the response will be false
Declaration
[RequestParameter("timeoutMs", RequestParameterType.Query)]
public virtual long? TimeoutMs { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Methods
InitParameters()
Initializes GetQueryResults parameter list.
Declaration
protected override void InitParameters()