File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
uncoder-core/app/translator/platforms/sentinel_one Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ from app .translator .core .mapping import LogSourceSignature , BaseStrictLogSourcesPlatformMappings
2
+ from app .translator .platforms .sentinel_one .const import sentinel_one_power_query_details
3
+
4
+
5
+ class SentinelOnePowerQueryLogSourceSignature (LogSourceSignature ):
6
+ def is_suitable (self ) -> bool :
7
+ return True
8
+
9
+ def __str__ (self ) -> str :
10
+ return ""
11
+
12
+
13
+ class SentinelOnePowerQueryMappings (BaseStrictLogSourcesPlatformMappings ):
14
+ def prepare_log_source_signature (self , mapping : dict ) -> SentinelOnePowerQueryLogSourceSignature :
15
+ ...
16
+
17
+
18
+ sentinel_one_power_query_query_mappings = SentinelOnePowerQueryMappings (
19
+ platform_dir = "sentinel_one" , platform_details = sentinel_one_power_query_details
20
+ )
You can’t perform that action at this time.
0 commit comments