Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTabularStatsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTabularStatsResponse
 
 
- 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
Encapsulates two kinds of stats that are results of the dimensions and aggregations requested. - Tabular rows. - Time series data. Example of tabular rows, Represents security stats results as a row of flat values.
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<Array<Object>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Resultant rows from the executed query.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1QueryTabularStatsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1QueryTabularStatsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryTabularStatsResponse
Returns a new instance of GoogleCloudApigeeV1QueryTabularStatsResponse.
      7955 7956 7957  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7955 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
      7943 7944 7945  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7943 def columns @columns end  | 
  
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
      7948 7949 7950  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7948 def next_page_token @next_page_token end  | 
  
#values ⇒ Array<Array<Object>>
Resultant rows from the executed query.
Corresponds to the JSON property values
      7953 7954 7955  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7953 def values @values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7960 7961 7962 7963 7964  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7960 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  |