@@ -6,6 +6,7 @@ from typing import Union as _Union
66from google .protobuf import any_pb2 as _any_pb2
77from google .protobuf import descriptor as _descriptor
88from google .protobuf import message as _message
9+ from google .protobuf import timestamp_pb2 as _timestamp_pb2
910
1011from dispatch .sdk .v1 import exit_pb2 as _exit_pb2
1112from dispatch .sdk .v1 import poll_pb2 as _poll_pb2
@@ -21,19 +22,25 @@ class RunRequest(_message.Message):
2122 "dispatch_id" ,
2223 "parent_dispatch_id" ,
2324 "root_dispatch_id" ,
25+ "creation_time" ,
26+ "expiration_time" ,
2427 )
2528 FUNCTION_FIELD_NUMBER : _ClassVar [int ]
2629 INPUT_FIELD_NUMBER : _ClassVar [int ]
2730 POLL_RESULT_FIELD_NUMBER : _ClassVar [int ]
2831 DISPATCH_ID_FIELD_NUMBER : _ClassVar [int ]
2932 PARENT_DISPATCH_ID_FIELD_NUMBER : _ClassVar [int ]
3033 ROOT_DISPATCH_ID_FIELD_NUMBER : _ClassVar [int ]
34+ CREATION_TIME_FIELD_NUMBER : _ClassVar [int ]
35+ EXPIRATION_TIME_FIELD_NUMBER : _ClassVar [int ]
3136 function : str
3237 input : _any_pb2 .Any
3338 poll_result : _poll_pb2 .PollResult
3439 dispatch_id : str
3540 parent_dispatch_id : str
3641 root_dispatch_id : str
42+ creation_time : _timestamp_pb2 .Timestamp
43+ expiration_time : _timestamp_pb2 .Timestamp
3744 def __init__ (
3845 self ,
3946 function : _Optional [str ] = ...,
@@ -42,6 +49,8 @@ class RunRequest(_message.Message):
4249 dispatch_id : _Optional [str ] = ...,
4350 parent_dispatch_id : _Optional [str ] = ...,
4451 root_dispatch_id : _Optional [str ] = ...,
52+ creation_time : _Optional [_Union [_timestamp_pb2 .Timestamp , _Mapping ]] = ...,
53+ expiration_time : _Optional [_Union [_timestamp_pb2 .Timestamp , _Mapping ]] = ...,
4554 ) -> None : ...
4655
4756class RunResponse (_message .Message ):
0 commit comments