Copyright | (c) 2015-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table.
See: BigQuery API Reference for bigquery.tables.get
.
Synopsis
- type TablesGetResource = "bigquery" :> ("v2" :> ("projects" :> (Capture "projectId" Text :> ("datasets" :> (Capture "datasetId" Text :> ("tables" :> (Capture "tableId" Text :> (QueryParam "selectedFields" Text :> (QueryParam "alt" AltJSON :> Get '[JSON] Table)))))))))
- tablesGet :: Text -> Text -> Text -> TablesGet
- data TablesGet
- tgDataSetId :: Lens' TablesGet Text
- tgProjectId :: Lens' TablesGet Text
- tgSelectedFields :: Lens' TablesGet (Maybe Text)
- tgTableId :: Lens' TablesGet Text
REST Resource
type TablesGetResource = "bigquery" :> ("v2" :> ("projects" :> (Capture "projectId" Text :> ("datasets" :> (Capture "datasetId" Text :> ("tables" :> (Capture "tableId" Text :> (QueryParam "selectedFields" Text :> (QueryParam "alt" AltJSON :> Get '[JSON] Table))))))))) Source #
A resource alias for bigquery.tables.get
method which the
TablesGet
request conforms to.
Creating a Request
Creates a value of TablesGet
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table.
See: tablesGet
smart constructor.