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.



2128
2129
2130
# File 'lib/google/apis/batch_v1/classes.rb', line 2128

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)


2126
2127
2128
# File 'lib/google/apis/batch_v1/classes.rb', line 2126

def exit_code
  @exit_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2133
2134
2135
# File 'lib/google/apis/batch_v1/classes.rb', line 2133

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