Class: Google::Apis::ToolresultsV1beta3::PrimaryStep
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::PrimaryStep
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb 
Overview
Stores rollup test status of multiple steps that were run as a group and outcome of each individual step.
Instance Attribute Summary collapse
- 
  
    
      #individual_outcome  ⇒ Array<Google::Apis::ToolresultsV1beta3::IndividualOutcome> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Step Id and outcome of each individual step.
 - 
  
    
      #roll_up  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Rollup test status of multiple steps that were run with the same configuration as a group.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PrimaryStep 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PrimaryStep.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ PrimaryStep
Returns a new instance of PrimaryStep.
      2332 2333 2334  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2332 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#individual_outcome ⇒ Array<Google::Apis::ToolresultsV1beta3::IndividualOutcome>
Step Id and outcome of each individual step.
Corresponds to the JSON property individualOutcome
      2324 2325 2326  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2324 def individual_outcome @individual_outcome end  | 
  
#roll_up ⇒ String
Rollup test status of multiple steps that were run with the same configuration
as a group.
Corresponds to the JSON property rollUp
      2330 2331 2332  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2330 def roll_up @roll_up end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2337 2338 2339 2340  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2337 def update!(**args) @individual_outcome = args[:individual_outcome] if args.key?(:individual_outcome) @roll_up = args[:roll_up] if args.key?(:roll_up) end  |