Show / Hide Table of Contents

Class TablesResource.ListRequest

Lists all tables in the specified dataset. Requires the READER dataset role.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<TableList>
BigqueryBaseServiceRequest<TableList>
TablesResource.ListRequest
Implements
IClientServiceRequest<TableList>
IClientServiceRequest
Inherited Members
BigqueryBaseServiceRequest<TableList>.Alt
BigqueryBaseServiceRequest<TableList>.Fields
BigqueryBaseServiceRequest<TableList>.Key
BigqueryBaseServiceRequest<TableList>.OauthToken
BigqueryBaseServiceRequest<TableList>.PrettyPrint
BigqueryBaseServiceRequest<TableList>.QuotaUser
BigqueryBaseServiceRequest<TableList>.UserIp
ClientServiceRequest<TableList>.Execute()
ClientServiceRequest<TableList>.ExecuteAsStream()
ClientServiceRequest<TableList>.ExecuteAsync()
ClientServiceRequest<TableList>.ExecuteAsync(CancellationToken)
ClientServiceRequest<TableList>.ExecuteAsStreamAsync()
ClientServiceRequest<TableList>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<TableList>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<TableList>.GenerateRequestUri()
ClientServiceRequest<TableList>.GetBody()
ClientServiceRequest<TableList>.GetDefaultETagAction(String)
ClientServiceRequest<TableList>.ETagAction
ClientServiceRequest<TableList>.ModifyRequest
ClientServiceRequest<TableList>.ValidateParameters
ClientServiceRequest<TableList>.RequestParameters
ClientServiceRequest<TableList>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ListRequest : BigqueryBaseServiceRequest<TableList>, IClientServiceRequest<TableList>, IClientServiceRequest

Constructors

ListRequest(IClientService, String, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string projectId, string datasetId)
Parameters
Type Name Description
IClientService service
System.String projectId
System.String datasetId

Properties

DatasetId

Dataset ID of the tables to list

Declaration
[RequestParameter("datasetId", RequestParameterType.Path)]
public virtual string DatasetId { get; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableList>.HttpMethod

MaxResults

Maximum number of results to return

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
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableList>.MethodName

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

Project ID of the tables to list

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
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableList>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Bigquery.v2.BigqueryBaseServiceRequest<Google.Apis.Bigquery.v2.Data.TableList>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top