gogol-bigquery-0.0.1: Google BigQuery SDK.

Copyright(c) 2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.BigQuery.TableData.InsertAll

Contents

Description

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

See: BigQuery API Reference for bigquery.tabledata.insertAll.

Synopsis

REST Resource

type TableDataInsertAllResource = "bigquery" :> ("v2" :> ("projects" :> (Capture "projectId" Text :> ("datasets" :> (Capture "datasetId" Text :> ("tables" :> (Capture "tableId" Text :> ("insertAll" :> (QueryParam "alt" AltJSON :> (ReqBody `[JSON]` TableDataInsertAllRequest :> Post `[JSON]` TableDataInsertAllResponse)))))))))) Source

A resource alias for bigquery.tabledata.insertAll method which the TableDataInsertAll request conforms to.

Creating a Request

tableDataInsertAll Source

Creates a value of TableDataInsertAll with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data TableDataInsertAll Source

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

See: tableDataInsertAll smart constructor.

Request Lenses

tdiaDataSetId :: Lens' TableDataInsertAll Text Source

Dataset ID of the destination table.

tdiaProjectId :: Lens' TableDataInsertAll Text Source

Project ID of the destination table.

tdiaTableId :: Lens' TableDataInsertAll Text Source

Table ID of the destination table.