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.List

Contents

Description

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

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

Synopsis

REST Resource

type TableDataListResource = "bigquery" :> ("v2" :> ("projects" :> (Capture "projectId" Text :> ("datasets" :> (Capture "datasetId" Text :> ("tables" :> (Capture "tableId" Text :> ("data" :> (QueryParam "pageToken" Text :> (QueryParam "startIndex" (Textual Word64) :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get `[JSON]` TableDataList)))))))))))) Source

A resource alias for bigquery.tabledata.list method which the TableDataList' request conforms to.

Creating a Request

tableDataList' Source

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

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

data TableDataList' Source

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

See: tableDataList' smart constructor.

Request Lenses

tDataSetId :: Lens' TableDataList' Text Source

Dataset ID of the table to read

tPageToken :: Lens' TableDataList' (Maybe Text) Source

A token used for paging results. Providing this token instead of the startIndex parameter can help you retrieve stable results when an underlying table is changing.

tProjectId :: Lens' TableDataList' Text Source

Project ID of the table to read

tTableId :: Lens' TableDataList' Text Source

Table ID of the table to read

tStartIndex :: Lens' TableDataList' (Maybe Word64) Source

Zero-based index of the starting row to read

tMaxResults :: Lens' TableDataList' (Maybe Word32) Source

Maximum number of results to return