{-# 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.Teamdrives.Update -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates a Team Drive\'s metadata -- -- /See:/ for @drive.teamdrives.update@. module Network.Google.Resource.Drive.Teamdrives.Update ( -- * REST Resource TeamdrivesUpdateResource -- * Creating a Request , teamdrivesUpdate , TeamdrivesUpdate -- * Request Lenses , tuPayload , tuTeamDriveId , tuUseDomainAdminAccess ) where import Network.Google.Drive.Types import Network.Google.Prelude -- | A resource alias for @drive.teamdrives.update@ method which the -- 'TeamdrivesUpdate' request conforms to. type TeamdrivesUpdateResource = "drive" :> "v3" :> "teamdrives" :> Capture "teamDriveId" Text :> QueryParam "useDomainAdminAccess" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] TeamDrive :> Patch '[JSON] TeamDrive -- | Updates a Team Drive\'s metadata -- -- /See:/ 'teamdrivesUpdate' smart constructor. data TeamdrivesUpdate = TeamdrivesUpdate' { _tuPayload :: !TeamDrive , _tuTeamDriveId :: !Text , _tuUseDomainAdminAccess :: !Bool } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'TeamdrivesUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'tuPayload' -- -- * 'tuTeamDriveId' -- -- * 'tuUseDomainAdminAccess' teamdrivesUpdate :: TeamDrive -- ^ 'tuPayload' -> Text -- ^ 'tuTeamDriveId' -> TeamdrivesUpdate teamdrivesUpdate pTuPayload_ pTuTeamDriveId_ = TeamdrivesUpdate' { _tuPayload = pTuPayload_ , _tuTeamDriveId = pTuTeamDriveId_ , _tuUseDomainAdminAccess = False } -- | Multipart request metadata. tuPayload :: Lens' TeamdrivesUpdate TeamDrive tuPayload = lens _tuPayload (\ s a -> s{_tuPayload = a}) -- | The ID of the Team Drive tuTeamDriveId :: Lens' TeamdrivesUpdate Text tuTeamDriveId = lens _tuTeamDriveId (\ s a -> s{_tuTeamDriveId = a}) -- | Issue the request as a domain administrator; if set to true, then the -- requester will be granted access if they are an administrator of the -- domain to which the Team Drive belongs. tuUseDomainAdminAccess :: Lens' TeamdrivesUpdate Bool tuUseDomainAdminAccess = lens _tuUseDomainAdminAccess (\ s a -> s{_tuUseDomainAdminAccess = a}) instance GoogleRequest TeamdrivesUpdate where type Rs TeamdrivesUpdate = TeamDrive type Scopes TeamdrivesUpdate = '["https://www.googleapis.com/auth/drive"] requestClient TeamdrivesUpdate'{..} = go _tuTeamDriveId (Just _tuUseDomainAdminAccess) (Just AltJSON) _tuPayload driveService where go = buildClient (Proxy :: Proxy TeamdrivesUpdateResource) mempty