gogol-bigquery-0.1.1: Google BigQuery SDK.

Copyright(c) 2015-2016 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.Tables.Get

Contents

Description

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

REST Resource

type TablesGetResource = "bigquery" :> ("v2" :> ("projects" :> (Capture "projectId" Text :> ("datasets" :> (Capture "datasetId" Text :> ("tables" :> (Capture "tableId" 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

tablesGet Source #

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:

data TablesGet Source #

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.

Instances

Eq TablesGet Source # 
Data TablesGet Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> TablesGet -> c TablesGet #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c TablesGet #

toConstr :: TablesGet -> Constr #

dataTypeOf :: TablesGet -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c TablesGet) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c TablesGet) #

gmapT :: (forall b. Data b => b -> b) -> TablesGet -> TablesGet #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> TablesGet -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> TablesGet -> r #

gmapQ :: (forall d. Data d => d -> u) -> TablesGet -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> TablesGet -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> TablesGet -> m TablesGet #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> TablesGet -> m TablesGet #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> TablesGet -> m TablesGet #

Show TablesGet Source # 
Generic TablesGet Source # 

Associated Types

type Rep TablesGet :: * -> * #

GoogleRequest TablesGet Source # 

Associated Types

type Rs TablesGet :: * #

type Scopes TablesGet :: [Symbol] #

type Rep TablesGet Source # 
type Rep TablesGet = D1 (MetaData "TablesGet" "Network.Google.Resource.BigQuery.Tables.Get" "gogol-bigquery-0.1.1-KRCXCCvs7bGAaYeYFu3wzh" False) (C1 (MetaCons "TablesGet'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_tgDataSetId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_tgProjectId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_tgTableId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Scopes TablesGet Source # 
type Scopes TablesGet = (:) Symbol "https://www.googleapis.com/auth/bigquery" ((:) Symbol "https://www.googleapis.com/auth/cloud-platform" ((:) Symbol "https://www.googleapis.com/auth/cloud-platform.read-only" ([] Symbol)))
type Rs TablesGet Source # 

Request Lenses

tgDataSetId :: Lens' TablesGet Text Source #

Dataset ID of the requested table

tgProjectId :: Lens' TablesGet Text Source #

Project ID of the requested table

tgTableId :: Lens' TablesGet Text Source #

Table ID of the requested table