Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTaskExecutionDetails

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

Overview

Contains the details of the execution of this task.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaTaskExecutionDetails

Returns a new instance of GoogleCloudIntegrationsV1alphaTaskExecutionDetails.



10800
10801
10802
# File 'lib/google/apis/integrations_v1/classes.rb', line 10800

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

Instance Attribute Details

#task_attempt_statsArray<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAttemptStats>

Status for the current task execution attempt. Corresponds to the JSON property taskAttemptStats



10788
10789
10790
# File 'lib/google/apis/integrations_v1/classes.rb', line 10788

def task_attempt_stats
  @task_attempt_stats
end

#task_execution_stateString

The execution state of this task. Corresponds to the JSON property taskExecutionState

Returns:

  • (String)


10793
10794
10795
# File 'lib/google/apis/integrations_v1/classes.rb', line 10793

def task_execution_state
  @task_execution_state
end

#task_numberString

Pointer to the task config it used for execution. Corresponds to the JSON property taskNumber

Returns:

  • (String)


10798
10799
10800
# File 'lib/google/apis/integrations_v1/classes.rb', line 10798

def task_number
  @task_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10805
10806
10807
10808
10809
# File 'lib/google/apis/integrations_v1/classes.rb', line 10805

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