{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.MapsEngine.RasterCollections.Get -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Return metadata for a particular raster collection. -- -- /See:/ for @mapsengine.rasterCollections.get@. module Network.Google.Resource.MapsEngine.RasterCollections.Get ( -- * REST Resource RasterCollectionsGetResource -- * Creating a Request , rasterCollectionsGet , RasterCollectionsGet -- * Request Lenses , rcgId ) where import Network.Google.MapsEngine.Types import Network.Google.Prelude -- | A resource alias for @mapsengine.rasterCollections.get@ method which the -- 'RasterCollectionsGet' request conforms to. type RasterCollectionsGetResource = "mapsengine" :> "v1" :> "rasterCollections" :> Capture "id" Text :> QueryParam "alt" AltJSON :> Get '[JSON] RasterCollection -- | Return metadata for a particular raster collection. -- -- /See:/ 'rasterCollectionsGet' smart constructor. newtype RasterCollectionsGet = RasterCollectionsGet' { _rcgId :: Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'RasterCollectionsGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'rcgId' rasterCollectionsGet :: Text -- ^ 'rcgId' -> RasterCollectionsGet rasterCollectionsGet pRcgId_ = RasterCollectionsGet' { _rcgId = pRcgId_ } -- | The ID of the raster collection. rcgId :: Lens' RasterCollectionsGet Text rcgId = lens _rcgId (\ s a -> s{_rcgId = a}) instance GoogleRequest RasterCollectionsGet where type Rs RasterCollectionsGet = RasterCollection type Scopes RasterCollectionsGet = '["https://www.googleapis.com/auth/mapsengine", "https://www.googleapis.com/auth/mapsengine.readonly"] requestClient RasterCollectionsGet'{..} = go _rcgId (Just AltJSON) mapsEngineService where go = buildClient (Proxy :: Proxy RasterCollectionsGetResource) mempty