{-# 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.Insert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Inserts a new event tag. -- -- /See:/ for @dfareporting.eventTags.insert@. module Network.Google.Resource.DFAReporting.EventTags.Insert ( -- * REST Resource EventTagsInsertResource -- * Creating a Request , eventTagsInsert , EventTagsInsert -- * Request Lenses , etiProFileId , etiPayload ) where import Network.Google.DFAReporting.Types import Network.Google.Prelude -- | A resource alias for @dfareporting.eventTags.insert@ method which the -- 'EventTagsInsert' request conforms to. type EventTagsInsertResource = "dfareporting" :> "v3.2" :> "userprofiles" :> Capture "profileId" (Textual Int64) :> "eventTags" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] EventTag :> Post '[JSON] EventTag -- | Inserts a new event tag. -- -- /See:/ 'eventTagsInsert' smart constructor. data EventTagsInsert = EventTagsInsert' { _etiProFileId :: !(Textual Int64) , _etiPayload :: !EventTag } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'EventTagsInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'etiProFileId' -- -- * 'etiPayload' eventTagsInsert :: Int64 -- ^ 'etiProFileId' -> EventTag -- ^ 'etiPayload' -> EventTagsInsert eventTagsInsert pEtiProFileId_ pEtiPayload_ = EventTagsInsert' { _etiProFileId = _Coerce # pEtiProFileId_ , _etiPayload = pEtiPayload_ } -- | User profile ID associated with this request. etiProFileId :: Lens' EventTagsInsert Int64 etiProFileId = lens _etiProFileId (\ s a -> s{_etiProFileId = a}) . _Coerce -- | Multipart request metadata. etiPayload :: Lens' EventTagsInsert EventTag etiPayload = lens _etiPayload (\ s a -> s{_etiPayload = a}) instance GoogleRequest EventTagsInsert where type Rs EventTagsInsert = EventTag type Scopes EventTagsInsert = '["https://www.googleapis.com/auth/dfatrafficking"] requestClient EventTagsInsert'{..} = go _etiProFileId (Just AltJSON) _etiPayload dFAReportingService where go = buildClient (Proxy :: Proxy EventTagsInsertResource) mempty