Show / Hide Table of Contents

Class TabledataResource.InsertAllRequest

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

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<TableDataInsertAllResponse>
BigqueryBaseServiceRequest<TableDataInsertAllResponse>
TabledataResource.InsertAllRequest
Implements
Google.Apis.Requests.IClientServiceRequest<TableDataInsertAllResponse>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.Alt
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.Fields
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.Key
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.OauthToken
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.PrettyPrint
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.QuotaUser
BigqueryBaseServiceRequest<TableDataInsertAllResponse>.UserIp
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.Service
Google.Apis.Requests.ClientServiceRequest._unsuccessfulResponseHandlers
Google.Apis.Requests.ClientServiceRequest._exceptionHandlers
Google.Apis.Requests.ClientServiceRequest._executeInterceptors
Google.Apis.Requests.ClientServiceRequest.AddUnsuccessfulResponseHandler(Google.Apis.Http.IHttpUnsuccessfulResponseHandler)
Google.Apis.Requests.ClientServiceRequest.AddExceptionHandler(Google.Apis.Http.IHttpExceptionHandler)
Google.Apis.Requests.ClientServiceRequest.AddExecuteInterceptor(Google.Apis.Http.IHttpExecuteInterceptor)
Google.Apis.Requests.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 InsertAllRequest : BigqueryBaseServiceRequest<TableDataInsertAllResponse>, IClientServiceRequest<TableDataInsertAllResponse>, IClientServiceRequest

Constructors

InsertAllRequest(IClientService, TableDataInsertAllRequest, String, String, String)

Constructs a new InsertAll request.

Declaration
public InsertAllRequest(IClientService service, TableDataInsertAllRequest body, string projectId, string datasetId, string tableId)
Parameters
Type Name Description
Google.Apis.Services.IClientService service
TableDataInsertAllRequest body
System.String projectId
System.String datasetId
System.String tableId

Properties

DatasetId

Dataset ID of the destination table.

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.TableDataInsertAllResponse>.HttpMethod

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.TableDataInsertAllResponse>.MethodName

ProjectId

Project ID of the destination table.

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.TableDataInsertAllResponse>.RestPath

TableId

Table ID of the destination table.

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

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.TableDataInsertAllResponse>.GetBody()

InitParameters()

Initializes InsertAll parameter list.

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

Implements

Google.Apis.Requests.IClientServiceRequest<TResponse>
Google.Apis.Requests.IClientServiceRequest
In This Article
Back to top