Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExecutionTraceInfo
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExecutionTraceInfo
- 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
Message that helps aggregate all sub-executions triggered by one execution and keeps track of child-parent relationships.
Instance Attribute Summary collapse
-
#parent_event_execution_info_id ⇒ String
Parent event execution info id that triggers the current execution through SubWorkflowExecutorTask.
-
#trace_id ⇒ String
Used to aggregate ExecutionTraceInfo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoExecutionTraceInfo
constructor
A new instance of EnterpriseCrmEventbusProtoExecutionTraceInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoExecutionTraceInfo
Returns a new instance of EnterpriseCrmEventbusProtoExecutionTraceInfo.
1160 1161 1162 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parent_event_execution_info_id ⇒ String
Parent event execution info id that triggers the current execution through
SubWorkflowExecutorTask.
Corresponds to the JSON property parentEventExecutionInfoId
1153 1154 1155 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1153 def parent_event_execution_info_id @parent_event_execution_info_id end |
#trace_id ⇒ String
Used to aggregate ExecutionTraceInfo.
Corresponds to the JSON property traceId
1158 1159 1160 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1158 def trace_id @trace_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1165 1166 1167 1168 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1165 def update!(**args) @parent_event_execution_info_id = args[:parent_event_execution_info_id] if args.key?(:parent_event_execution_info_id) @trace_id = args[:trace_id] if args.key?(:trace_id) end |