{-# 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.RemoveInstance -- 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 instance URL from a target pool. -- -- /See:/ for @compute.targetPools.removeInstance@. module Network.Google.Resource.Compute.TargetPools.RemoveInstance ( -- * REST Resource TargetPoolsRemoveInstanceResource -- * Creating a Request , targetPoolsRemoveInstance , TargetPoolsRemoveInstance -- * Request Lenses , tpriRequestId , tpriProject , tpriTargetPool , tpriPayload , tpriRegion ) where import Network.Google.Compute.Types import Network.Google.Prelude -- | A resource alias for @compute.targetPools.removeInstance@ method which the -- 'TargetPoolsRemoveInstance' request conforms to. type TargetPoolsRemoveInstanceResource = "compute" :> "v1" :> "projects" :> Capture "project" Text :> "regions" :> Capture "region" Text :> "targetPools" :> Capture "targetPool" Text :> "removeInstance" :> QueryParam "requestId" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] TargetPoolsRemoveInstanceRequest :> Post '[JSON] Operation -- | Removes instance URL from a target pool. -- -- /See:/ 'targetPoolsRemoveInstance' smart constructor. data TargetPoolsRemoveInstance = TargetPoolsRemoveInstance' { _tpriRequestId :: !(Maybe Text) , _tpriProject :: !Text , _tpriTargetPool :: !Text , _tpriPayload :: !TargetPoolsRemoveInstanceRequest , _tpriRegion :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'TargetPoolsRemoveInstance' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'tpriRequestId' -- -- * 'tpriProject' -- -- * 'tpriTargetPool' -- -- * 'tpriPayload' -- -- * 'tpriRegion' targetPoolsRemoveInstance :: Text -- ^ 'tpriProject' -> Text -- ^ 'tpriTargetPool' -> TargetPoolsRemoveInstanceRequest -- ^ 'tpriPayload' -> Text -- ^ 'tpriRegion' -> TargetPoolsRemoveInstance targetPoolsRemoveInstance pTpriProject_ pTpriTargetPool_ pTpriPayload_ pTpriRegion_ = TargetPoolsRemoveInstance' { _tpriRequestId = Nothing , _tpriProject = pTpriProject_ , _tpriTargetPool = pTpriTargetPool_ , _tpriPayload = pTpriPayload_ , _tpriRegion = pTpriRegion_ } -- | An optional request ID to identify requests. Specify a unique request ID -- so that if you must retry your request, the server will know to ignore -- the request if it has already been completed. For example, consider a -- situation where you make an initial request and the request times out. -- If you make the request again with the same request ID, the server can -- check if original operation with the same request ID was received, and -- if so, will ignore the second request. This prevents clients from -- accidentally creating duplicate commitments. The request ID must be a -- valid UUID with the exception that zero UUID is not supported -- (00000000-0000-0000-0000-000000000000). tpriRequestId :: Lens' TargetPoolsRemoveInstance (Maybe Text) tpriRequestId = lens _tpriRequestId (\ s a -> s{_tpriRequestId = a}) -- | Project ID for this request. tpriProject :: Lens' TargetPoolsRemoveInstance Text tpriProject = lens _tpriProject (\ s a -> s{_tpriProject = a}) -- | Name of the TargetPool resource to remove instances from. tpriTargetPool :: Lens' TargetPoolsRemoveInstance Text tpriTargetPool = lens _tpriTargetPool (\ s a -> s{_tpriTargetPool = a}) -- | Multipart request metadata. tpriPayload :: Lens' TargetPoolsRemoveInstance TargetPoolsRemoveInstanceRequest tpriPayload = lens _tpriPayload (\ s a -> s{_tpriPayload = a}) -- | Name of the region scoping this request. tpriRegion :: Lens' TargetPoolsRemoveInstance Text tpriRegion = lens _tpriRegion (\ s a -> s{_tpriRegion = a}) instance GoogleRequest TargetPoolsRemoveInstance where type Rs TargetPoolsRemoveInstance = Operation type Scopes TargetPoolsRemoveInstance = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/compute"] requestClient TargetPoolsRemoveInstance'{..} = go _tpriProject _tpriRegion _tpriTargetPool _tpriRequestId (Just AltJSON) _tpriPayload computeService where go = buildClient (Proxy :: Proxy TargetPoolsRemoveInstanceResource) mempty