Class: Google::Apis::ComposerV1::StopAirflowCommandResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComposerV1::StopAirflowCommandResponse
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1/classes.rb,
 lib/google/apis/composer_v1/representations.rb,
 lib/google/apis/composer_v1/representations.rb
Overview
Response to StopAirflowCommandRequest.
Instance Attribute Summary collapse
- 
  
    
      #is_done  ⇒ Boolean 
    
    
      (also: #is_done?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether the execution is still running. 
- 
  
    
      #output  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output message from stopping execution request. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StopAirflowCommandResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StopAirflowCommandResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ StopAirflowCommandResponse
Returns a new instance of StopAirflowCommandResponse.
| 1776 1777 1778 | # File 'lib/google/apis/composer_v1/classes.rb', line 1776 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#is_done ⇒ Boolean Also known as: is_done?
Whether the execution is still running.
Corresponds to the JSON property isDone
| 1768 1769 1770 | # File 'lib/google/apis/composer_v1/classes.rb', line 1768 def is_done @is_done end | 
#output ⇒ Array<String>
Output message from stopping execution request.
Corresponds to the JSON property output
| 1774 1775 1776 | # File 'lib/google/apis/composer_v1/classes.rb', line 1774 def output @output end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1781 1782 1783 1784 | # File 'lib/google/apis/composer_v1/classes.rb', line 1781 def update!(**args) @is_done = args[:is_done] if args.key?(:is_done) @output = args[:output] if args.key?(:output) end |