{-# 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.Container.Projects.Zones.Clusters.NodePools.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) -- -- Deletes a node pool from a cluster. -- -- /See:/ for @container.projects.zones.clusters.nodePools.delete@. module Network.Google.Resource.Container.Projects.Zones.Clusters.NodePools.Delete ( -- * REST Resource ProjectsZonesClustersNodePoolsDeleteResource -- * Creating a Request , projectsZonesClustersNodePoolsDelete , ProjectsZonesClustersNodePoolsDelete -- * Request Lenses , pzcnpdXgafv , pzcnpdUploadProtocol , pzcnpdAccessToken , pzcnpdUploadType , pzcnpdZone , pzcnpdNodePoolId , pzcnpdName , pzcnpdClusterId , pzcnpdProjectId , pzcnpdCallback ) where import Network.Google.Container.Types import Network.Google.Prelude -- | A resource alias for @container.projects.zones.clusters.nodePools.delete@ method which the -- 'ProjectsZonesClustersNodePoolsDelete' request conforms to. type ProjectsZonesClustersNodePoolsDeleteResource = "v1" :> "projects" :> Capture "projectId" Text :> "zones" :> Capture "zone" Text :> "clusters" :> Capture "clusterId" Text :> "nodePools" :> Capture "nodePoolId" Text :> QueryParam "$.xgafv" Xgafv :> QueryParam "upload_protocol" Text :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "name" Text :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> Delete '[JSON] Operation -- | Deletes a node pool from a cluster. -- -- /See:/ 'projectsZonesClustersNodePoolsDelete' smart constructor. data ProjectsZonesClustersNodePoolsDelete = ProjectsZonesClustersNodePoolsDelete' { _pzcnpdXgafv :: !(Maybe Xgafv) , _pzcnpdUploadProtocol :: !(Maybe Text) , _pzcnpdAccessToken :: !(Maybe Text) , _pzcnpdUploadType :: !(Maybe Text) , _pzcnpdZone :: !Text , _pzcnpdNodePoolId :: !Text , _pzcnpdName :: !(Maybe Text) , _pzcnpdClusterId :: !Text , _pzcnpdProjectId :: !Text , _pzcnpdCallback :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProjectsZonesClustersNodePoolsDelete' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'pzcnpdXgafv' -- -- * 'pzcnpdUploadProtocol' -- -- * 'pzcnpdAccessToken' -- -- * 'pzcnpdUploadType' -- -- * 'pzcnpdZone' -- -- * 'pzcnpdNodePoolId' -- -- * 'pzcnpdName' -- -- * 'pzcnpdClusterId' -- -- * 'pzcnpdProjectId' -- -- * 'pzcnpdCallback' projectsZonesClustersNodePoolsDelete :: Text -- ^ 'pzcnpdZone' -> Text -- ^ 'pzcnpdNodePoolId' -> Text -- ^ 'pzcnpdClusterId' -> Text -- ^ 'pzcnpdProjectId' -> ProjectsZonesClustersNodePoolsDelete projectsZonesClustersNodePoolsDelete pPzcnpdZone_ pPzcnpdNodePoolId_ pPzcnpdClusterId_ pPzcnpdProjectId_ = ProjectsZonesClustersNodePoolsDelete' { _pzcnpdXgafv = Nothing , _pzcnpdUploadProtocol = Nothing , _pzcnpdAccessToken = Nothing , _pzcnpdUploadType = Nothing , _pzcnpdZone = pPzcnpdZone_ , _pzcnpdNodePoolId = pPzcnpdNodePoolId_ , _pzcnpdName = Nothing , _pzcnpdClusterId = pPzcnpdClusterId_ , _pzcnpdProjectId = pPzcnpdProjectId_ , _pzcnpdCallback = Nothing } -- | V1 error format. pzcnpdXgafv :: Lens' ProjectsZonesClustersNodePoolsDelete (Maybe Xgafv) pzcnpdXgafv = lens _pzcnpdXgafv (\ s a -> s{_pzcnpdXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). pzcnpdUploadProtocol :: Lens' ProjectsZonesClustersNodePoolsDelete (Maybe Text) pzcnpdUploadProtocol = lens _pzcnpdUploadProtocol (\ s a -> s{_pzcnpdUploadProtocol = a}) -- | OAuth access token. pzcnpdAccessToken :: Lens' ProjectsZonesClustersNodePoolsDelete (Maybe Text) pzcnpdAccessToken = lens _pzcnpdAccessToken (\ s a -> s{_pzcnpdAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). pzcnpdUploadType :: Lens' ProjectsZonesClustersNodePoolsDelete (Maybe Text) pzcnpdUploadType = lens _pzcnpdUploadType (\ s a -> s{_pzcnpdUploadType = a}) -- | Deprecated. The name of the Google Compute Engine -- [zone](\/compute\/docs\/zones#available) in which the cluster resides. -- This field has been deprecated and replaced by the name field. pzcnpdZone :: Lens' ProjectsZonesClustersNodePoolsDelete Text pzcnpdZone = lens _pzcnpdZone (\ s a -> s{_pzcnpdZone = a}) -- | Deprecated. The name of the node pool to delete. This field has been -- deprecated and replaced by the name field. pzcnpdNodePoolId :: Lens' ProjectsZonesClustersNodePoolsDelete Text pzcnpdNodePoolId = lens _pzcnpdNodePoolId (\ s a -> s{_pzcnpdNodePoolId = a}) -- | The name (project, location, cluster, node pool id) of the node pool to -- delete. Specified in the format -- \'projects\/*\/locations\/*\/clusters\/*\/nodePools\/*\'. pzcnpdName :: Lens' ProjectsZonesClustersNodePoolsDelete (Maybe Text) pzcnpdName = lens _pzcnpdName (\ s a -> s{_pzcnpdName = a}) -- | Deprecated. The name of the cluster. This field has been deprecated and -- replaced by the name field. pzcnpdClusterId :: Lens' ProjectsZonesClustersNodePoolsDelete Text pzcnpdClusterId = lens _pzcnpdClusterId (\ s a -> s{_pzcnpdClusterId = a}) -- | Deprecated. The Google Developers Console [project ID or project -- number](https:\/\/developers.google.com\/console\/help\/new\/#projectnumber). -- This field has been deprecated and replaced by the name field. pzcnpdProjectId :: Lens' ProjectsZonesClustersNodePoolsDelete Text pzcnpdProjectId = lens _pzcnpdProjectId (\ s a -> s{_pzcnpdProjectId = a}) -- | JSONP pzcnpdCallback :: Lens' ProjectsZonesClustersNodePoolsDelete (Maybe Text) pzcnpdCallback = lens _pzcnpdCallback (\ s a -> s{_pzcnpdCallback = a}) instance GoogleRequest ProjectsZonesClustersNodePoolsDelete where type Rs ProjectsZonesClustersNodePoolsDelete = Operation type Scopes ProjectsZonesClustersNodePoolsDelete = '["https://www.googleapis.com/auth/cloud-platform"] requestClient ProjectsZonesClustersNodePoolsDelete'{..} = go _pzcnpdProjectId _pzcnpdZone _pzcnpdClusterId _pzcnpdNodePoolId _pzcnpdXgafv _pzcnpdUploadProtocol _pzcnpdAccessToken _pzcnpdUploadType _pzcnpdName _pzcnpdCallback (Just AltJSON) containerService where go = buildClient (Proxy :: Proxy ProjectsZonesClustersNodePoolsDeleteResource) mempty