File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
- from typing import Optional , Any
3
- from pydantic import Field , HttpUrl , model_serializer , BaseModel
2
+
3
+ from typing import Any , Optional
4
+
5
+ from pydantic import BaseModel , Field , HttpUrl , model_serializer
6
+
4
7
from contentctl .objects .security_content_object import SecurityContentObject
5
8
6
9
@@ -14,10 +17,12 @@ class DataSource(SecurityContentObject):
14
17
source : str = Field (...)
15
18
sourcetype : str = Field (...)
16
19
separator : Optional [str ] = None
20
+ separator_value : Optional [str ] = None
17
21
configuration : Optional [str ] = None
18
22
supported_TA : list [TA ] = []
19
23
fields : None | list = None
20
24
field_mappings : None | list = None
25
+ mitre_components : list [str ] = []
21
26
convert_to_log_source : None | list = None
22
27
example_log : None | str = None
23
28
You can’t perform that action at this time.
0 commit comments