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

Contents

Description

Return all rasters within a raster collection.

See: Google Maps Engine API Reference for mapsengine.rasterCollections.rasters.list.

Synopsis

REST Resource

type RasterCollectionsRastersListResource = "mapsengine" :> ("v1" :> ("rasterCollections" :> (Capture "id" Text :> ("rasters" :> (QueryParam "createdAfter" DateTime' :> (QueryParam "creatorEmail" Text :> (QueryParam "role" RasterCollectionsRastersListRole :> (QueryParam "bbox" Text :> (QueryParam "modifiedAfter" DateTime' :> (QueryParam "modifiedBefore" DateTime' :> (QueryParam "pageToken" Text :> (QueryParam "search" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "tags" Text :> (QueryParam "createdBefore" DateTime' :> (QueryParam "alt" AltJSON :> Get `[JSON]` RasterCollectionsRastersListResponse)))))))))))))))) Source

A resource alias for mapsengine.rasterCollections.rasters.list method which the RasterCollectionsRastersList request conforms to.

Creating a Request

Request Lenses

rcrlCreatedAfter :: Lens' RasterCollectionsRastersList (Maybe UTCTime) Source

An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been created at or after this time.

rcrlCreatorEmail :: Lens' RasterCollectionsRastersList (Maybe Text) Source

An email address representing a user. Returned assets that have been created by the user associated with the provided email address.

rcrlRole :: Lens' RasterCollectionsRastersList (Maybe RasterCollectionsRastersListRole) Source

The role parameter indicates that the response should only contain assets where the current user has the specified level of access.

rcrlBbox :: Lens' RasterCollectionsRastersList (Maybe Text) Source

A bounding box, expressed as "west,south,east,north". If set, only assets which intersect this bounding box will be returned.

rcrlId :: Lens' RasterCollectionsRastersList Text Source

The ID of the raster collection to which these rasters belong.

rcrlModifiedAfter :: Lens' RasterCollectionsRastersList (Maybe UTCTime) Source

An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been modified at or after this time.

rcrlModifiedBefore :: Lens' RasterCollectionsRastersList (Maybe UTCTime) Source

An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been modified at or before this time.

rcrlPageToken :: Lens' RasterCollectionsRastersList (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.

rcrlSearch :: Lens' RasterCollectionsRastersList (Maybe Text) Source

An unstructured search string used to filter the set of results based on asset metadata.

rcrlMaxResults :: Lens' RasterCollectionsRastersList (Maybe Word32) Source

The maximum number of items to include in a single response page. The maximum supported value is 100.

rcrlTags :: Lens' RasterCollectionsRastersList (Maybe Text) Source

A comma separated list of tags. Returned assets will contain all the tags from the list.

rcrlCreatedBefore :: Lens' RasterCollectionsRastersList (Maybe UTCTime) Source

An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been created at or before this time.