Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetadata
 
 
- 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 
Instance Attribute Summary collapse
- 
  
    
      #dimensions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dimensions of the AsyncQuery.
 - 
  
    
      #end_timestamp  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
End timestamp of the query range.
 - 
  
    
      #metrics  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metrics of the AsyncQuery.
 - 
  
    
      #output_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output format.
 - 
  
    
      #start_timestamp  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Start timestamp of the query range.
 - 
  
    
      #time_unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Query GroupBy time unit.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1QueryMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1QueryMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryMetadata
Returns a new instance of GoogleCloudApigeeV1QueryMetadata.
      7817 7818 7819  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7817 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#dimensions ⇒ Array<String>
Dimensions of the AsyncQuery.
Corresponds to the JSON property dimensions
      7789 7790 7791  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7789 def dimensions @dimensions end  | 
  
#end_timestamp ⇒ String
End timestamp of the query range.
Corresponds to the JSON property endTimestamp
      7794 7795 7796  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7794 def @end_timestamp end  | 
  
#metrics ⇒ Array<String>
Metrics of the AsyncQuery. Example: ["name:message_count,func:sum,alias:
sum_message_count"]
Corresponds to the JSON property metrics
      7800 7801 7802  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7800 def metrics @metrics end  | 
  
#output_format ⇒ String
Output format.
Corresponds to the JSON property outputFormat
      7805 7806 7807  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7805 def output_format @output_format end  | 
  
#start_timestamp ⇒ String
Start timestamp of the query range.
Corresponds to the JSON property startTimestamp
      7810 7811 7812  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7810 def @start_timestamp end  | 
  
#time_unit ⇒ String
Query GroupBy time unit.
Corresponds to the JSON property timeUnit
      7815 7816 7817  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7815 def time_unit @time_unit end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7822 7823 7824 7825 7826 7827 7828 7829  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 7822 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @end_timestamp = args[:end_timestamp] if args.key?(:end_timestamp) @metrics = args[:metrics] if args.key?(:metrics) @output_format = args[:output_format] if args.key?(:output_format) @start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp) @time_unit = args[:time_unit] if args.key?(:time_unit) end  |