{-# 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.Classroom.Courses.Teachers.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) -- -- Returns a teacher of a course. This method returns the following error -- codes: * \`PERMISSION_DENIED\` if the requesting user is not permitted -- to view teachers of this course or for access errors. * \`NOT_FOUND\` if -- no teacher of this course has the requested ID or if the course does not -- exist. -- -- /See:/ for @classroom.courses.teachers.get@. module Network.Google.Resource.Classroom.Courses.Teachers.Get ( -- * REST Resource CoursesTeachersGetResource -- * Creating a Request , coursesTeachersGet , CoursesTeachersGet -- * Request Lenses , ctgXgafv , ctgUploadProtocol , ctgCourseId , ctgAccessToken , ctgUploadType , ctgUserId , ctgCallback ) where import Network.Google.Classroom.Types import Network.Google.Prelude -- | A resource alias for @classroom.courses.teachers.get@ method which the -- 'CoursesTeachersGet' request conforms to. type CoursesTeachersGetResource = "v1" :> "courses" :> Capture "courseId" Text :> "teachers" :> Capture "userId" Text :> QueryParam "$.xgafv" Xgafv :> QueryParam "upload_protocol" Text :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> Get '[JSON] Teacher -- | Returns a teacher of a course. This method returns the following error -- codes: * \`PERMISSION_DENIED\` if the requesting user is not permitted -- to view teachers of this course or for access errors. * \`NOT_FOUND\` if -- no teacher of this course has the requested ID or if the course does not -- exist. -- -- /See:/ 'coursesTeachersGet' smart constructor. data CoursesTeachersGet = CoursesTeachersGet' { _ctgXgafv :: !(Maybe Xgafv) , _ctgUploadProtocol :: !(Maybe Text) , _ctgCourseId :: !Text , _ctgAccessToken :: !(Maybe Text) , _ctgUploadType :: !(Maybe Text) , _ctgUserId :: !Text , _ctgCallback :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'CoursesTeachersGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ctgXgafv' -- -- * 'ctgUploadProtocol' -- -- * 'ctgCourseId' -- -- * 'ctgAccessToken' -- -- * 'ctgUploadType' -- -- * 'ctgUserId' -- -- * 'ctgCallback' coursesTeachersGet :: Text -- ^ 'ctgCourseId' -> Text -- ^ 'ctgUserId' -> CoursesTeachersGet coursesTeachersGet pCtgCourseId_ pCtgUserId_ = CoursesTeachersGet' { _ctgXgafv = Nothing , _ctgUploadProtocol = Nothing , _ctgCourseId = pCtgCourseId_ , _ctgAccessToken = Nothing , _ctgUploadType = Nothing , _ctgUserId = pCtgUserId_ , _ctgCallback = Nothing } -- | V1 error format. ctgXgafv :: Lens' CoursesTeachersGet (Maybe Xgafv) ctgXgafv = lens _ctgXgafv (\ s a -> s{_ctgXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). ctgUploadProtocol :: Lens' CoursesTeachersGet (Maybe Text) ctgUploadProtocol = lens _ctgUploadProtocol (\ s a -> s{_ctgUploadProtocol = a}) -- | Identifier of the course. This identifier can be either the -- Classroom-assigned identifier or an alias. ctgCourseId :: Lens' CoursesTeachersGet Text ctgCourseId = lens _ctgCourseId (\ s a -> s{_ctgCourseId = a}) -- | OAuth access token. ctgAccessToken :: Lens' CoursesTeachersGet (Maybe Text) ctgAccessToken = lens _ctgAccessToken (\ s a -> s{_ctgAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). ctgUploadType :: Lens' CoursesTeachersGet (Maybe Text) ctgUploadType = lens _ctgUploadType (\ s a -> s{_ctgUploadType = a}) -- | Identifier of the teacher to return. The identifier can be one of the -- following: * the numeric identifier for the user * the email address of -- the user * the string literal \`\"me\"\`, indicating the requesting user ctgUserId :: Lens' CoursesTeachersGet Text ctgUserId = lens _ctgUserId (\ s a -> s{_ctgUserId = a}) -- | JSONP ctgCallback :: Lens' CoursesTeachersGet (Maybe Text) ctgCallback = lens _ctgCallback (\ s a -> s{_ctgCallback = a}) instance GoogleRequest CoursesTeachersGet where type Rs CoursesTeachersGet = Teacher type Scopes CoursesTeachersGet = '["https://www.googleapis.com/auth/classroom.profile.emails", "https://www.googleapis.com/auth/classroom.profile.photos", "https://www.googleapis.com/auth/classroom.rosters", "https://www.googleapis.com/auth/classroom.rosters.readonly"] requestClient CoursesTeachersGet'{..} = go _ctgCourseId _ctgUserId _ctgXgafv _ctgUploadProtocol _ctgAccessToken _ctgUploadType _ctgCallback (Just AltJSON) classroomService where go = buildClient (Proxy :: Proxy CoursesTeachersGetResource) mempty