File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
uncoder-core/app/translator/platforms/arcsight/renders Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
from app .translator .core .models .platform_details import PlatformDetails
2
2
from app .translator .core .render_cti import RenderCTI
3
3
from app .translator .managers import render_cti_manager
4
- from app .translator .platforms .arcsight .const import ARCSIGHT_QUERY_DETAILS
4
+ from app .translator .platforms .arcsight .const import arcsight_query_details
5
5
from app .translator .platforms .arcsight .mappings .arcsight_cti import DEFAULT_ARCSIGHT_MAPPING
6
6
7
7
8
8
@render_cti_manager .register
9
9
class ArcsightKeyword (RenderCTI ):
10
- details : PlatformDetails = PlatformDetails ( ** ARCSIGHT_QUERY_DETAILS )
10
+ details : PlatformDetails = arcsight_query_details
11
11
12
12
default_mapping = DEFAULT_ARCSIGHT_MAPPING
13
- field_value_template : str = " {key} = {value}"
13
+ field_value_template : str = ' {key} = " {value}"'
14
14
or_operator : str = " OR "
15
15
group_or_operator : str = " OR "
16
16
or_group : str = "{or_group}"
You can’t perform that action at this time.
0 commit comments