Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions protos/orchestrator_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ message SubOrchestrationInstanceCreatedEvent {
google.protobuf.StringValue version = 3;
google.protobuf.StringValue input = 4;
TraceContext parentTraceContext = 5;

// If defined, indicates that this task was the starting point of a new
// workflow execution as the result of a rerun operation.
optional RerunParentInstanceInfo rerunParentInstanceInfo = 6;
}

message SubOrchestrationInstanceCompletedEvent {
Expand Down Expand Up @@ -865,6 +869,11 @@ message RerunWorkflowFromEventRequest {
// inputs being `StringValue` which cannot be optional, and therefore no nil
// value can be signalled or overwritten.
bool overwriteInput = 5;

// newChildWorkflowInstanceID is an optional instance ID to use when
// rerunning from a child workflow. Only accepted if the event ID given is
// targeting a child workflow creation event.
optional string newChildWorkflowInstanceID = 6;
}

// RerunWorkflowFromEventResponse is the response to executing
Expand Down