gogol-cloudtrace-0.0.1: Google Cloud Trace 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.CloudTrace.Projects.Traces.List

Contents

Description

List traces matching the filter expression.

See: Google Cloud Trace API Reference for cloudtrace.projects.traces.list.

Synopsis

REST Resource

type ProjectsTracesListResource = "v1" :> ("projects" :> (Capture "projectId" Text :> ("traces" :> (QueryParam "$.xgafv" Text :> (QueryParam "upload_protocol" Text :> (QueryParam "orderBy" Text :> (QueryParam "startTime" Text :> (QueryParam "pp" Bool :> (QueryParam "access_token" Text :> (QueryParam "uploadType" Text :> (QueryParam "bearer_token" Text :> (QueryParam "endTime" Text :> (QueryParam "view" Text :> (QueryParam "filter" Text :> (QueryParam "pageToken" Text :> (QueryParam "pageSize" (Textual Int32) :> (QueryParam "callback" Text :> (QueryParam "alt" AltJSON :> Get `[JSON]` ListTracesResponse)))))))))))))))))) Source

A resource alias for cloudtrace.projects.traces.list method which the ProjectsTracesList request conforms to.

Creating a Request

Request Lenses

ptlUploadProtocol :: Lens' ProjectsTracesList (Maybe Text) Source

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

ptlOrderBy :: Lens' ProjectsTracesList (Maybe Text) Source

The trace field used to establish the order of traces returned by the ListTraces method. Possible options are: trace_id name (name field of root span) duration (different between end_time and start_time fields of root span) start (start_time field of root span) Descending order can be specified by appending "desc" to the sort field: name desc Only one sort field is permitted, though this may change in the future.

ptlStartTime :: Lens' ProjectsTracesList (Maybe Text) Source

End of the time interval (inclusive).

ptlPp :: Lens' ProjectsTracesList Bool Source

Pretty-print response.

ptlUploadType :: Lens' ProjectsTracesList (Maybe Text) Source

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

ptlEndTime :: Lens' ProjectsTracesList (Maybe Text) Source

Start of the time interval (exclusive).

ptlView :: Lens' ProjectsTracesList (Maybe Text) Source

ViewType specifies the projection of the result.

ptlFilter :: Lens' ProjectsTracesList (Maybe Text) Source

An optional filter for the request.

ptlPageToken :: Lens' ProjectsTracesList (Maybe Text) Source

The token identifying the page of results to return from the ListTraces method. If present, this value is should be taken from the next_page_token field of a previous ListTracesResponse.

ptlProjectId :: Lens' ProjectsTracesList Text Source

The stringified-version of the project id.

ptlPageSize :: Lens' ProjectsTracesList (Maybe Int32) Source

Maximum number of topics to return. If not specified or <= 0, the implementation will select a reasonable value. The implemenation may always return fewer than the requested page_size.