Class: Google::Apis::ClouddebuggerV2::ListActiveBreakpointsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClouddebuggerV2::ListActiveBreakpointsResponse
 
- 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 active breakpoints.
Instance Attribute Summary collapse
- 
  
    
      #breakpoints  ⇒ Array<Google::Apis::ClouddebuggerV2::Breakpoint> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of all active breakpoints. 
- 
  
    
      #next_wait_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token that can be used in the next method call to block until the list of breakpoints changes. 
- 
  
    
      #wait_expired  ⇒ Boolean 
    
    
      (also: #wait_expired?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If set to true, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListActiveBreakpointsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListActiveBreakpointsResponse. 
- 
  
    
      #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) ⇒ ListActiveBreakpointsResponse
Returns a new instance of ListActiveBreakpointsResponse
| 585 586 587 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 585 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#breakpoints ⇒ Array<Google::Apis::ClouddebuggerV2::Breakpoint>
List of all active breakpoints.
The fields id and location are guaranteed to be set on each breakpoint.
Corresponds to the JSON property breakpoints
| 569 570 571 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 569 def breakpoints @breakpoints end | 
#next_wait_token ⇒ String
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
| 575 576 577 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 575 def next_wait_token @next_wait_token end | 
#wait_expired ⇒ Boolean Also known as: wait_expired?
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
| 582 583 584 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 582 def wait_expired @wait_expired end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 590 591 592 593 594 | # File 'generated/google/apis/clouddebugger_v2/classes.rb', line 590 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 |