{-# 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.ObjectAccessControls.Get -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns the ACL entry for the specified entity on the specified object. -- -- /See:/ for @storage.objectAccessControls.get@. module Network.Google.Resource.Storage.ObjectAccessControls.Get ( -- * REST Resource ObjectAccessControlsGetResource -- * Creating a Request , objectAccessControlsGet , ObjectAccessControlsGet -- * Request Lenses , oacgBucket , oacgObject , oacgEntity , oacgGeneration ) where import Network.Google.Prelude import Network.Google.Storage.Types -- | A resource alias for @storage.objectAccessControls.get@ method which the -- 'ObjectAccessControlsGet' request conforms to. type ObjectAccessControlsGetResource = "storage" :> "v1" :> "b" :> Capture "bucket" Text :> "o" :> Capture "object" Text :> "acl" :> Capture "entity" Text :> QueryParam "generation" (Textual Int64) :> QueryParam "alt" AltJSON :> Get '[JSON] ObjectAccessControl -- | Returns the ACL entry for the specified entity on the specified object. -- -- /See:/ 'objectAccessControlsGet' smart constructor. data ObjectAccessControlsGet = ObjectAccessControlsGet' { _oacgBucket :: !Text , _oacgObject :: !Text , _oacgEntity :: !Text , _oacgGeneration :: !(Maybe (Textual Int64)) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ObjectAccessControlsGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'oacgBucket' -- -- * 'oacgObject' -- -- * 'oacgEntity' -- -- * 'oacgGeneration' objectAccessControlsGet :: Text -- ^ 'oacgBucket' -> Text -- ^ 'oacgObject' -> Text -- ^ 'oacgEntity' -> ObjectAccessControlsGet objectAccessControlsGet pOacgBucket_ pOacgObject_ pOacgEntity_ = ObjectAccessControlsGet' { _oacgBucket = pOacgBucket_ , _oacgObject = pOacgObject_ , _oacgEntity = pOacgEntity_ , _oacgGeneration = Nothing } -- | Name of a bucket. oacgBucket :: Lens' ObjectAccessControlsGet Text oacgBucket = lens _oacgBucket (\ s a -> s{_oacgBucket = a}) -- | Name of the object. For information about how to URL encode object names -- to be path safe, see Encoding URI Path Parts. oacgObject :: Lens' ObjectAccessControlsGet Text oacgObject = lens _oacgObject (\ s a -> s{_oacgObject = a}) -- | The entity holding the permission. Can be user-userId, -- user-emailAddress, group-groupId, group-emailAddress, allUsers, or -- allAuthenticatedUsers. oacgEntity :: Lens' ObjectAccessControlsGet Text oacgEntity = lens _oacgEntity (\ s a -> s{_oacgEntity = a}) -- | If present, selects a specific revision of this object (as opposed to -- the latest version, the default). oacgGeneration :: Lens' ObjectAccessControlsGet (Maybe Int64) oacgGeneration = lens _oacgGeneration (\ s a -> s{_oacgGeneration = a}) . mapping _Coerce instance GoogleRequest ObjectAccessControlsGet where type Rs ObjectAccessControlsGet = ObjectAccessControl type Scopes ObjectAccessControlsGet = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/devstorage.full_control"] requestClient ObjectAccessControlsGet'{..} = go _oacgBucket _oacgObject _oacgEntity _oacgGeneration (Just AltJSON) storageService where go = buildClient (Proxy :: Proxy ObjectAccessControlsGetResource) mempty