{-# 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.Storage.BucketAccessControls.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 an ACL entry on the specified bucket. -- -- /See:/ for @storage.bucketAccessControls.update@. module Network.Google.Resource.Storage.BucketAccessControls.Update ( -- * REST Resource BucketAccessControlsUpdateResource -- * Creating a Request , bucketAccessControlsUpdate , BucketAccessControlsUpdate -- * Request Lenses , bacuBucket , bacuPayload , bacuUserProject , bacuEntity ) where import Network.Google.Prelude import Network.Google.Storage.Types -- | A resource alias for @storage.bucketAccessControls.update@ method which the -- 'BucketAccessControlsUpdate' request conforms to. type BucketAccessControlsUpdateResource = "storage" :> "v1" :> "b" :> Capture "bucket" Text :> "acl" :> Capture "entity" Text :> QueryParam "userProject" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] BucketAccessControl :> Put '[JSON] BucketAccessControl -- | Updates an ACL entry on the specified bucket. -- -- /See:/ 'bucketAccessControlsUpdate' smart constructor. data BucketAccessControlsUpdate = BucketAccessControlsUpdate' { _bacuBucket :: !Text , _bacuPayload :: !BucketAccessControl , _bacuUserProject :: !(Maybe Text) , _bacuEntity :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'BucketAccessControlsUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'bacuBucket' -- -- * 'bacuPayload' -- -- * 'bacuUserProject' -- -- * 'bacuEntity' bucketAccessControlsUpdate :: Text -- ^ 'bacuBucket' -> BucketAccessControl -- ^ 'bacuPayload' -> Text -- ^ 'bacuEntity' -> BucketAccessControlsUpdate bucketAccessControlsUpdate pBacuBucket_ pBacuPayload_ pBacuEntity_ = BucketAccessControlsUpdate' { _bacuBucket = pBacuBucket_ , _bacuPayload = pBacuPayload_ , _bacuUserProject = Nothing , _bacuEntity = pBacuEntity_ } -- | Name of a bucket. bacuBucket :: Lens' BucketAccessControlsUpdate Text bacuBucket = lens _bacuBucket (\ s a -> s{_bacuBucket = a}) -- | Multipart request metadata. bacuPayload :: Lens' BucketAccessControlsUpdate BucketAccessControl bacuPayload = lens _bacuPayload (\ s a -> s{_bacuPayload = a}) -- | The project to be billed for this request. Required for Requester Pays -- buckets. bacuUserProject :: Lens' BucketAccessControlsUpdate (Maybe Text) bacuUserProject = lens _bacuUserProject (\ s a -> s{_bacuUserProject = a}) -- | The entity holding the permission. Can be user-userId, -- user-emailAddress, group-groupId, group-emailAddress, allUsers, or -- allAuthenticatedUsers. bacuEntity :: Lens' BucketAccessControlsUpdate Text bacuEntity = lens _bacuEntity (\ s a -> s{_bacuEntity = a}) instance GoogleRequest BucketAccessControlsUpdate where type Rs BucketAccessControlsUpdate = BucketAccessControl type Scopes BucketAccessControlsUpdate = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/devstorage.full_control"] requestClient BucketAccessControlsUpdate'{..} = go _bacuBucket _bacuEntity _bacuUserProject (Just AltJSON) _bacuPayload storageService where go = buildClient (Proxy :: Proxy BucketAccessControlsUpdateResource) mempty