{-# 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.Containers.Workspaces.Variables.Revert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Reverts changes to a GTM Variable in a GTM Workspace. -- -- /See:/ for @tagmanager.accounts.containers.workspaces.variables.revert@. module Network.Google.Resource.TagManager.Accounts.Containers.Workspaces.Variables.Revert ( -- * REST Resource AccountsContainersWorkspacesVariablesRevertResource -- * Creating a Request , accountsContainersWorkspacesVariablesRevert , AccountsContainersWorkspacesVariablesRevert -- * Request Lenses , acwvrPath , acwvrFingerprint ) where import Network.Google.Prelude import Network.Google.TagManager.Types -- | A resource alias for @tagmanager.accounts.containers.workspaces.variables.revert@ method which the -- 'AccountsContainersWorkspacesVariablesRevert' request conforms to. type AccountsContainersWorkspacesVariablesRevertResource = "tagmanager" :> "v2" :> CaptureMode "path" "revert" Text :> QueryParam "fingerprint" Text :> QueryParam "alt" AltJSON :> Post '[JSON] RevertVariableResponse -- | Reverts changes to a GTM Variable in a GTM Workspace. -- -- /See:/ 'accountsContainersWorkspacesVariablesRevert' smart constructor. data AccountsContainersWorkspacesVariablesRevert = AccountsContainersWorkspacesVariablesRevert' { _acwvrPath :: !Text , _acwvrFingerprint :: !(Maybe Text) } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'AccountsContainersWorkspacesVariablesRevert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'acwvrPath' -- -- * 'acwvrFingerprint' accountsContainersWorkspacesVariablesRevert :: Text -- ^ 'acwvrPath' -> AccountsContainersWorkspacesVariablesRevert accountsContainersWorkspacesVariablesRevert pAcwvrPath_ = AccountsContainersWorkspacesVariablesRevert' {_acwvrPath = pAcwvrPath_, _acwvrFingerprint = Nothing} -- | GTM Variable\'s API relative path. Example: -- accounts\/{account_id}\/containers\/{container_id}\/workspaces\/{workspace_id}\/variables\/{variable_id} acwvrPath :: Lens' AccountsContainersWorkspacesVariablesRevert Text acwvrPath = lens _acwvrPath (\ s a -> s{_acwvrPath = a}) -- | When provided, this fingerprint must match the fingerprint of the -- variable in storage. acwvrFingerprint :: Lens' AccountsContainersWorkspacesVariablesRevert (Maybe Text) acwvrFingerprint = lens _acwvrFingerprint (\ s a -> s{_acwvrFingerprint = a}) instance GoogleRequest AccountsContainersWorkspacesVariablesRevert where type Rs AccountsContainersWorkspacesVariablesRevert = RevertVariableResponse type Scopes AccountsContainersWorkspacesVariablesRevert = '["https://www.googleapis.com/auth/tagmanager.edit.containers"] requestClient AccountsContainersWorkspacesVariablesRevert'{..} = go _acwvrPath _acwvrFingerprint (Just AltJSON) tagManagerService where go = buildClient (Proxy :: Proxy AccountsContainersWorkspacesVariablesRevertResource) mempty