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