gogol-drive-0.5.0: gen/Network/Google/Resource/Drive/Files/EmptyTrash.hs
{-# 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.Drive.Files.EmptyTrash
-- Copyright : (c) 2015-2016 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Permanently deletes all of the user\'s trashed files.
--
-- /See:/ <https://developers.google.com/drive/ Drive API Reference> for @drive.files.emptyTrash@.
module Network.Google.Resource.Drive.Files.EmptyTrash
(
-- * REST Resource
FilesEmptyTrashResource
-- * Creating a Request
, filesEmptyTrash
, FilesEmptyTrash
) where
import Network.Google.Drive.Types
import Network.Google.Prelude
-- | A resource alias for @drive.files.emptyTrash@ method which the
-- 'FilesEmptyTrash' request conforms to.
type FilesEmptyTrashResource =
"drive" :>
"v3" :>
"files" :>
"trash" :>
QueryParam "alt" AltJSON :> Delete '[JSON] ()
-- | Permanently deletes all of the user\'s trashed files.
--
-- /See:/ 'filesEmptyTrash' smart constructor.
data FilesEmptyTrash =
FilesEmptyTrash'
deriving (Eq, Show, Data, Typeable, Generic)
-- | Creates a value of 'FilesEmptyTrash' with the minimum fields required to make a request.
--
filesEmptyTrash
:: FilesEmptyTrash
filesEmptyTrash = FilesEmptyTrash'
instance GoogleRequest FilesEmptyTrash where
type Rs FilesEmptyTrash = ()
type Scopes FilesEmptyTrash =
'["https://www.googleapis.com/auth/drive"]
requestClient FilesEmptyTrash'{}
= go (Just AltJSON) driveService
where go
= buildClient
(Proxy :: Proxy FilesEmptyTrashResource)
mempty