{-# 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.TagManager.Accounts.Permissions.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) -- -- List all users that have access to the account along with Account and -- Container Permissions granted to each of them. -- -- /See:/ for @tagmanager.accounts.permissions.list@. module Network.Google.Resource.TagManager.Accounts.Permissions.List ( -- * REST Resource AccountsPermissionsListResource -- * Creating a Request , accountsPermissionsList , AccountsPermissionsList -- * Request Lenses , aplAccountId ) where import Network.Google.Prelude import Network.Google.TagManager.Types -- | A resource alias for @tagmanager.accounts.permissions.list@ method which the -- 'AccountsPermissionsList' request conforms to. type AccountsPermissionsListResource = "tagmanager" :> "v1" :> "accounts" :> Capture "accountId" Text :> "permissions" :> QueryParam "alt" AltJSON :> Get '[JSON] ListAccountUsersResponse -- | List all users that have access to the account along with Account and -- Container Permissions granted to each of them. -- -- /See:/ 'accountsPermissionsList' smart constructor. newtype AccountsPermissionsList = AccountsPermissionsList' { _aplAccountId :: Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'AccountsPermissionsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'aplAccountId' accountsPermissionsList :: Text -- ^ 'aplAccountId' -> AccountsPermissionsList accountsPermissionsList pAplAccountId_ = AccountsPermissionsList' { _aplAccountId = pAplAccountId_ } -- | The GTM Account ID. \'required tagmanager.accounts.permissions.list aplAccountId :: Lens' AccountsPermissionsList Text aplAccountId = lens _aplAccountId (\ s a -> s{_aplAccountId = a}) instance GoogleRequest AccountsPermissionsList where type Rs AccountsPermissionsList = ListAccountUsersResponse type Scopes AccountsPermissionsList = '["https://www.googleapis.com/auth/tagmanager.manage.users"] requestClient AccountsPermissionsList'{..} = go _aplAccountId (Just AltJSON) tagManagerService where go = buildClient (Proxy :: Proxy AccountsPermissionsListResource) mempty