gogol-dfareporting-0.0.1: gen/Network/Google/Resource/DFAReporting/SubAccounts/Patch.hs
{-# 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.SubAccounts.Patch
-- Copyright : (c) 2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Updates an existing subaccount. This method supports patch semantics.
--
-- /See:/ <https://developers.google.com/doubleclick-advertisers/reporting/ DCM/DFA Reporting And Trafficking API Reference> for @dfareporting.subaccounts.patch@.
module Network.Google.Resource.DFAReporting.SubAccounts.Patch
(
-- * REST Resource
SubAccountsPatchResource
-- * Creating a Request
, subAccountsPatch
, SubAccountsPatch
-- * Request Lenses
, sapProFileId
, sapPayload
, sapId
) where
import Network.Google.DFAReporting.Types
import Network.Google.Prelude
-- | A resource alias for @dfareporting.subaccounts.patch@ method which the
-- 'SubAccountsPatch' request conforms to.
type SubAccountsPatchResource =
"dfareporting" :>
"v2.2" :>
"userprofiles" :>
Capture "profileId" (Textual Int64) :>
"subaccounts" :>
QueryParam "id" (Textual Int64) :>
QueryParam "alt" AltJSON :>
ReqBody '[JSON] SubAccount :>
Patch '[JSON] SubAccount
-- | Updates an existing subaccount. This method supports patch semantics.
--
-- /See:/ 'subAccountsPatch' smart constructor.
data SubAccountsPatch = SubAccountsPatch
{ _sapProFileId :: !(Textual Int64)
, _sapPayload :: !SubAccount
, _sapId :: !(Textual Int64)
} deriving (Eq,Show,Data,Typeable,Generic)
-- | Creates a value of 'SubAccountsPatch' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'sapProFileId'
--
-- * 'sapPayload'
--
-- * 'sapId'
subAccountsPatch
:: Int64 -- ^ 'sapProFileId'
-> SubAccount -- ^ 'sapPayload'
-> Int64 -- ^ 'sapId'
-> SubAccountsPatch
subAccountsPatch pSapProFileId_ pSapPayload_ pSapId_ =
SubAccountsPatch
{ _sapProFileId = _Coerce # pSapProFileId_
, _sapPayload = pSapPayload_
, _sapId = _Coerce # pSapId_
}
-- | User profile ID associated with this request.
sapProFileId :: Lens' SubAccountsPatch Int64
sapProFileId
= lens _sapProFileId (\ s a -> s{_sapProFileId = a})
. _Coerce
-- | Multipart request metadata.
sapPayload :: Lens' SubAccountsPatch SubAccount
sapPayload
= lens _sapPayload (\ s a -> s{_sapPayload = a})
-- | Subaccount ID.
sapId :: Lens' SubAccountsPatch Int64
sapId
= lens _sapId (\ s a -> s{_sapId = a}) . _Coerce
instance GoogleRequest SubAccountsPatch where
type Rs SubAccountsPatch = SubAccount
requestClient SubAccountsPatch{..}
= go _sapProFileId (Just _sapId) (Just AltJSON)
_sapPayload
dFAReportingService
where go
= buildClient
(Proxy :: Proxy SubAccountsPatchResource)
mempty