Class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetails
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetails
- 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. Next available id: 11
Instance Attribute Summary collapse
-
#task_attempt_stats ⇒ Array<Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats>
Corresponds to the JSON property
taskAttemptStats
. -
#task_execution_state ⇒ String
Corresponds to the JSON property
taskExecutionState
. -
#task_number ⇒ String
Pointer to the task config it used for execution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoTaskExecutionDetails
constructor
A new instance of EnterpriseCrmEventbusProtoTaskExecutionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoTaskExecutionDetails
Returns a new instance of EnterpriseCrmEventbusProtoTaskExecutionDetails.
2904 2905 2906 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 2904 def initialize(**args) update!(**args) end |
Instance Attribute Details
#task_attempt_stats ⇒ Array<Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats>
Corresponds to the JSON property taskAttemptStats
2892 2893 2894 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 2892 def task_attempt_stats @task_attempt_stats end |
#task_execution_state ⇒ String
Corresponds to the JSON property taskExecutionState
2897 2898 2899 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 2897 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
2902 2903 2904 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 2902 def task_number @task_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2909 2910 2911 2912 2913 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 2909 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 |