{-# 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.CreativeFieldValues.Patch -- 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 value. This method supports patch -- semantics. -- -- /See:/ for @dfareporting.creativeFieldValues.patch@. module Network.Google.Resource.DFAReporting.CreativeFieldValues.Patch ( -- * REST Resource CreativeFieldValuesPatchResource -- * Creating a Request , creativeFieldValuesPatch , CreativeFieldValuesPatch -- * Request Lenses , cfvpCreativeFieldId , cfvpProFileId , cfvpPayload , cfvpId ) where import Network.Google.DFAReporting.Types import Network.Google.Prelude -- | A resource alias for @dfareporting.creativeFieldValues.patch@ method which the -- 'CreativeFieldValuesPatch' request conforms to. type CreativeFieldValuesPatchResource = "dfareporting" :> "v3.2" :> "userprofiles" :> Capture "profileId" (Textual Int64) :> "creativeFields" :> Capture "creativeFieldId" (Textual Int64) :> "creativeFieldValues" :> QueryParam "id" (Textual Int64) :> QueryParam "alt" AltJSON :> ReqBody '[JSON] CreativeFieldValue :> Patch '[JSON] CreativeFieldValue -- | Updates an existing creative field value. This method supports patch -- semantics. -- -- /See:/ 'creativeFieldValuesPatch' smart constructor. data CreativeFieldValuesPatch = CreativeFieldValuesPatch' { _cfvpCreativeFieldId :: !(Textual Int64) , _cfvpProFileId :: !(Textual Int64) , _cfvpPayload :: !CreativeFieldValue , _cfvpId :: !(Textual Int64) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'CreativeFieldValuesPatch' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'cfvpCreativeFieldId' -- -- * 'cfvpProFileId' -- -- * 'cfvpPayload' -- -- * 'cfvpId' creativeFieldValuesPatch :: Int64 -- ^ 'cfvpCreativeFieldId' -> Int64 -- ^ 'cfvpProFileId' -> CreativeFieldValue -- ^ 'cfvpPayload' -> Int64 -- ^ 'cfvpId' -> CreativeFieldValuesPatch creativeFieldValuesPatch pCfvpCreativeFieldId_ pCfvpProFileId_ pCfvpPayload_ pCfvpId_ = CreativeFieldValuesPatch' { _cfvpCreativeFieldId = _Coerce # pCfvpCreativeFieldId_ , _cfvpProFileId = _Coerce # pCfvpProFileId_ , _cfvpPayload = pCfvpPayload_ , _cfvpId = _Coerce # pCfvpId_ } -- | Creative field ID for this creative field value. cfvpCreativeFieldId :: Lens' CreativeFieldValuesPatch Int64 cfvpCreativeFieldId = lens _cfvpCreativeFieldId (\ s a -> s{_cfvpCreativeFieldId = a}) . _Coerce -- | User profile ID associated with this request. cfvpProFileId :: Lens' CreativeFieldValuesPatch Int64 cfvpProFileId = lens _cfvpProFileId (\ s a -> s{_cfvpProFileId = a}) . _Coerce -- | Multipart request metadata. cfvpPayload :: Lens' CreativeFieldValuesPatch CreativeFieldValue cfvpPayload = lens _cfvpPayload (\ s a -> s{_cfvpPayload = a}) -- | Creative Field Value ID cfvpId :: Lens' CreativeFieldValuesPatch Int64 cfvpId = lens _cfvpId (\ s a -> s{_cfvpId = a}) . _Coerce instance GoogleRequest CreativeFieldValuesPatch where type Rs CreativeFieldValuesPatch = CreativeFieldValue type Scopes CreativeFieldValuesPatch = '["https://www.googleapis.com/auth/dfatrafficking"] requestClient CreativeFieldValuesPatch'{..} = go _cfvpProFileId _cfvpCreativeFieldId (Just _cfvpId) (Just AltJSON) _cfvpPayload dFAReportingService where go = buildClient (Proxy :: Proxy CreativeFieldValuesPatchResource) mempty