Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTaskExecutionDetails
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTaskExecutionDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Contains the details of the execution of this task.
Instance Attribute Summary collapse
-
#task_attempt_stats ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAttemptStats>
Status for the current task execution attempt.
-
#task_execution_state ⇒ String
The execution state of this task.
-
#task_number ⇒ String
Pointer to the task config it used for execution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaTaskExecutionDetails
constructor
A new instance of GoogleCloudIntegrationsV1alphaTaskExecutionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaTaskExecutionDetails
Returns a new instance of GoogleCloudIntegrationsV1alphaTaskExecutionDetails.
8689 8690 8691 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8689 def initialize(**args) update!(**args) end |
Instance Attribute Details
#task_attempt_stats ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAttemptStats>
Status for the current task execution attempt.
Corresponds to the JSON property taskAttemptStats
8677 8678 8679 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8677 def task_attempt_stats @task_attempt_stats end |
#task_execution_state ⇒ String
The execution state of this task.
Corresponds to the JSON property taskExecutionState
8682 8683 8684 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8682 def task_execution_state @task_execution_state end |
#task_number ⇒ String
Pointer to the task config it used for execution.
Corresponds to the JSON property taskNumber
8687 8688 8689 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8687 def task_number @task_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8694 8695 8696 8697 8698 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8694 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 |