Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionReplayInfo

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 info: this includes the replay reason and replay tree connecting executions in a parent-child relationship

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionReplayInfo

Returns a new instance of GoogleCloudIntegrationsV1alphaExecutionReplayInfo.



7954
7955
7956
# File 'lib/google/apis/integrations_v1/classes.rb', line 7954

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

Instance Attribute Details

#original_execution_info_idString

If this execution is a replay of another execution, then this field contains the original execution id. Corresponds to the JSON property originalExecutionInfoId

Returns:

  • (String)


7936
7937
7938
# File 'lib/google/apis/integrations_v1/classes.rb', line 7936

def original_execution_info_id
  @original_execution_info_id
end

#replay_modeString

Replay mode for the execution Corresponds to the JSON property replayMode

Returns:

  • (String)


7941
7942
7943
# File 'lib/google/apis/integrations_v1/classes.rb', line 7941

def replay_mode
  @replay_mode
end

#replay_reasonString

reason for replay Corresponds to the JSON property replayReason

Returns:

  • (String)


7946
7947
7948
# File 'lib/google/apis/integrations_v1/classes.rb', line 7946

def replay_reason
  @replay_reason
end

#replayed_execution_info_idsArray<String>

If this execution has been replayed, then this field contains the execution ids of the replayed executions. Corresponds to the JSON property replayedExecutionInfoIds

Returns:

  • (Array<String>)


7952
7953
7954
# File 'lib/google/apis/integrations_v1/classes.rb', line 7952

def replayed_execution_info_ids
  @replayed_execution_info_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7959
7960
7961
7962
7963
7964
# File 'lib/google/apis/integrations_v1/classes.rb', line 7959

def update!(**args)
  @original_execution_info_id = args[:original_execution_info_id] if args.key?(:original_execution_info_id)
  @replay_mode = args[:replay_mode] if args.key?(:replay_mode)
  @replay_reason = args[:replay_reason] if args.key?(:replay_reason)
  @replayed_execution_info_ids = args[:replayed_execution_info_ids] if args.key?(:replayed_execution_info_ids)
end