Show / Hide Table of Contents

Class TabledataResource

The "tabledata" collection of methods.

Inheritance
System.Object
TabledataResource
Inherited Members
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 TabledataResource

Constructors

TabledataResource(IClientService)

Constructs a new resource.

Declaration
public TabledataResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

InsertAll(TableDataInsertAllRequest, String, String, String)

Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.

Declaration
public virtual TabledataResource.InsertAllRequest InsertAll(TableDataInsertAllRequest body, string projectId, string datasetId, string tableId)
Parameters
Type Name Description
TableDataInsertAllRequest body

The body of the request.

System.String projectId

Project ID of the destination table.

System.String datasetId

Dataset ID of the destination table.

System.String tableId

Table ID of the destination table.

Returns
Type Description
TabledataResource.InsertAllRequest

List(String, String, String)

Retrieves table data from a specified set of rows. Requires the READER dataset role.

Declaration
public virtual TabledataResource.ListRequest List(string projectId, string datasetId, string tableId)
Parameters
Type Name Description
System.String projectId

Project ID of the table to read

System.String datasetId

Dataset ID of the table to read

System.String tableId

Table ID of the table to read

Returns
Type Description
TabledataResource.ListRequest
In This Article
Back to top