class Google::Apis::ClouddebuggerV2::ListActiveBreakpointsResponse
Response for listing active breakpoints.
Attributes
List of all active breakpoints. 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>]
A token that can be used in the next method call to block until the list of breakpoints changes. Corresponds to the JSON property `nextWaitToken` @return [String]
If set to `true`, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired. The `breakpoints` field would be empty and should be ignored. Corresponds to the JSON property `waitExpired` @return [Boolean]
If set to `true`, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired. The `breakpoints` field would be empty and should be ignored. Corresponds to the JSON property `waitExpired` @return [Boolean]
Public Class Methods
# File lib/google/apis/clouddebugger_v2/classes.rb, line 595 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/clouddebugger_v2/classes.rb, line 600 def update!(**args) @breakpoints = args[:breakpoints] if args.key?(:breakpoints) @next_wait_token = args[:next_wait_token] if args.key?(:next_wait_token) @wait_expired = args[:wait_expired] if args.key?(:wait_expired) end