@@ -95,6 +95,7 @@ message TaskScheduledEvent {
9595 google.protobuf.StringValue version = 2 ;
9696 google.protobuf.StringValue input = 3 ;
9797 TraceContext parentTraceContext = 4 ;
98+ map <string , string > tags = 5 ;
9899}
99100
100101message TaskCompletedEvent {
@@ -256,6 +257,7 @@ message ScheduleTaskAction {
256257 string name = 1 ;
257258 google.protobuf.StringValue version = 2 ;
258259 google.protobuf.StringValue input = 3 ;
260+ map <string , string > tags = 4 ;
259261}
260262
261263message CreateSubOrchestrationAction {
@@ -343,6 +345,7 @@ message CreateInstanceRequest {
343345 google.protobuf.StringValue executionId = 7 ;
344346 map <string , string > tags = 8 ;
345347 TraceContext parentTraceContext = 9 ;
348+ google.protobuf.Timestamp requestTime = 10 ;
346349}
347350
348351message OrchestrationIdReusePolicy {
@@ -490,6 +493,8 @@ message SignalEntityRequest {
490493 google.protobuf.StringValue input = 3 ;
491494 string requestId = 4 ;
492495 google.protobuf.Timestamp scheduledTime = 5 ;
496+ TraceContext parentTraceContext = 6 ;
497+ google.protobuf.Timestamp requestTime = 7 ;
493498}
494499
495500message SignalEntityResponse {
@@ -575,6 +580,7 @@ message OperationRequest {
575580 string operation = 1 ;
576581 string requestId = 2 ;
577582 google.protobuf.StringValue input = 3 ;
583+ TraceContext traceContext = 4 ;
578584}
579585
580586message OperationResult {
@@ -591,10 +597,14 @@ message OperationInfo {
591597
592598message OperationResultSuccess {
593599 google.protobuf.StringValue result = 1 ;
600+ google.protobuf.Timestamp startTimeUtc = 2 ;
601+ google.protobuf.Timestamp endTimeUtc = 3 ;
594602}
595603
596604message OperationResultFailure {
597605 TaskFailureDetails failureDetails = 1 ;
606+ google.protobuf.Timestamp startTimeUtc = 2 ;
607+ google.protobuf.Timestamp endTimeUtc = 3 ;
598608}
599609
600610message OperationAction {
@@ -610,6 +620,8 @@ message SendSignalAction {
610620 string name = 2 ;
611621 google.protobuf.StringValue input = 3 ;
612622 google.protobuf.Timestamp scheduledTime = 4 ;
623+ google.protobuf.Timestamp requestTime = 5 ;
624+ TraceContext parentTraceContext = 6 ;
613625}
614626
615627message StartNewOrchestrationAction {
@@ -618,6 +630,8 @@ message StartNewOrchestrationAction {
618630 google.protobuf.StringValue version = 3 ;
619631 google.protobuf.StringValue input = 4 ;
620632 google.protobuf.Timestamp scheduledTime = 5 ;
633+ google.protobuf.Timestamp requestTime = 6 ;
634+ TraceContext parentTraceContext = 7 ;
621635}
622636
623637message AbandonActivityTaskRequest {
0 commit comments