{-# 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.Gmail.Users.Settings.ForwardingAddresses.Create -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a forwarding address. If ownership verification is required, a -- message will be sent to the recipient and the resource\'s verification -- status will be set to pending; otherwise, the resource will be created -- with verification status set to accepted. -- -- /See:/ for @gmail.users.settings.forwardingAddresses.create@. module Network.Google.Resource.Gmail.Users.Settings.ForwardingAddresses.Create ( -- * REST Resource UsersSettingsForwardingAddressesCreateResource -- * Creating a Request , usersSettingsForwardingAddressesCreate , UsersSettingsForwardingAddressesCreate -- * Request Lenses , usfacPayload , usfacUserId ) where import Network.Google.Gmail.Types import Network.Google.Prelude -- | A resource alias for @gmail.users.settings.forwardingAddresses.create@ method which the -- 'UsersSettingsForwardingAddressesCreate' request conforms to. type UsersSettingsForwardingAddressesCreateResource = "gmail" :> "v1" :> "users" :> Capture "userId" Text :> "settings" :> "forwardingAddresses" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] ForwardingAddress :> Post '[JSON] ForwardingAddress -- | Creates a forwarding address. If ownership verification is required, a -- message will be sent to the recipient and the resource\'s verification -- status will be set to pending; otherwise, the resource will be created -- with verification status set to accepted. -- -- /See:/ 'usersSettingsForwardingAddressesCreate' smart constructor. data UsersSettingsForwardingAddressesCreate = UsersSettingsForwardingAddressesCreate' { _usfacPayload :: !ForwardingAddress , _usfacUserId :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'UsersSettingsForwardingAddressesCreate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'usfacPayload' -- -- * 'usfacUserId' usersSettingsForwardingAddressesCreate :: ForwardingAddress -- ^ 'usfacPayload' -> UsersSettingsForwardingAddressesCreate usersSettingsForwardingAddressesCreate pUsfacPayload_ = UsersSettingsForwardingAddressesCreate' { _usfacPayload = pUsfacPayload_ , _usfacUserId = "me" } -- | Multipart request metadata. usfacPayload :: Lens' UsersSettingsForwardingAddressesCreate ForwardingAddress usfacPayload = lens _usfacPayload (\ s a -> s{_usfacPayload = a}) -- | User\'s email address. The special value \"me\" can be used to indicate -- the authenticated user. usfacUserId :: Lens' UsersSettingsForwardingAddressesCreate Text usfacUserId = lens _usfacUserId (\ s a -> s{_usfacUserId = a}) instance GoogleRequest UsersSettingsForwardingAddressesCreate where type Rs UsersSettingsForwardingAddressesCreate = ForwardingAddress type Scopes UsersSettingsForwardingAddressesCreate = '["https://www.googleapis.com/auth/gmail.settings.sharing"] requestClient UsersSettingsForwardingAddressesCreate'{..} = go _usfacUserId (Just AltJSON) _usfacPayload gmailService where go = buildClient (Proxy :: Proxy UsersSettingsForwardingAddressesCreateResource) mempty