{-# 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.Compute.TargetPools.SetBackup -- Copyright : (c) 2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Changes backup pool configurations. -- -- /See:/ for @compute.targetPools.setBackup@. module Network.Google.Resource.Compute.TargetPools.SetBackup ( -- * REST Resource TargetPoolsSetBackupResource -- * Creating a Request , targetPoolsSetBackup , TargetPoolsSetBackup -- * Request Lenses , tpsbProject , tpsbTargetPool , tpsbPayload , tpsbFailoverRatio , tpsbRegion ) where import Network.Google.Compute.Types import Network.Google.Prelude -- | A resource alias for @compute.targetPools.setBackup@ method which the -- 'TargetPoolsSetBackup' request conforms to. type TargetPoolsSetBackupResource = "compute" :> "v1" :> "projects" :> Capture "project" Text :> "regions" :> Capture "region" Text :> "targetPools" :> Capture "targetPool" Text :> "setBackup" :> QueryParam "failoverRatio" (Textual Double) :> QueryParam "alt" AltJSON :> ReqBody '[JSON] TargetReference :> Post '[JSON] Operation -- | Changes backup pool configurations. -- -- /See:/ 'targetPoolsSetBackup' smart constructor. data TargetPoolsSetBackup = TargetPoolsSetBackup { _tpsbProject :: !Text , _tpsbTargetPool :: !Text , _tpsbPayload :: !TargetReference , _tpsbFailoverRatio :: !(Maybe (Textual Double)) , _tpsbRegion :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'TargetPoolsSetBackup' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'tpsbProject' -- -- * 'tpsbTargetPool' -- -- * 'tpsbPayload' -- -- * 'tpsbFailoverRatio' -- -- * 'tpsbRegion' targetPoolsSetBackup :: Text -- ^ 'tpsbProject' -> Text -- ^ 'tpsbTargetPool' -> TargetReference -- ^ 'tpsbPayload' -> Text -- ^ 'tpsbRegion' -> TargetPoolsSetBackup targetPoolsSetBackup pTpsbProject_ pTpsbTargetPool_ pTpsbPayload_ pTpsbRegion_ = TargetPoolsSetBackup { _tpsbProject = pTpsbProject_ , _tpsbTargetPool = pTpsbTargetPool_ , _tpsbPayload = pTpsbPayload_ , _tpsbFailoverRatio = Nothing , _tpsbRegion = pTpsbRegion_ } -- | Name of the project scoping this request. tpsbProject :: Lens' TargetPoolsSetBackup Text tpsbProject = lens _tpsbProject (\ s a -> s{_tpsbProject = a}) -- | Name of the TargetPool resource for which the backup is to be set. tpsbTargetPool :: Lens' TargetPoolsSetBackup Text tpsbTargetPool = lens _tpsbTargetPool (\ s a -> s{_tpsbTargetPool = a}) -- | Multipart request metadata. tpsbPayload :: Lens' TargetPoolsSetBackup TargetReference tpsbPayload = lens _tpsbPayload (\ s a -> s{_tpsbPayload = a}) -- | New failoverRatio value for the containing target pool. tpsbFailoverRatio :: Lens' TargetPoolsSetBackup (Maybe Double) tpsbFailoverRatio = lens _tpsbFailoverRatio (\ s a -> s{_tpsbFailoverRatio = a}) . mapping _Coerce -- | Name of the region scoping this request. tpsbRegion :: Lens' TargetPoolsSetBackup Text tpsbRegion = lens _tpsbRegion (\ s a -> s{_tpsbRegion = a}) instance GoogleRequest TargetPoolsSetBackup where type Rs TargetPoolsSetBackup = Operation requestClient TargetPoolsSetBackup{..} = go _tpsbProject _tpsbRegion _tpsbTargetPool _tpsbFailoverRatio (Just AltJSON) _tpsbPayload computeService where go = buildClient (Proxy :: Proxy TargetPoolsSetBackupResource) mempty