Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTimeSeriesStatsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTimeSeriesStatsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb 
Overview
Represents security stats result as a collection of time series sequences.
Instance Attribute Summary collapse
- 
  
    
      #columns  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Column names corresponding to the same order as the inner values in the stats field.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Next page token.
 - 
  
    
      #values  ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Results of the query returned as a JSON array.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1QueryTimeSeriesStatsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1QueryTimeSeriesStatsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryTimeSeriesStatsResponse
Returns a new instance of GoogleCloudApigeeV1QueryTimeSeriesStatsResponse.
      8059 8060 8061  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8059 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#columns ⇒ Array<String>
Column names corresponding to the same order as the inner values in the stats
field.
Corresponds to the JSON property columns
      8047 8048 8049  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8047 def columns @columns end  | 
  
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
      8052 8053 8054  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8052 def next_page_token @next_page_token end  | 
  
#values ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence>
Results of the query returned as a JSON array.
Corresponds to the JSON property values
      8057 8058 8059  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8057 def values @values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8064 8065 8066 8067 8068  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 8064 def update!(**args) @columns = args[:columns] if args.key?(:columns) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @values = args[:values] if args.key?(:values) end  |