Class: Google::Apis::DataflowV1b3::ShellTask

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb

Overview

A task which consists of a shell command for the worker to execute.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ShellTask

Returns a new instance of ShellTask.



3084
3085
3086
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3084

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

Instance Attribute Details

#commandString

The shell command to run. Corresponds to the JSON property command

Returns:

  • (String)


3077
3078
3079
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3077

def command
  @command
end

#exit_codeFixnum

Exit code for the task. Corresponds to the JSON property exitCode

Returns:

  • (Fixnum)


3082
3083
3084
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3082

def exit_code
  @exit_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3089
3090
3091
3092
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3089

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