File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
algoliasearch/ingestion/models Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 2222
2323_ALIASES = {
2424 "run_id" : "runID" ,
25+ "event_id" : "eventID" ,
2526 "data" : "data" ,
2627 "events" : "events" ,
2728 "message" : "message" ,
29+ "created_at" : "createdAt" ,
2830}
2931
3032
@@ -39,12 +41,16 @@ class WatchResponse(BaseModel):
3941
4042 run_id : str
4143 """ Universally unique identifier (UUID) of a task run. """
44+ event_id : Optional [str ] = None
45+ """ Universally unique identifier (UUID) of an event. """
4246 data : Optional [List [object ]] = None
4347 """ when used with discovering or validating sources, the sampled data of your source is returned. """
4448 events : Optional [List [Event ]] = None
4549 """ in case of error, observability events will be added to the response, if any. """
4650 message : Optional [str ] = None
4751 """ a message describing the outcome of a validate run. """
52+ created_at : Optional [str ] = None
53+ """ Date of creation in RFC 3339 format. """
4854
4955 model_config = ConfigDict (
5056 strict = False ,
You can’t perform that action at this time.
0 commit comments