{-# 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.Content.Datafeeds.Update -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates a datafeed configuration of your Merchant Center account. -- -- /See:/ for @content.datafeeds.update@. module Network.Google.Resource.Content.Datafeeds.Update ( -- * REST Resource DatafeedsUpdateResource -- * Creating a Request , datafeedsUpdate , DatafeedsUpdate -- * Request Lenses , duMerchantId , duPayload , duDatafeedId ) where import Network.Google.Prelude import Network.Google.ShoppingContent.Types -- | A resource alias for @content.datafeeds.update@ method which the -- 'DatafeedsUpdate' request conforms to. type DatafeedsUpdateResource = "content" :> "v2.1" :> Capture "merchantId" (Textual Word64) :> "datafeeds" :> Capture "datafeedId" (Textual Word64) :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Datafeed :> Put '[JSON] Datafeed -- | Updates a datafeed configuration of your Merchant Center account. -- -- /See:/ 'datafeedsUpdate' smart constructor. data DatafeedsUpdate = DatafeedsUpdate' { _duMerchantId :: !(Textual Word64) , _duPayload :: !Datafeed , _duDatafeedId :: !(Textual Word64) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'DatafeedsUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'duMerchantId' -- -- * 'duPayload' -- -- * 'duDatafeedId' datafeedsUpdate :: Word64 -- ^ 'duMerchantId' -> Datafeed -- ^ 'duPayload' -> Word64 -- ^ 'duDatafeedId' -> DatafeedsUpdate datafeedsUpdate pDuMerchantId_ pDuPayload_ pDuDatafeedId_ = DatafeedsUpdate' { _duMerchantId = _Coerce # pDuMerchantId_ , _duPayload = pDuPayload_ , _duDatafeedId = _Coerce # pDuDatafeedId_ } -- | The ID of the account that manages the datafeed. This account cannot be -- a multi-client account. duMerchantId :: Lens' DatafeedsUpdate Word64 duMerchantId = lens _duMerchantId (\ s a -> s{_duMerchantId = a}) . _Coerce -- | Multipart request metadata. duPayload :: Lens' DatafeedsUpdate Datafeed duPayload = lens _duPayload (\ s a -> s{_duPayload = a}) -- | The ID of the datafeed. duDatafeedId :: Lens' DatafeedsUpdate Word64 duDatafeedId = lens _duDatafeedId (\ s a -> s{_duDatafeedId = a}) . _Coerce instance GoogleRequest DatafeedsUpdate where type Rs DatafeedsUpdate = Datafeed type Scopes DatafeedsUpdate = '["https://www.googleapis.com/auth/content"] requestClient DatafeedsUpdate'{..} = go _duMerchantId _duDatafeedId (Just AltJSON) _duPayload shoppingContentService where go = buildClient (Proxy :: Proxy DatafeedsUpdateResource) mempty