{-# 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.DFAReporting.CreativeFields.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 an existing creative field. -- -- /See:/ for @dfareporting.creativeFields.update@. module Network.Google.Resource.DFAReporting.CreativeFields.Update ( -- * REST Resource CreativeFieldsUpdateResource -- * Creating a Request , creativeFieldsUpdate , CreativeFieldsUpdate -- * Request Lenses , cfuProFileId , cfuPayload ) where import Network.Google.DFAReporting.Types import Network.Google.Prelude -- | A resource alias for @dfareporting.creativeFields.update@ method which the -- 'CreativeFieldsUpdate' request conforms to. type CreativeFieldsUpdateResource = "dfareporting" :> "v3.3" :> "userprofiles" :> Capture "profileId" (Textual Int64) :> "creativeFields" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] CreativeField :> Put '[JSON] CreativeField -- | Updates an existing creative field. -- -- /See:/ 'creativeFieldsUpdate' smart constructor. data CreativeFieldsUpdate = CreativeFieldsUpdate' { _cfuProFileId :: !(Textual Int64) , _cfuPayload :: !CreativeField } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'CreativeFieldsUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'cfuProFileId' -- -- * 'cfuPayload' creativeFieldsUpdate :: Int64 -- ^ 'cfuProFileId' -> CreativeField -- ^ 'cfuPayload' -> CreativeFieldsUpdate creativeFieldsUpdate pCfuProFileId_ pCfuPayload_ = CreativeFieldsUpdate' {_cfuProFileId = _Coerce # pCfuProFileId_, _cfuPayload = pCfuPayload_} -- | User profile ID associated with this request. cfuProFileId :: Lens' CreativeFieldsUpdate Int64 cfuProFileId = lens _cfuProFileId (\ s a -> s{_cfuProFileId = a}) . _Coerce -- | Multipart request metadata. cfuPayload :: Lens' CreativeFieldsUpdate CreativeField cfuPayload = lens _cfuPayload (\ s a -> s{_cfuPayload = a}) instance GoogleRequest CreativeFieldsUpdate where type Rs CreativeFieldsUpdate = CreativeField type Scopes CreativeFieldsUpdate = '["https://www.googleapis.com/auth/dfatrafficking"] requestClient CreativeFieldsUpdate'{..} = go _cfuProFileId (Just AltJSON) _cfuPayload dFAReportingService where go = buildClient (Proxy :: Proxy CreativeFieldsUpdateResource) mempty