{-# 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.Directory.Users.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) -- -- create user. -- -- /See:/ for @directory.users.insert@. module Network.Google.Resource.Directory.Users.Insert ( -- * REST Resource UsersInsertResource -- * Creating a Request , usersInsert , UsersInsert -- * Request Lenses , uiPayload ) where import Network.Google.Directory.Types import Network.Google.Prelude -- | A resource alias for @directory.users.insert@ method which the -- 'UsersInsert' request conforms to. type UsersInsertResource = "admin" :> "directory" :> "v1" :> "users" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] User :> Post '[JSON] User -- | create user. -- -- /See:/ 'usersInsert' smart constructor. newtype UsersInsert = UsersInsert' { _uiPayload :: User } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'UsersInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'uiPayload' usersInsert :: User -- ^ 'uiPayload' -> UsersInsert usersInsert pUiPayload_ = UsersInsert' { _uiPayload = pUiPayload_ } -- | Multipart request metadata. uiPayload :: Lens' UsersInsert User uiPayload = lens _uiPayload (\ s a -> s{_uiPayload = a}) instance GoogleRequest UsersInsert where type Rs UsersInsert = User type Scopes UsersInsert = '["https://www.googleapis.com/auth/admin.directory.user"] requestClient UsersInsert'{..} = go (Just AltJSON) _uiPayload directoryService where go = buildClient (Proxy :: Proxy UsersInsertResource) mempty