Class: Google::Apis::ToolresultsV1beta3::BasicPerfSampleSeries
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::BasicPerfSampleSeries
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb
Overview
Encapsulates the metadata for basic sample series represented by a line chart
Instance Attribute Summary collapse
- 
  
    
      #perf_metric_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property perfMetricType.
- 
  
    
      #perf_unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property perfUnit.
- 
  
    
      #sample_series_label  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property sampleSeriesLabel.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BasicPerfSampleSeries 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BasicPerfSampleSeries. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BasicPerfSampleSeries
Returns a new instance of BasicPerfSampleSeries
| 395 396 397 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 395 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#perf_metric_type ⇒ String
Corresponds to the JSON property perfMetricType
| 383 384 385 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 383 def perf_metric_type @perf_metric_type end | 
#perf_unit ⇒ String
Corresponds to the JSON property perfUnit
| 388 389 390 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 388 def perf_unit @perf_unit end | 
#sample_series_label ⇒ String
Corresponds to the JSON property sampleSeriesLabel
| 393 394 395 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 393 def sample_series_label @sample_series_label end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 400 401 402 403 404 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 400 def update!(**args) @perf_metric_type = args[:perf_metric_type] if args.key?(:perf_metric_type) @perf_unit = args[:perf_unit] if args.key?(:perf_unit) @sample_series_label = args[:sample_series_label] if args.key?(:sample_series_label) end |