class Google::Apis::ClouddebuggerV2::ListActiveBreakpointsResponse

Response for listing active breakpoints.

Attributes

breakpoints[RW]

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>]

next_wait_token[RW]

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]

wait_expired[RW]

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]

wait_expired?[RW]

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

new(**args) click to toggle source
# File generated/google/apis/clouddebugger_v2/classes.rb, line 568
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 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