gogol-dataflow-0.0.1: Google Dataflow SDK.

Copyright(c) 2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.Dataflow.Projects.Jobs.Messages.List

Contents

Description

Request the job status.

See: Google Dataflow API Reference for dataflow.projects.jobs.messages.list.

Synopsis

REST Resource

type ProjectsJobsMessagesListResource = "v1b3" :> ("projects" :> (Capture "projectId" Text :> ("jobs" :> (Capture "jobId" Text :> ("messages" :> (QueryParam "$.xgafv" Text :> (QueryParam "upload_protocol" Text :> (QueryParam "startTime" Text :> (QueryParam "pp" Bool :> (QueryParam "access_token" Text :> (QueryParam "uploadType" Text :> (QueryParam "bearer_token" Text :> (QueryParam "endTime" Text :> (QueryParam "minimumImportance" Text :> (QueryParam "pageToken" Text :> (QueryParam "pageSize" (Textual Int32) :> (QueryParam "callback" Text :> (QueryParam "alt" AltJSON :> Get `[JSON]` ListJobMessagesResponse)))))))))))))))))) Source

A resource alias for dataflow.projects.jobs.messages.list method which the ProjectsJobsMessagesList request conforms to.

Creating a Request

Request Lenses

pjmlJobId :: Lens' ProjectsJobsMessagesList Text Source

The job to get messages about.

pjmlUploadProtocol :: Lens' ProjectsJobsMessagesList (Maybe Text) Source

Upload protocol for media (e.g. "raw", "multipart").

pjmlStartTime :: Lens' ProjectsJobsMessagesList (Maybe Text) Source

If specified, return only messages with timestamps >= start_time. The default is the job creation time (i.e. beginning of messages).

pjmlUploadType :: Lens' ProjectsJobsMessagesList (Maybe Text) Source

Legacy upload protocol for media (e.g. "media", "multipart").

pjmlEndTime :: Lens' ProjectsJobsMessagesList (Maybe Text) Source

Return only messages with timestamps < end_time. The default is now (i.e. return up to the latest messages available).

pjmlMinimumImportance :: Lens' ProjectsJobsMessagesList (Maybe Text) Source

Filter to only get messages with importance >= level

pjmlPageToken :: Lens' ProjectsJobsMessagesList (Maybe Text) Source

If supplied, this should be the value of next_page_token returned by an earlier call. This will cause the next page of results to be returned.

pjmlPageSize :: Lens' ProjectsJobsMessagesList (Maybe Int32) Source

If specified, determines the maximum number of messages to return. If unspecified, the service may choose an appropriate default, or may return an arbitrarily large number of results.