@@ -304,7 +304,7 @@ class PbTrigger(_message.Message):
304
304
def __init__ (self , id : _Optional [str ] = ..., label : _Optional [str ] = ..., message : _Optional [str ] = ..., satisfied : bool = ..., time : _Optional [float ] = ...) -> None : ...
305
305
306
306
class PbTaskProxy (_message .Message ):
307
- __slots__ = ("stamp" , "id" , "task" , "state" , "cycle_point" , "depth" , "job_submits" , "outputs" , "namespace" , "prerequisites" , "jobs" , "first_parent" , "name" , "is_held" , "edges" , "ancestors" , "flow_nums" , "external_triggers" , "xtriggers" , "is_queued" , "is_runahead" , "flow_wait" , "runtime" , "graph_depth" )
307
+ __slots__ = ("stamp" , "id" , "task" , "state" , "cycle_point" , "depth" , "job_submits" , "outputs" , "namespace" , "prerequisites" , "jobs" , "first_parent" , "name" , "is_held" , "edges" , "ancestors" , "flow_nums" , "external_triggers" , "xtriggers" , "is_queued" , "is_runahead" , "flow_wait" , "runtime" , "graph_depth" , "is_retry" , "is_wallclock" , "is_xtriggered" )
308
308
class OutputsEntry (_message .Message ):
309
309
__slots__ = ("key" , "value" )
310
310
KEY_FIELD_NUMBER : _ClassVar [int ]
@@ -350,6 +350,9 @@ class PbTaskProxy(_message.Message):
350
350
FLOW_WAIT_FIELD_NUMBER : _ClassVar [int ]
351
351
RUNTIME_FIELD_NUMBER : _ClassVar [int ]
352
352
GRAPH_DEPTH_FIELD_NUMBER : _ClassVar [int ]
353
+ IS_RETRY_FIELD_NUMBER : _ClassVar [int ]
354
+ IS_WALLCLOCK_FIELD_NUMBER : _ClassVar [int ]
355
+ IS_XTRIGGERED_FIELD_NUMBER : _ClassVar [int ]
353
356
stamp : str
354
357
id : str
355
358
task : str
@@ -374,7 +377,10 @@ class PbTaskProxy(_message.Message):
374
377
flow_wait : bool
375
378
runtime : PbRuntime
376
379
graph_depth : int
377
- def __init__ (self , stamp : _Optional [str ] = ..., id : _Optional [str ] = ..., task : _Optional [str ] = ..., state : _Optional [str ] = ..., cycle_point : _Optional [str ] = ..., depth : _Optional [int ] = ..., job_submits : _Optional [int ] = ..., outputs : _Optional [_Mapping [str , PbOutput ]] = ..., namespace : _Optional [_Iterable [str ]] = ..., prerequisites : _Optional [_Iterable [_Union [PbPrerequisite , _Mapping ]]] = ..., jobs : _Optional [_Iterable [str ]] = ..., first_parent : _Optional [str ] = ..., name : _Optional [str ] = ..., is_held : bool = ..., edges : _Optional [_Iterable [str ]] = ..., ancestors : _Optional [_Iterable [str ]] = ..., flow_nums : _Optional [str ] = ..., external_triggers : _Optional [_Mapping [str , PbTrigger ]] = ..., xtriggers : _Optional [_Mapping [str , PbTrigger ]] = ..., is_queued : bool = ..., is_runahead : bool = ..., flow_wait : bool = ..., runtime : _Optional [_Union [PbRuntime , _Mapping ]] = ..., graph_depth : _Optional [int ] = ...) -> None : ...
380
+ is_retry : bool
381
+ is_wallclock : bool
382
+ is_xtriggered : bool
383
+ def __init__ (self , stamp : _Optional [str ] = ..., id : _Optional [str ] = ..., task : _Optional [str ] = ..., state : _Optional [str ] = ..., cycle_point : _Optional [str ] = ..., depth : _Optional [int ] = ..., job_submits : _Optional [int ] = ..., outputs : _Optional [_Mapping [str , PbOutput ]] = ..., namespace : _Optional [_Iterable [str ]] = ..., prerequisites : _Optional [_Iterable [_Union [PbPrerequisite , _Mapping ]]] = ..., jobs : _Optional [_Iterable [str ]] = ..., first_parent : _Optional [str ] = ..., name : _Optional [str ] = ..., is_held : bool = ..., edges : _Optional [_Iterable [str ]] = ..., ancestors : _Optional [_Iterable [str ]] = ..., flow_nums : _Optional [str ] = ..., external_triggers : _Optional [_Mapping [str , PbTrigger ]] = ..., xtriggers : _Optional [_Mapping [str , PbTrigger ]] = ..., is_queued : bool = ..., is_runahead : bool = ..., flow_wait : bool = ..., runtime : _Optional [_Union [PbRuntime , _Mapping ]] = ..., graph_depth : _Optional [int ] = ..., is_retry : bool = ..., is_wallclock : bool = ..., is_xtriggered : bool = ...) -> None : ...
378
384
379
385
class PbFamily (_message .Message ):
380
386
__slots__ = ("stamp" , "id" , "name" , "meta" , "depth" , "proxies" , "parents" , "child_tasks" , "child_families" , "first_parent" , "runtime" , "descendants" )
0 commit comments