Class: Google::Apis::ToolresultsV1beta3::ToolExecutionStep
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::ToolExecutionStep
 
- 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
Generic tool step to be used for binaries we do not explicitly support. For example: running cp to copy artifacts from one location to another.
Instance Attribute Summary collapse
- 
  
    
      #tool_execution  ⇒ Google::Apis::ToolresultsV1beta3::ToolExecution 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An execution of an arbitrary tool. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ToolExecutionStep 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ToolExecutionStep. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ToolExecutionStep
Returns a new instance of ToolExecutionStep
| 2650 2651 2652 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2650 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#tool_execution ⇒ Google::Apis::ToolresultsV1beta3::ToolExecution
An execution of an arbitrary tool. It could be a test runner or a tool copying
artifacts or deploying code.
Corresponds to the JSON property toolExecution
| 2648 2649 2650 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2648 def tool_execution @tool_execution end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2655 2656 2657 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2655 def update!(**args) @tool_execution = args[:tool_execution] if args.key?(:tool_execution) end |