File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed
Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -12,20 +12,20 @@ message AdapterConfiguration {
1212 }
1313}
1414
15- enum RuntimeStatus {
16- UNKNOWN = 0 ;
17- NOT_RESPONDING = 1 ;
18- NOT_READY = 2 ;
19- RUNNING = 3 ;
20- STOPPED = 4 ;
21- }
22-
2315message RuntimeFeature {
2416 repeated shared.Translation name = 1 ;
2517 repeated shared.Translation description = 2 ;
2618}
2719
2820message AdapterRuntimeStatus {
21+ enum RuntimeStatus {
22+ UNKNOWN = 0 ;
23+ NOT_RESPONDING = 1 ;
24+ NOT_READY = 2 ;
25+ RUNNING = 3 ;
26+ STOPPED = 4 ;
27+ }
28+
2929 RuntimeStatus status = 1 ;
3030 int64 timestamp = 2 ; // epoch timestamp in milliseconds
3131
@@ -36,6 +36,14 @@ message AdapterRuntimeStatus {
3636}
3737
3838message ExecutionRuntimeStatus {
39+ enum RuntimeStatus {
40+ UNKNOWN = 0 ;
41+ NOT_RESPONDING = 1 ;
42+ NOT_READY = 2 ;
43+ RUNNING = 3 ;
44+ STOPPED = 4 ;
45+ }
46+
3947 RuntimeStatus status = 1 ;
4048 int64 timestamp = 2 ; // epoch timestamp in milliseconds
4149
You can’t perform that action at this time.
0 commit comments