{-# 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.DFAReporting.AccountPermissions.List -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieves the list of account permissions. -- -- /See:/ for @dfareporting.accountPermissions.list@. module Network.Google.Resource.DFAReporting.AccountPermissions.List ( -- * REST Resource AccountPermissionsListResource -- * Creating a Request , accountPermissionsList , AccountPermissionsList -- * Request Lenses , aplProFileId ) where import Network.Google.DFAReporting.Types import Network.Google.Prelude -- | A resource alias for @dfareporting.accountPermissions.list@ method which the -- 'AccountPermissionsList' request conforms to. type AccountPermissionsListResource = "dfareporting" :> "v3.2" :> "userprofiles" :> Capture "profileId" (Textual Int64) :> "accountPermissions" :> QueryParam "alt" AltJSON :> Get '[JSON] AccountPermissionsListResponse -- | Retrieves the list of account permissions. -- -- /See:/ 'accountPermissionsList' smart constructor. newtype AccountPermissionsList = AccountPermissionsList' { _aplProFileId :: Textual Int64 } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'AccountPermissionsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'aplProFileId' accountPermissionsList :: Int64 -- ^ 'aplProFileId' -> AccountPermissionsList accountPermissionsList pAplProFileId_ = AccountPermissionsList' { _aplProFileId = _Coerce # pAplProFileId_ } -- | User profile ID associated with this request. aplProFileId :: Lens' AccountPermissionsList Int64 aplProFileId = lens _aplProFileId (\ s a -> s{_aplProFileId = a}) . _Coerce instance GoogleRequest AccountPermissionsList where type Rs AccountPermissionsList = AccountPermissionsListResponse type Scopes AccountPermissionsList = '["https://www.googleapis.com/auth/dfatrafficking"] requestClient AccountPermissionsList'{..} = go _aplProFileId (Just AltJSON) dFAReportingService where go = buildClient (Proxy :: Proxy AccountPermissionsListResource) mempty