{-# 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.Tables.Files.Insert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Upload a file to a placeholder table asset. See Table Upload in the -- Developer\'s Guide for more information. Supported file types are listed -- in the Supported data formats and limits article of the Google Maps -- Engine help center. -- -- /See:/ for @mapsengine.tables.files.insert@. module Network.Google.Resource.MapsEngine.Tables.Files.Insert ( -- * REST Resource TablesFilesInsertResource -- * Creating a Request , tablesFilesInsert , TablesFilesInsert -- * Request Lenses , tfiId , tfiFilename ) where import Network.Google.MapsEngine.Types import Network.Google.Prelude -- | A resource alias for @mapsengine.tables.files.insert@ method which the -- 'TablesFilesInsert' request conforms to. type TablesFilesInsertResource = "mapsengine" :> "v1" :> "tables" :> Capture "id" Text :> "files" :> QueryParam "filename" Text :> QueryParam "alt" AltJSON :> Post '[JSON] () :<|> "upload" :> "mapsengine" :> "v1" :> "tables" :> Capture "id" Text :> "files" :> QueryParam "filename" Text :> QueryParam "alt" AltJSON :> QueryParam "uploadType" AltMedia :> AltMedia :> Post '[JSON] () -- | Upload a file to a placeholder table asset. See Table Upload in the -- Developer\'s Guide for more information. Supported file types are listed -- in the Supported data formats and limits article of the Google Maps -- Engine help center. -- -- /See:/ 'tablesFilesInsert' smart constructor. data TablesFilesInsert = TablesFilesInsert' { _tfiId :: !Text , _tfiFilename :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'TablesFilesInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'tfiId' -- -- * 'tfiFilename' tablesFilesInsert :: Text -- ^ 'tfiId' -> Text -- ^ 'tfiFilename' -> TablesFilesInsert tablesFilesInsert pTfiId_ pTfiFilename_ = TablesFilesInsert' { _tfiId = pTfiId_ , _tfiFilename = pTfiFilename_ } -- | The ID of the table asset. tfiId :: Lens' TablesFilesInsert Text tfiId = lens _tfiId (\ s a -> s{_tfiId = a}) -- | The file name of this uploaded file. tfiFilename :: Lens' TablesFilesInsert Text tfiFilename = lens _tfiFilename (\ s a -> s{_tfiFilename = a}) instance GoogleRequest TablesFilesInsert where type Rs TablesFilesInsert = () type Scopes TablesFilesInsert = '["https://www.googleapis.com/auth/mapsengine"] requestClient TablesFilesInsert'{..} = go _tfiId (Just _tfiFilename) (Just AltJSON) mapsEngineService where go :<|> _ = buildClient (Proxy :: Proxy TablesFilesInsertResource) mempty instance GoogleRequest (MediaUpload TablesFilesInsert) where type Rs (MediaUpload TablesFilesInsert) = () type Scopes (MediaUpload TablesFilesInsert) = Scopes TablesFilesInsert requestClient (MediaUpload TablesFilesInsert'{..} body) = go _tfiId (Just _tfiFilename) (Just AltJSON) (Just AltMedia) body mapsEngineService where _ :<|> go = buildClient (Proxy :: Proxy TablesFilesInsertResource) mempty