{-# 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.UserPermissions.Delete -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes a user from the account, revoking access to it and all of its -- containers. -- -- /See:/ for @tagmanager.accounts.user_permissions.delete@. module Network.Google.Resource.TagManager.Accounts.UserPermissions.Delete ( -- * REST Resource AccountsUserPermissionsDeleteResource -- * Creating a Request , accountsUserPermissionsDelete , AccountsUserPermissionsDelete -- * Request Lenses , aupdPath ) where import Network.Google.Prelude import Network.Google.TagManager.Types -- | A resource alias for @tagmanager.accounts.user_permissions.delete@ method which the -- 'AccountsUserPermissionsDelete' request conforms to. type AccountsUserPermissionsDeleteResource = "tagmanager" :> "v2" :> Capture "path" Text :> QueryParam "alt" AltJSON :> Delete '[JSON] () -- | Removes a user from the account, revoking access to it and all of its -- containers. -- -- /See:/ 'accountsUserPermissionsDelete' smart constructor. newtype AccountsUserPermissionsDelete = AccountsUserPermissionsDelete' { _aupdPath :: Text } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'AccountsUserPermissionsDelete' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'aupdPath' accountsUserPermissionsDelete :: Text -- ^ 'aupdPath' -> AccountsUserPermissionsDelete accountsUserPermissionsDelete pAupdPath_ = AccountsUserPermissionsDelete' {_aupdPath = pAupdPath_} -- | GTM UserPermission\'s API relative path. Example: -- accounts\/{account_id}\/user_permissions\/{user_permission_id} aupdPath :: Lens' AccountsUserPermissionsDelete Text aupdPath = lens _aupdPath (\ s a -> s{_aupdPath = a}) instance GoogleRequest AccountsUserPermissionsDelete where type Rs AccountsUserPermissionsDelete = () type Scopes AccountsUserPermissionsDelete = '["https://www.googleapis.com/auth/tagmanager.manage.users"] requestClient AccountsUserPermissionsDelete'{..} = go _aupdPath (Just AltJSON) tagManagerService where go = buildClient (Proxy :: Proxy AccountsUserPermissionsDeleteResource) mempty