{-# 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.TaskQueue.Tasks.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) -- -- Get a particular task from a TaskQueue. -- -- /See:/ for @taskqueue.tasks.get@. module Network.Google.Resource.TaskQueue.Tasks.Get ( -- * REST Resource TasksGetResource -- * Creating a Request , tasksGet , TasksGet -- * Request Lenses , tgTaskQueue , tgProject , tgTask ) where import Network.Google.Prelude import Network.Google.TaskQueue.Types -- | A resource alias for @taskqueue.tasks.get@ method which the -- 'TasksGet' request conforms to. type TasksGetResource = "taskqueue" :> "v1beta2" :> "projects" :> Capture "project" Text :> "taskqueues" :> Capture "taskqueue" Text :> "tasks" :> Capture "task" Text :> QueryParam "alt" AltJSON :> Get '[JSON] Task -- | Get a particular task from a TaskQueue. -- -- /See:/ 'tasksGet' smart constructor. data TasksGet = TasksGet' { _tgTaskQueue :: !Text , _tgProject :: !Text , _tgTask :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'TasksGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'tgTaskQueue' -- -- * 'tgProject' -- -- * 'tgTask' tasksGet :: Text -- ^ 'tgTaskQueue' -> Text -- ^ 'tgProject' -> Text -- ^ 'tgTask' -> TasksGet tasksGet pTgTaskQueue_ pTgProject_ pTgTask_ = TasksGet' { _tgTaskQueue = pTgTaskQueue_ , _tgProject = pTgProject_ , _tgTask = pTgTask_ } -- | The taskqueue in which the task belongs. tgTaskQueue :: Lens' TasksGet Text tgTaskQueue = lens _tgTaskQueue (\ s a -> s{_tgTaskQueue = a}) -- | The project under which the queue lies. tgProject :: Lens' TasksGet Text tgProject = lens _tgProject (\ s a -> s{_tgProject = a}) -- | The task to get properties of. tgTask :: Lens' TasksGet Text tgTask = lens _tgTask (\ s a -> s{_tgTask = a}) instance GoogleRequest TasksGet where type Rs TasksGet = Task type Scopes TasksGet = '["https://www.googleapis.com/auth/taskqueue", "https://www.googleapis.com/auth/taskqueue.consumer"] requestClient TasksGet'{..} = go _tgProject _tgTaskQueue _tgTask (Just AltJSON) taskQueueService where go = buildClient (Proxy :: Proxy TasksGetResource) mempty