{-# 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.Storage.Channels.Stop -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Stop watching resources through this channel -- -- /See:/ for @storage.channels.stop@. module Network.Google.Resource.Storage.Channels.Stop ( -- * REST Resource ChannelsStopResource -- * Creating a Request , channelsStop , ChannelsStop -- * Request Lenses , csPayload ) where import Network.Google.Prelude import Network.Google.Storage.Types -- | A resource alias for @storage.channels.stop@ method which the -- 'ChannelsStop' request conforms to. type ChannelsStopResource = "storage" :> "v1" :> "channels" :> "stop" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Channel :> Post '[JSON] () -- | Stop watching resources through this channel -- -- /See:/ 'channelsStop' smart constructor. newtype ChannelsStop = ChannelsStop' { _csPayload :: Channel } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ChannelsStop' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'csPayload' channelsStop :: Channel -- ^ 'csPayload' -> ChannelsStop channelsStop pCsPayload_ = ChannelsStop' { _csPayload = pCsPayload_ } -- | Multipart request metadata. csPayload :: Lens' ChannelsStop Channel csPayload = lens _csPayload (\ s a -> s{_csPayload = a}) instance GoogleRequest ChannelsStop where type Rs ChannelsStop = () type Scopes ChannelsStop = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/cloud-platform.read-only", "https://www.googleapis.com/auth/devstorage.full_control", "https://www.googleapis.com/auth/devstorage.read_only", "https://www.googleapis.com/auth/devstorage.read_write"] requestClient ChannelsStop'{..} = go (Just AltJSON) _csPayload storageService where go = buildClient (Proxy :: Proxy ChannelsStopResource) mempty