Class TabledataResource.ListRequest
Retrieves table data from a specified set of rows. Requires the READER dataset role.
Inheritance
object
TabledataResource.ListRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class TabledataResource.ListRequest : BigqueryBaseServiceRequest<TableDataList>, IClientServiceRequest<TableDataList>, IClientServiceRequest
Constructors
ListRequest(IClientService, string, string, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string projectId, string datasetId, string tableId)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | projectId | |
string | datasetId | |
string | tableId |
Properties
DatasetId
Dataset ID of the table to read
Declaration
[RequestParameter("datasetId", RequestParameterType.Path)]
public virtual string DatasetId { get; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataList>.HttpMethod
MaxResults
Maximum number of results to return
Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type | Description |
---|---|
long? |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataList>.MethodName
PageToken
Page token, returned by a previous call, identifying the result set
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
ProjectId
Project ID of the table to read
Declaration
[RequestParameter("projectId", RequestParameterType.Path)]
public virtual string ProjectId { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataList>.RestPath
SelectedFields
List of fields to return (comma-separated). If unspecified, all fields are returned
Declaration
[RequestParameter("selectedFields", RequestParameterType.Query)]
public virtual string SelectedFields { get; set; }
Property Value
Type | Description |
---|---|
string |
StartIndex
Zero-based index of the starting row to read
Declaration
[RequestParameter("startIndex", RequestParameterType.Query)]
public virtual ulong? StartIndex { get; set; }
Property Value
Type | Description |
---|---|
ulong? |
TableId
Table ID of the table to read
Declaration
[RequestParameter("tableId", RequestParameterType.Path)]
public virtual string TableId { get; }
Property Value
Type | Description |
---|---|
string |
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()
Overrides
Google.Apis.Bigquery.v2.BigqueryBaseServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataList>.InitParameters()