gogol-maps-engine-0.0.1: Google Maps Engine 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.MapsEngine.Tables.Features.List

Contents

Description

Return all features readable by the current user.

See: Google Maps Engine API Reference for mapsengine.tables.features.list.

Synopsis

REST Resource

type TablesFeaturesListResource = "mapsengine" :> ("v1" :> ("tables" :> (Capture "id" Text :> ("features" :> (QueryParam "include" Text :> (QueryParam "where" Text :> (QueryParam "orderBy" Text :> (QueryParam "version" TablesFeaturesListVersion :> (QueryParam "limit" (Textual Word32) :> (QueryParam "pageToken" Text :> (QueryParam "select" Text :> (QueryParam "intersects" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get `[JSON]` FeaturesListResponse)))))))))))))) Source

A resource alias for mapsengine.tables.features.list method which the TablesFeaturesList request conforms to.

Creating a Request

tablesFeaturesList Source

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

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

Request Lenses

tflInclude :: Lens' TablesFeaturesList (Maybe Text) Source

A comma separated list of optional data to include. Optional data available: schema.

tflWhere :: Lens' TablesFeaturesList (Maybe Text) Source

An SQL-like predicate used to filter results.

tflOrderBy :: Lens' TablesFeaturesList (Maybe Text) Source

An SQL-like order by clause used to sort results. If this parameter is not included, the order of features is undefined.

tflVersion :: Lens' TablesFeaturesList (Maybe TablesFeaturesListVersion) Source

The table version to access. See Accessing Public Data for information.

tflId :: Lens' TablesFeaturesList Text Source

The ID of the table to which these features belong.

tflLimit :: Lens' TablesFeaturesList (Maybe Word32) Source

The total number of features to return from the query, irrespective of the number of pages.

tflPageToken :: Lens' TablesFeaturesList (Maybe Text) Source

The continuation token, used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.

tflSelect :: Lens' TablesFeaturesList (Maybe Text) Source

A SQL-like projection clause used to specify returned properties. If this parameter is not included, all properties are returned.

tflIntersects :: Lens' TablesFeaturesList (Maybe Text) Source

A geometry literal that specifies the spatial restriction of the query.

tflMaxResults :: Lens' TablesFeaturesList (Maybe Word32) Source

The maximum number of items to include in the response, used for paging. The maximum supported value is 1000.