- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization Scopes
- BreakpointActionValue
- Examples
- Try it!
Lists all breakpoints for the debuggee.
HTTP request
GET https://clouddebugger.googleapis.com/v2/debugger/debuggees/{debuggeeId}/breakpoints
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
debuggeeId |
Required. ID of the debuggee whose breakpoints to list. |
Query parameters
Parameters | |
---|---|
includeAllUsers |
When set to |
includeInactive |
When set to |
action |
When set, the response includes only breakpoints with the specified action. |
stripResults |
This field is deprecated. The following fields are always stripped out of the result: |
waitToken |
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. The error code |
clientVersion |
Required. The client version making the call. Schema: |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
Response for listing breakpoints.
JSON representation | |
---|---|
{
"breakpoints": [
{
object ( |
Fields | |
---|---|
breakpoints[] |
List of breakpoints matching the request. The fields |
nextWaitToken |
A wait token that can be used in the next call to |
Authorization Scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud_debugger
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
BreakpointActionValue
Wrapper message for Breakpoint.Action
. Defines a filter on the action field of breakpoints.
JSON representation | |
---|---|
{
"value": enum ( |
Fields | |
---|---|
value |
Only breakpoints with the specified action will pass the filter. |