gogol-drive-1.0.0: gen/Gogol/Drive/Revisions/Delete.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE ImportQualifiedPost #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-duplicate-exports #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- |
-- Module : Gogol.Drive.Revisions.Delete
-- Copyright : (c) 2015-2025 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay+gogol@gmail.com>
-- Toni Cebrián <toni@tonicebrian.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Permanently deletes a file version. You can only delete revisions for files with binary content in Google Drive, like images or videos. Revisions for other files, like Google Docs or Sheets, and the last remaining file version can\'t be deleted.
--
-- /See:/ <https://developers.google.com/drive/ Google Drive API Reference> for @drive.revisions.delete@.
module Gogol.Drive.Revisions.Delete
( -- * Resource
DriveRevisionsDeleteResource,
-- ** Constructing a Request
DriveRevisionsDelete (..),
newDriveRevisionsDelete,
)
where
import Gogol.Drive.Types
import Gogol.Prelude qualified as Core
-- | A resource alias for @drive.revisions.delete@ method which the
-- 'DriveRevisionsDelete' request conforms to.
type DriveRevisionsDeleteResource =
"drive"
Core.:> "v3"
Core.:> "files"
Core.:> Core.Capture "fileId" Core.Text
Core.:> "revisions"
Core.:> Core.Capture "revisionId" Core.Text
Core.:> Core.QueryParam "$.xgafv" Xgafv
Core.:> Core.QueryParam "access_token" Core.Text
Core.:> Core.QueryParam "callback" Core.Text
Core.:> Core.QueryParam "uploadType" Core.Text
Core.:> Core.QueryParam "upload_protocol" Core.Text
Core.:> Core.QueryParam "alt" Core.AltJSON
Core.:> Core.Delete '[Core.JSON] ()
-- | Permanently deletes a file version. You can only delete revisions for files with binary content in Google Drive, like images or videos. Revisions for other files, like Google Docs or Sheets, and the last remaining file version can\'t be deleted.
--
-- /See:/ 'newDriveRevisionsDelete' smart constructor.
data DriveRevisionsDelete = DriveRevisionsDelete
{ -- | V1 error format.
xgafv :: (Core.Maybe Xgafv),
-- | OAuth access token.
accessToken :: (Core.Maybe Core.Text),
-- | JSONP
callback :: (Core.Maybe Core.Text),
-- | The ID of the file.
fileId :: Core.Text,
-- | The ID of the revision.
revisionId :: Core.Text,
-- | Legacy upload protocol for media (e.g. \"media\", \"multipart\").
uploadType :: (Core.Maybe Core.Text),
-- | Upload protocol for media (e.g. \"raw\", \"multipart\").
uploadProtocol :: (Core.Maybe Core.Text)
}
deriving (Core.Eq, Core.Show, Core.Generic)
-- | Creates a value of 'DriveRevisionsDelete' with the minimum fields required to make a request.
newDriveRevisionsDelete ::
-- | The ID of the file. See 'fileId'.
Core.Text ->
-- | The ID of the revision. See 'revisionId'.
Core.Text ->
DriveRevisionsDelete
newDriveRevisionsDelete fileId revisionId =
DriveRevisionsDelete
{ xgafv = Core.Nothing,
accessToken = Core.Nothing,
callback = Core.Nothing,
fileId = fileId,
revisionId = revisionId,
uploadType = Core.Nothing,
uploadProtocol = Core.Nothing
}
instance Core.GoogleRequest DriveRevisionsDelete where
type Rs DriveRevisionsDelete = ()
type
Scopes DriveRevisionsDelete =
'[Drive'FullControl, Drive'Appdata, Drive'File]
requestClient DriveRevisionsDelete {..} =
go
fileId
revisionId
xgafv
accessToken
callback
uploadType
uploadProtocol
(Core.Just Core.AltJSON)
driveService
where
go =
Core.buildClient
(Core.Proxy :: Core.Proxy DriveRevisionsDeleteResource)
Core.mempty