Class: Google::Apis::ClouddebuggerV2::ListBreakpointsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::ListBreakpointsResponse
- Defined in:
- generated/google/apis/clouddebugger_v2/classes.rb,
generated/google/apis/clouddebugger_v2/representations.rb,
generated/google/apis/clouddebugger_v2/representations.rb
Overview
Response for listing breakpoints.
Instance Attribute Summary collapse
-
#breakpoints ⇒ Array<Google::Apis::ClouddebuggerV2::Breakpoint>
List of breakpoints matching the request.
-
#next_wait_token ⇒ String
A wait token that can be used in the next call to
list(REST) orListBreakpoints(RPC) to block until the list of breakpoints has changes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBreakpointsResponse
constructor
A new instance of ListBreakpointsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListBreakpointsResponse
Returns a new instance of ListBreakpointsResponse
418 419 420 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 418 def initialize(**args) update!(**args) end |
Instance Attribute Details
#breakpoints ⇒ Array<Google::Apis::ClouddebuggerV2::Breakpoint>
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 it's status.
Corresponds to the JSON property breakpoints
410 411 412 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 410 def breakpoints @breakpoints end |
#next_wait_token ⇒ String
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
416 417 418 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 416 def next_wait_token @next_wait_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
423 424 425 426 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 423 def update!(**args) @breakpoints = args[:breakpoints] if args.key?(:breakpoints) @next_wait_token = args[:next_wait_token] if args.key?(:next_wait_token) end |