Class: Google::Apis::ClouderrorreportingV1beta1::ListGroupStatsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClouderrorreportingV1beta1::ListGroupStatsResponse
 
- Defined in:
- generated/google/apis/clouderrorreporting_v1beta1/classes.rb,
 generated/google/apis/clouderrorreporting_v1beta1/representations.rb,
 generated/google/apis/clouderrorreporting_v1beta1/representations.rb
Overview
Contains a set of requested error group stats.
Instance Attribute Summary collapse
- 
  
    
      #error_group_stats  ⇒ Array<Google::Apis::ClouderrorreportingV1beta1::ErrorGroupStats> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error group stats which match the given request. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If non-empty, more results are available. 
- 
  
    
      #time_range_begin  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The timestamp specifies the start time to which the request was restricted. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListGroupStatsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListGroupStatsResponse. 
- 
  
    
      #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) ⇒ ListGroupStatsResponse
Returns a new instance of ListGroupStatsResponse
| 371 372 373 | # File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 371 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#error_group_stats ⇒ Array<Google::Apis::ClouderrorreportingV1beta1::ErrorGroupStats>
The error group stats which match the given request.
Corresponds to the JSON property errorGroupStats
| 354 355 356 | # File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 354 def error_group_stats @error_group_stats end | 
#next_page_token ⇒ String
If non-empty, more results are available.
Pass this token, along with the same query parameters as the first
request, to view the next page of results.
Corresponds to the JSON property nextPageToken
| 361 362 363 | # File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 361 def next_page_token @next_page_token end | 
#time_range_begin ⇒ String
The timestamp specifies the start time to which the request was restricted.
The start time is set based on the requested time range. It may be adjusted
to a later time if a project has exceeded the storage quota and older data
has been deleted.
Corresponds to the JSON property timeRangeBegin
| 369 370 371 | # File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 369 def time_range_begin @time_range_begin end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 376 377 378 379 380 | # File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 376 def update!(**args) @error_group_stats = args[:error_group_stats] if args.key?(:error_group_stats) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @time_range_begin = args[:time_range_begin] if args.key?(:time_range_begin) end |