Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExecutionTraceInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoExecutionTraceInfo

Returns a new instance of EnterpriseCrmEventbusProtoExecutionTraceInfo.



1069
1070
1071
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1069

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

Instance Attribute Details

#parent_event_execution_info_idString

Parent event execution info id that triggers the current execution through SubWorkflowExecutorTask. Corresponds to the JSON property parentEventExecutionInfoId

Returns:

  • (String)


1062
1063
1064
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1062

def parent_event_execution_info_id
  @parent_event_execution_info_id
end

#trace_idString

Used to aggregate ExecutionTraceInfo. Corresponds to the JSON property traceId

Returns:

  • (String)


1067
1068
1069
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1067

def trace_id
  @trace_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1074
1075
1076
1077
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1074

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