Class: Google::Apis::ComposerV1beta1::StopAirflowCommandResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb

Overview

Response to StopAirflowCommandRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StopAirflowCommandResponse

Returns a new instance of StopAirflowCommandResponse.



1845
1846
1847
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1845

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#is_doneBoolean Also known as: is_done?

Whether the execution is still running. Corresponds to the JSON property isDone

Returns:

  • (Boolean)


1837
1838
1839
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1837

def is_done
  @is_done
end

#outputArray<String>

Output message from stopping execution request. Corresponds to the JSON property output

Returns:

  • (Array<String>)


1843
1844
1845
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1843

def output
  @output
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1850
1851
1852
1853
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1850

def update!(**args)
  @is_done = args[:is_done] if args.key?(:is_done)
  @output = args[:output] if args.key?(:output)
end