gogol-debugger-0.0.1: Google Cloud Debugger 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.CloudDebugger.Debugger.Debuggees.Breakpoints.List

Contents

Description

Lists all breakpoints of the debuggee that the user has access to.

See: Google Cloud Debugger API Reference for clouddebugger.debugger.debuggees.breakpoints.list.

Synopsis

REST Resource

type DebuggerDebuggeesBreakpointsListResource = "v2" :> ("debugger" :> ("debuggees" :> (Capture "debuggeeId" Text :> ("breakpoints" :> (QueryParam "$.xgafv" Text :> (QueryParam "includeInactive" Bool :> (QueryParam "upload_protocol" Text :> (QueryParam "pp" Bool :> (QueryParam "access_token" Text :> (QueryParam "action.value" Text :> (QueryParam "uploadType" Text :> (QueryParam "stripResults" Bool :> (QueryParam "bearer_token" Text :> (QueryParam "includeAllUsers" Bool :> (QueryParam "waitToken" Text :> (QueryParam "callback" Text :> (QueryParam "alt" AltJSON :> Get `[JSON]` ListBreakpointsResponse))))))))))))))))) Source

A resource alias for clouddebugger.debugger.debuggees.breakpoints.list method which the DebuggerDebuggeesBreakpointsList request conforms to.

Creating a Request

Request Lenses

ddblIncludeInactive :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Bool) Source

When set to true the response includes active and inactive breakpoints, otherwise only active breakpoints are returned.

ddblUploadProtocol :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Text) Source

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

ddblActionValue :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Text) Source

Only breakpoints with the specified action will pass the filter.

ddblUploadType :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Text) Source

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

ddblStripResults :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Bool) Source

When set to true the response breakpoints will be stripped of the results fields: stack_frames, evaluated_expressions and variable_table.

ddblIncludeAllUsers :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Bool) Source

When set to true the response includes the list of breakpoints set by any user, otherwise only breakpoints set by the caller.

ddblWaitToken :: Lens' DebuggerDebuggeesBreakpointsList (Maybe Text) Source

A wait token that, if specified, blocks the call until the breakpoints list has changed, or a server selected timeout has expired. The value should be set from the last response to ListBreakpoints. The error code ABORTED is returned on wait timeout, which should be called again with the same wait_token.

ddblDebuggeeId :: Lens' DebuggerDebuggeesBreakpointsList Text Source

The debuggee id to list breakpoint from.