{-# 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.AccountActiveAdSummaries.Get -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Gets the account\'s active ad summary by account ID. -- -- /See:/ for @dfareporting.accountActiveAdSummaries.get@. module Network.Google.Resource.DFAReporting.AccountActiveAdSummaries.Get ( -- * REST Resource AccountActiveAdSummariesGetResource -- * Creating a Request , accountActiveAdSummariesGet , AccountActiveAdSummariesGet -- * Request Lenses , aaasgProFileId , aaasgSummaryAccountId ) where import Network.Google.DFAReporting.Types import Network.Google.Prelude -- | A resource alias for @dfareporting.accountActiveAdSummaries.get@ method which the -- 'AccountActiveAdSummariesGet' request conforms to. type AccountActiveAdSummariesGetResource = "dfareporting" :> "v3.2" :> "userprofiles" :> Capture "profileId" (Textual Int64) :> "accountActiveAdSummaries" :> Capture "summaryAccountId" (Textual Int64) :> QueryParam "alt" AltJSON :> Get '[JSON] AccountActiveAdSummary -- | Gets the account\'s active ad summary by account ID. -- -- /See:/ 'accountActiveAdSummariesGet' smart constructor. data AccountActiveAdSummariesGet = AccountActiveAdSummariesGet' { _aaasgProFileId :: !(Textual Int64) , _aaasgSummaryAccountId :: !(Textual Int64) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'AccountActiveAdSummariesGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'aaasgProFileId' -- -- * 'aaasgSummaryAccountId' accountActiveAdSummariesGet :: Int64 -- ^ 'aaasgProFileId' -> Int64 -- ^ 'aaasgSummaryAccountId' -> AccountActiveAdSummariesGet accountActiveAdSummariesGet pAaasgProFileId_ pAaasgSummaryAccountId_ = AccountActiveAdSummariesGet' { _aaasgProFileId = _Coerce # pAaasgProFileId_ , _aaasgSummaryAccountId = _Coerce # pAaasgSummaryAccountId_ } -- | User profile ID associated with this request. aaasgProFileId :: Lens' AccountActiveAdSummariesGet Int64 aaasgProFileId = lens _aaasgProFileId (\ s a -> s{_aaasgProFileId = a}) . _Coerce -- | Account ID. aaasgSummaryAccountId :: Lens' AccountActiveAdSummariesGet Int64 aaasgSummaryAccountId = lens _aaasgSummaryAccountId (\ s a -> s{_aaasgSummaryAccountId = a}) . _Coerce instance GoogleRequest AccountActiveAdSummariesGet where type Rs AccountActiveAdSummariesGet = AccountActiveAdSummary type Scopes AccountActiveAdSummariesGet = '["https://www.googleapis.com/auth/dfatrafficking"] requestClient AccountActiveAdSummariesGet'{..} = go _aaasgProFileId _aaasgSummaryAccountId (Just AltJSON) dFAReportingService where go = buildClient (Proxy :: Proxy AccountActiveAdSummariesGetResource) mempty