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 wait 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]
The `wait_expired` field is set to true by the server when the request times out and the field `success_on_timeout` is set to true. Corresponds to the JSON property `waitExpired` @return [Boolean]
The `wait_expired` field is set to true by the server when the request times out and the field `success_on_timeout` is set to true. Corresponds to the JSON property `waitExpired` @return [Boolean]
Public Class Methods
# File generated/google/apis/clouddebugger_v2/classes.rb, line 568 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/clouddebugger_v2/classes.rb, line 573 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