Class TabledataResource.ListRequest
List the content of a table in rows.
Inheritance
TabledataResource.ListRequest
Inherited Members
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
Required. Dataset id of the table to list.
Declaration
[RequestParameter("datasetId", RequestParameterType.Path)]
public virtual string DatasetId { get; }
Property Value
Type | Description |
---|---|
string |
FormatOptionsUseInt64Timestamp
Optional. Output timestamp as usec int64. Default is false.
Declaration
[RequestParameter("formatOptions.useInt64Timestamp", RequestParameterType.Query)]
public virtual bool? FormatOptionsUseInt64Timestamp { get; set; }
Property Value
Type | Description |
---|---|
bool? |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MaxResults
Row limit of the table.
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
PageToken
To retrieve the next page of table data, set this field to the string provided in the pageToken field of the response body from your previous call to tabledata.list.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
ProjectId
Required. Project id of the table to list.
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
SelectedFields
Subset of fields to return, supports select into sub fields. Example: selected_fields = "a,e.d.f";
Declaration
[RequestParameter("selectedFields", RequestParameterType.Query)]
public virtual string SelectedFields { get; set; }
Property Value
Type | Description |
---|---|
string |
StartIndex
Start row index of the table.
Declaration
[RequestParameter("startIndex", RequestParameterType.Query)]
public virtual ulong? StartIndex { get; set; }
Property Value
Type | Description |
---|---|
ulong? |
TableId
Required. Table id of the table to list.
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()