Class: Google::Apis::ToolresultsV1beta3::PerfSampleSeries
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::PerfSampleSeries
 
 
- 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
Resource representing a collection of performance samples (or data points)
Instance Attribute Summary collapse
- 
  
    
      #basic_perf_sample_series  ⇒ Google::Apis::ToolresultsV1beta3::BasicPerfSampleSeries 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Encapsulates the metadata for basic sample series represented by a line chart Corresponds to the JSON property
basicPerfSampleSeries. - 
  
    
      #execution_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A tool results execution ID.
 - 
  
    
      #history_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A tool results history ID.
 - 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The cloud project Corresponds to the JSON property
projectId. - 
  
    
      #sample_series_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A sample series id Corresponds to the JSON property
sampleSeriesId. - 
  
    
      #step_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A tool results step ID.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PerfSampleSeries 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PerfSampleSeries.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PerfSampleSeries
Returns a new instance of PerfSampleSeries
      1506 1507 1508  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1506 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#basic_perf_sample_series ⇒ Google::Apis::ToolresultsV1beta3::BasicPerfSampleSeries
Encapsulates the metadata for basic sample series represented by a line chart
Corresponds to the JSON property basicPerfSampleSeries
      1479 1480 1481  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1479 def basic_perf_sample_series @basic_perf_sample_series end  | 
  
#execution_id ⇒ String
A tool results execution ID.
Corresponds to the JSON property executionId
      1484 1485 1486  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1484 def execution_id @execution_id end  | 
  
#history_id ⇒ String
A tool results history ID.
Corresponds to the JSON property historyId
      1489 1490 1491  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1489 def history_id @history_id end  | 
  
#project_id ⇒ String
The cloud project
Corresponds to the JSON property projectId
      1494 1495 1496  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1494 def project_id @project_id end  | 
  
#sample_series_id ⇒ String
A sample series id
Corresponds to the JSON property sampleSeriesId
      1499 1500 1501  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1499 def sample_series_id @sample_series_id end  | 
  
#step_id ⇒ String
A tool results step ID.
Corresponds to the JSON property stepId
      1504 1505 1506  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1504 def step_id @step_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1511 1512 1513 1514 1515 1516 1517 1518  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1511 def update!(**args) @basic_perf_sample_series = args[:basic_perf_sample_series] if args.key?(:basic_perf_sample_series) @execution_id = args[:execution_id] if args.key?(:execution_id) @history_id = args[:history_id] if args.key?(:history_id) @project_id = args[:project_id] if args.key?(:project_id) @sample_series_id = args[:sample_series_id] if args.key?(:sample_series_id) @step_id = args[:step_id] if args.key?(:step_id) end  |