@@ -593,8 +593,14 @@ class SendEntityMessageAction(_message.Message):
593593 entityUnlockSent : EntityUnlockSentEvent
594594 def __init__ (self , entityOperationSignaled : _Optional [_Union [EntityOperationSignaledEvent , _Mapping ]] = ..., entityOperationCalled : _Optional [_Union [EntityOperationCalledEvent , _Mapping ]] = ..., entityLockRequested : _Optional [_Union [EntityLockRequestedEvent , _Mapping ]] = ..., entityUnlockSent : _Optional [_Union [EntityUnlockSentEvent , _Mapping ]] = ...) -> None : ...
595595
596+ class RewindOrchestrationAction (_message .Message ):
597+ __slots__ = ("newHistory" ,)
598+ NEWHISTORY_FIELD_NUMBER : _ClassVar [int ]
599+ newHistory : _containers .RepeatedCompositeFieldContainer [HistoryEvent ]
600+ def __init__ (self , newHistory : _Optional [_Iterable [_Union [HistoryEvent , _Mapping ]]] = ...) -> None : ...
601+
596602class OrchestratorAction (_message .Message ):
597- __slots__ = ("id" , "scheduleTask" , "createSubOrchestration" , "createTimer" , "sendEvent" , "completeOrchestration" , "terminateOrchestration" , "sendEntityMessage" )
603+ __slots__ = ("id" , "scheduleTask" , "createSubOrchestration" , "createTimer" , "sendEvent" , "completeOrchestration" , "terminateOrchestration" , "sendEntityMessage" , "rewindOrchestration" )
598604 ID_FIELD_NUMBER : _ClassVar [int ]
599605 SCHEDULETASK_FIELD_NUMBER : _ClassVar [int ]
600606 CREATESUBORCHESTRATION_FIELD_NUMBER : _ClassVar [int ]
@@ -603,6 +609,7 @@ class OrchestratorAction(_message.Message):
603609 COMPLETEORCHESTRATION_FIELD_NUMBER : _ClassVar [int ]
604610 TERMINATEORCHESTRATION_FIELD_NUMBER : _ClassVar [int ]
605611 SENDENTITYMESSAGE_FIELD_NUMBER : _ClassVar [int ]
612+ REWINDORCHESTRATION_FIELD_NUMBER : _ClassVar [int ]
606613 id : int
607614 scheduleTask : ScheduleTaskAction
608615 createSubOrchestration : CreateSubOrchestrationAction
@@ -611,7 +618,8 @@ class OrchestratorAction(_message.Message):
611618 completeOrchestration : CompleteOrchestrationAction
612619 terminateOrchestration : TerminateOrchestrationAction
613620 sendEntityMessage : SendEntityMessageAction
614- def __init__ (self , id : _Optional [int ] = ..., scheduleTask : _Optional [_Union [ScheduleTaskAction , _Mapping ]] = ..., createSubOrchestration : _Optional [_Union [CreateSubOrchestrationAction , _Mapping ]] = ..., createTimer : _Optional [_Union [CreateTimerAction , _Mapping ]] = ..., sendEvent : _Optional [_Union [SendEventAction , _Mapping ]] = ..., completeOrchestration : _Optional [_Union [CompleteOrchestrationAction , _Mapping ]] = ..., terminateOrchestration : _Optional [_Union [TerminateOrchestrationAction , _Mapping ]] = ..., sendEntityMessage : _Optional [_Union [SendEntityMessageAction , _Mapping ]] = ...) -> None : ...
621+ rewindOrchestration : RewindOrchestrationAction
622+ def __init__ (self , id : _Optional [int ] = ..., scheduleTask : _Optional [_Union [ScheduleTaskAction , _Mapping ]] = ..., createSubOrchestration : _Optional [_Union [CreateSubOrchestrationAction , _Mapping ]] = ..., createTimer : _Optional [_Union [CreateTimerAction , _Mapping ]] = ..., sendEvent : _Optional [_Union [SendEventAction , _Mapping ]] = ..., completeOrchestration : _Optional [_Union [CompleteOrchestrationAction , _Mapping ]] = ..., terminateOrchestration : _Optional [_Union [TerminateOrchestrationAction , _Mapping ]] = ..., sendEntityMessage : _Optional [_Union [SendEntityMessageAction , _Mapping ]] = ..., rewindOrchestration : _Optional [_Union [RewindOrchestrationAction , _Mapping ]] = ...) -> None : ...
615623
616624class OrchestrationTraceContext (_message .Message ):
617625 __slots__ = ("spanID" , "spanStartTime" )
@@ -1250,16 +1258,50 @@ class SkipGracefulOrchestrationTerminationsResponse(_message.Message):
12501258 def __init__ (self , unterminatedInstanceIds : _Optional [_Iterable [str ]] = ...) -> None : ...
12511259
12521260class GetWorkItemsRequest (_message .Message ):
1253- __slots__ = ("maxConcurrentOrchestrationWorkItems" , "maxConcurrentActivityWorkItems" , "maxConcurrentEntityWorkItems" , "capabilities" )
1261+ __slots__ = ("maxConcurrentOrchestrationWorkItems" , "maxConcurrentActivityWorkItems" , "maxConcurrentEntityWorkItems" , "capabilities" , "workItemFilters" )
12541262 MAXCONCURRENTORCHESTRATIONWORKITEMS_FIELD_NUMBER : _ClassVar [int ]
12551263 MAXCONCURRENTACTIVITYWORKITEMS_FIELD_NUMBER : _ClassVar [int ]
12561264 MAXCONCURRENTENTITYWORKITEMS_FIELD_NUMBER : _ClassVar [int ]
12571265 CAPABILITIES_FIELD_NUMBER : _ClassVar [int ]
1266+ WORKITEMFILTERS_FIELD_NUMBER : _ClassVar [int ]
12581267 maxConcurrentOrchestrationWorkItems : int
12591268 maxConcurrentActivityWorkItems : int
12601269 maxConcurrentEntityWorkItems : int
12611270 capabilities : _containers .RepeatedScalarFieldContainer [WorkerCapability ]
1262- def __init__ (self , maxConcurrentOrchestrationWorkItems : _Optional [int ] = ..., maxConcurrentActivityWorkItems : _Optional [int ] = ..., maxConcurrentEntityWorkItems : _Optional [int ] = ..., capabilities : _Optional [_Iterable [_Union [WorkerCapability , str ]]] = ...) -> None : ...
1271+ workItemFilters : WorkItemFilters
1272+ def __init__ (self , maxConcurrentOrchestrationWorkItems : _Optional [int ] = ..., maxConcurrentActivityWorkItems : _Optional [int ] = ..., maxConcurrentEntityWorkItems : _Optional [int ] = ..., capabilities : _Optional [_Iterable [_Union [WorkerCapability , str ]]] = ..., workItemFilters : _Optional [_Union [WorkItemFilters , _Mapping ]] = ...) -> None : ...
1273+
1274+ class WorkItemFilters (_message .Message ):
1275+ __slots__ = ("orchestrations" , "activities" , "entities" )
1276+ ORCHESTRATIONS_FIELD_NUMBER : _ClassVar [int ]
1277+ ACTIVITIES_FIELD_NUMBER : _ClassVar [int ]
1278+ ENTITIES_FIELD_NUMBER : _ClassVar [int ]
1279+ orchestrations : _containers .RepeatedCompositeFieldContainer [OrchestrationFilter ]
1280+ activities : _containers .RepeatedCompositeFieldContainer [ActivityFilter ]
1281+ entities : _containers .RepeatedCompositeFieldContainer [EntityFilter ]
1282+ def __init__ (self , orchestrations : _Optional [_Iterable [_Union [OrchestrationFilter , _Mapping ]]] = ..., activities : _Optional [_Iterable [_Union [ActivityFilter , _Mapping ]]] = ..., entities : _Optional [_Iterable [_Union [EntityFilter , _Mapping ]]] = ...) -> None : ...
1283+
1284+ class OrchestrationFilter (_message .Message ):
1285+ __slots__ = ("name" , "versions" )
1286+ NAME_FIELD_NUMBER : _ClassVar [int ]
1287+ VERSIONS_FIELD_NUMBER : _ClassVar [int ]
1288+ name : str
1289+ versions : _containers .RepeatedScalarFieldContainer [str ]
1290+ def __init__ (self , name : _Optional [str ] = ..., versions : _Optional [_Iterable [str ]] = ...) -> None : ...
1291+
1292+ class ActivityFilter (_message .Message ):
1293+ __slots__ = ("name" , "versions" )
1294+ NAME_FIELD_NUMBER : _ClassVar [int ]
1295+ VERSIONS_FIELD_NUMBER : _ClassVar [int ]
1296+ name : str
1297+ versions : _containers .RepeatedScalarFieldContainer [str ]
1298+ def __init__ (self , name : _Optional [str ] = ..., versions : _Optional [_Iterable [str ]] = ...) -> None : ...
1299+
1300+ class EntityFilter (_message .Message ):
1301+ __slots__ = ("name" ,)
1302+ NAME_FIELD_NUMBER : _ClassVar [int ]
1303+ name : str
1304+ def __init__ (self , name : _Optional [str ] = ...) -> None : ...
12631305
12641306class WorkItem (_message .Message ):
12651307 __slots__ = ("orchestratorRequest" , "activityRequest" , "entityRequest" , "healthPing" , "entityRequestV2" , "completionToken" )
0 commit comments