class Google::Apis::ClouddebuggerV2::ListBreakpointsResponse
Response for listing breakpoints.
Attributes
breakpoints[RW]
List of all breakpoints with complete state. The fields `id` and `location` are guaranteed to be set on each breakpoint. 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 generated/google/apis/clouddebugger_v2/classes.rb, line 977 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/clouddebugger_v2/classes.rb, line 982 def update!(**args) @breakpoints = args[:breakpoints] if args.key?(:breakpoints) @next_wait_token = args[:next_wait_token] if args.key?(:next_wait_token) end