@@ -6,6 +6,7 @@ from typing import Union as _Union
6
6
from google .protobuf import any_pb2 as _any_pb2
7
7
from google .protobuf import descriptor as _descriptor
8
8
from google .protobuf import message as _message
9
+ from google .protobuf import timestamp_pb2 as _timestamp_pb2
9
10
10
11
from dispatch .sdk .v1 import exit_pb2 as _exit_pb2
11
12
from dispatch .sdk .v1 import poll_pb2 as _poll_pb2
@@ -21,19 +22,25 @@ class RunRequest(_message.Message):
21
22
"dispatch_id" ,
22
23
"parent_dispatch_id" ,
23
24
"root_dispatch_id" ,
25
+ "creation_time" ,
26
+ "expiration_time" ,
24
27
)
25
28
FUNCTION_FIELD_NUMBER : _ClassVar [int ]
26
29
INPUT_FIELD_NUMBER : _ClassVar [int ]
27
30
POLL_RESULT_FIELD_NUMBER : _ClassVar [int ]
28
31
DISPATCH_ID_FIELD_NUMBER : _ClassVar [int ]
29
32
PARENT_DISPATCH_ID_FIELD_NUMBER : _ClassVar [int ]
30
33
ROOT_DISPATCH_ID_FIELD_NUMBER : _ClassVar [int ]
34
+ CREATION_TIME_FIELD_NUMBER : _ClassVar [int ]
35
+ EXPIRATION_TIME_FIELD_NUMBER : _ClassVar [int ]
31
36
function : str
32
37
input : _any_pb2 .Any
33
38
poll_result : _poll_pb2 .PollResult
34
39
dispatch_id : str
35
40
parent_dispatch_id : str
36
41
root_dispatch_id : str
42
+ creation_time : _timestamp_pb2 .Timestamp
43
+ expiration_time : _timestamp_pb2 .Timestamp
37
44
def __init__ (
38
45
self ,
39
46
function : _Optional [str ] = ...,
@@ -42,6 +49,8 @@ class RunRequest(_message.Message):
42
49
dispatch_id : _Optional [str ] = ...,
43
50
parent_dispatch_id : _Optional [str ] = ...,
44
51
root_dispatch_id : _Optional [str ] = ...,
52
+ creation_time : _Optional [_Union [_timestamp_pb2 .Timestamp , _Mapping ]] = ...,
53
+ expiration_time : _Optional [_Union [_timestamp_pb2 .Timestamp , _Mapping ]] = ...,
45
54
) -> None : ...
46
55
47
56
class RunResponse (_message .Message ):
0 commit comments