{-# 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.ContentCategories.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 one content category by ID. -- -- /See:/ for @dfareporting.contentCategories.get@. module Network.Google.Resource.DFAReporting.ContentCategories.Get ( -- * REST Resource ContentCategoriesGetResource -- * Creating a Request , contentCategoriesGet , ContentCategoriesGet -- * Request Lenses , ccgProFileId , ccgId ) where import Network.Google.DFAReporting.Types import Network.Google.Prelude -- | A resource alias for @dfareporting.contentCategories.get@ method which the -- 'ContentCategoriesGet' request conforms to. type ContentCategoriesGetResource = "dfareporting" :> "v3.2" :> "userprofiles" :> Capture "profileId" (Textual Int64) :> "contentCategories" :> Capture "id" (Textual Int64) :> QueryParam "alt" AltJSON :> Get '[JSON] ContentCategory -- | Gets one content category by ID. -- -- /See:/ 'contentCategoriesGet' smart constructor. data ContentCategoriesGet = ContentCategoriesGet' { _ccgProFileId :: !(Textual Int64) , _ccgId :: !(Textual Int64) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ContentCategoriesGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ccgProFileId' -- -- * 'ccgId' contentCategoriesGet :: Int64 -- ^ 'ccgProFileId' -> Int64 -- ^ 'ccgId' -> ContentCategoriesGet contentCategoriesGet pCcgProFileId_ pCcgId_ = ContentCategoriesGet' { _ccgProFileId = _Coerce # pCcgProFileId_ , _ccgId = _Coerce # pCcgId_ } -- | User profile ID associated with this request. ccgProFileId :: Lens' ContentCategoriesGet Int64 ccgProFileId = lens _ccgProFileId (\ s a -> s{_ccgProFileId = a}) . _Coerce -- | Content category ID. ccgId :: Lens' ContentCategoriesGet Int64 ccgId = lens _ccgId (\ s a -> s{_ccgId = a}) . _Coerce instance GoogleRequest ContentCategoriesGet where type Rs ContentCategoriesGet = ContentCategory type Scopes ContentCategoriesGet = '["https://www.googleapis.com/auth/dfatrafficking"] requestClient ContentCategoriesGet'{..} = go _ccgProFileId _ccgId (Just AltJSON) dFAReportingService where go = buildClient (Proxy :: Proxy ContentCategoriesGetResource) mempty