Class: Google::Apis::CloudtraceV1::ListTracesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudtraceV1::ListTracesResponse
 
- Defined in:
- generated/google/apis/cloudtrace_v1/classes.rb,
 generated/google/apis/cloudtrace_v1/representations.rb,
 generated/google/apis/cloudtrace_v1/representations.rb
Overview
The response message for the ListTraces method.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If defined, indicates that there are more traces that match the request and that this value should be passed to the next request to continue retrieving additional traces. 
- 
  
    
      #traces  ⇒ Array<Google::Apis::CloudtraceV1::Trace> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of trace records as specified by the view parameter. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListTracesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListTracesResponse. 
- 
  
    
      #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) ⇒ ListTracesResponse
Returns a new instance of ListTracesResponse
| 60 61 62 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 60 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
If defined, indicates that there are more traces that match the request
and that this value should be passed to the next request to continue
retrieving additional traces.
Corresponds to the JSON property nextPageToken
| 53 54 55 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 53 def next_page_token @next_page_token end | 
#traces ⇒ Array<Google::Apis::CloudtraceV1::Trace>
List of trace records as specified by the view parameter.
Corresponds to the JSON property traces
| 58 59 60 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 58 def traces @traces end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 65 66 67 68 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 65 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @traces = args[:traces] if args.key?(:traces) end |