Class: Google::Apis::BatchV1::TaskExecution

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

Overview

This Task Execution field includes detail information for task execution procedures, based on StatusEvent types.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TaskExecution

Returns a new instance of TaskExecution.



2061
2062
2063
# File 'lib/google/apis/batch_v1/classes.rb', line 2061

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

Instance Attribute Details

#exit_codeFixnum

When task is completed as the status of FAILED or SUCCEEDED, exit code is for one task execution result, default is 0 as success. Corresponds to the JSON property exitCode

Returns:

  • (Fixnum)


2059
2060
2061
# File 'lib/google/apis/batch_v1/classes.rb', line 2059

def exit_code
  @exit_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2066
2067
2068
# File 'lib/google/apis/batch_v1/classes.rb', line 2066

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