class Google::Apis::ClouddebuggerV2::ListBreakpointsResponse

Response for listing breakpoints.

Attributes

breakpoints[RW]

List of breakpoints matching the request. The fields `id` and `location` are guaranteed to be set on each breakpoint. The fields: `stack_frames`, ` evaluated_expressions` and `variable_table` are cleared on each breakpoint regardless of its status. Corresponds to the JSON property `breakpoints` @return [Array<Google::Apis::ClouddebuggerV2::Breakpoint>]

next_wait_token[RW]

A wait token that can be used in the next call to `list` (REST) or ` ListBreakpoints` (RPC) to block until the list of breakpoints has changes. Corresponds to the JSON property `nextWaitToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouddebugger_v2/classes.rb, line 625
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/clouddebugger_v2/classes.rb, line 630
def update!(**args)
  @breakpoints = args[:breakpoints] if args.key?(:breakpoints)
  @next_wait_token = args[:next_wait_token] if args.key?(:next_wait_token)
end