alibabacloud-cloud-siem20241212 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alibabacloud_cloud_siem20241212-1.0.1/ChangeLog.md +3 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/PKG-INFO +2 -2
- alibabacloud_cloud_siem20241212-1.0.1/alibabacloud_cloud_siem20241212/__init__.py +1 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212/client.py +8 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212/models.py +18 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212.egg-info/PKG-INFO +1 -1
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212.egg-info/SOURCES.txt +1 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/setup.py +3 -3
- alibabacloud_cloud-siem20241212-1.0.0/alibabacloud_cloud_siem20241212/__init__.py +0 -1
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/LICENSE +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/MANIFEST.in +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/README-CN.md +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/README.md +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212.egg-info/dependency_links.txt +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212.egg-info/requires.txt +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/alibabacloud_cloud_siem20241212.egg-info/top_level.txt +0 -0
- {alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name:
|
|
3
|
-
Version: 1.0.
|
|
2
|
+
Name: alibabacloud_cloud_siem20241212
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Alibaba Cloud cloud-siem (20241212) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.0.1'
|
|
@@ -661,6 +661,10 @@ class Client(OpenApiClient):
|
|
|
661
661
|
body['DetectionRuleName'] = request.detection_rule_name
|
|
662
662
|
if not UtilClient.is_unset(request.detection_rule_status):
|
|
663
663
|
body['DetectionRuleStatus'] = request.detection_rule_status
|
|
664
|
+
if not UtilClient.is_unset(request.detection_rule_template_id):
|
|
665
|
+
body['DetectionRuleTemplateId'] = request.detection_rule_template_id
|
|
666
|
+
if not UtilClient.is_unset(request.detection_rule_template_version):
|
|
667
|
+
body['DetectionRuleTemplateVersion'] = request.detection_rule_template_version
|
|
664
668
|
if not UtilClient.is_unset(request.detection_rule_type):
|
|
665
669
|
body['DetectionRuleType'] = request.detection_rule_type
|
|
666
670
|
if not UtilClient.is_unset(request.entity_mappings):
|
|
@@ -754,6 +758,10 @@ class Client(OpenApiClient):
|
|
|
754
758
|
body['DetectionRuleName'] = request.detection_rule_name
|
|
755
759
|
if not UtilClient.is_unset(request.detection_rule_status):
|
|
756
760
|
body['DetectionRuleStatus'] = request.detection_rule_status
|
|
761
|
+
if not UtilClient.is_unset(request.detection_rule_template_id):
|
|
762
|
+
body['DetectionRuleTemplateId'] = request.detection_rule_template_id
|
|
763
|
+
if not UtilClient.is_unset(request.detection_rule_template_version):
|
|
764
|
+
body['DetectionRuleTemplateVersion'] = request.detection_rule_template_version
|
|
757
765
|
if not UtilClient.is_unset(request.detection_rule_type):
|
|
758
766
|
body['DetectionRuleType'] = request.detection_rule_type
|
|
759
767
|
if not UtilClient.is_unset(request.entity_mappings):
|
|
@@ -1091,6 +1091,8 @@ class CreateDetectionRuleRequest(TeaModel):
|
|
|
1091
1091
|
detection_rule_description: str = None,
|
|
1092
1092
|
detection_rule_name: str = None,
|
|
1093
1093
|
detection_rule_status: str = None,
|
|
1094
|
+
detection_rule_template_id: str = None,
|
|
1095
|
+
detection_rule_template_version: str = None,
|
|
1094
1096
|
detection_rule_type: str = None,
|
|
1095
1097
|
entity_mappings: str = None,
|
|
1096
1098
|
incident_aggregation_expression: str = None,
|
|
@@ -1126,6 +1128,8 @@ class CreateDetectionRuleRequest(TeaModel):
|
|
|
1126
1128
|
# This parameter is required.
|
|
1127
1129
|
self.detection_rule_name = detection_rule_name
|
|
1128
1130
|
self.detection_rule_status = detection_rule_status
|
|
1131
|
+
self.detection_rule_template_id = detection_rule_template_id
|
|
1132
|
+
self.detection_rule_template_version = detection_rule_template_version
|
|
1129
1133
|
# This parameter is required.
|
|
1130
1134
|
self.detection_rule_type = detection_rule_type
|
|
1131
1135
|
self.entity_mappings = entity_mappings
|
|
@@ -1181,6 +1185,10 @@ class CreateDetectionRuleRequest(TeaModel):
|
|
|
1181
1185
|
result['DetectionRuleName'] = self.detection_rule_name
|
|
1182
1186
|
if self.detection_rule_status is not None:
|
|
1183
1187
|
result['DetectionRuleStatus'] = self.detection_rule_status
|
|
1188
|
+
if self.detection_rule_template_id is not None:
|
|
1189
|
+
result['DetectionRuleTemplateId'] = self.detection_rule_template_id
|
|
1190
|
+
if self.detection_rule_template_version is not None:
|
|
1191
|
+
result['DetectionRuleTemplateVersion'] = self.detection_rule_template_version
|
|
1184
1192
|
if self.detection_rule_type is not None:
|
|
1185
1193
|
result['DetectionRuleType'] = self.detection_rule_type
|
|
1186
1194
|
if self.entity_mappings is not None:
|
|
@@ -1245,6 +1253,10 @@ class CreateDetectionRuleRequest(TeaModel):
|
|
|
1245
1253
|
self.detection_rule_name = m.get('DetectionRuleName')
|
|
1246
1254
|
if m.get('DetectionRuleStatus') is not None:
|
|
1247
1255
|
self.detection_rule_status = m.get('DetectionRuleStatus')
|
|
1256
|
+
if m.get('DetectionRuleTemplateId') is not None:
|
|
1257
|
+
self.detection_rule_template_id = m.get('DetectionRuleTemplateId')
|
|
1258
|
+
if m.get('DetectionRuleTemplateVersion') is not None:
|
|
1259
|
+
self.detection_rule_template_version = m.get('DetectionRuleTemplateVersion')
|
|
1248
1260
|
if m.get('DetectionRuleType') is not None:
|
|
1249
1261
|
self.detection_rule_type = m.get('DetectionRuleType')
|
|
1250
1262
|
if m.get('EntityMappings') is not None:
|
|
@@ -9464,6 +9476,7 @@ class ListIncidentsResponseBodyIncidents(TeaModel):
|
|
|
9464
9476
|
incident_name: str = None,
|
|
9465
9477
|
incident_remark: str = None,
|
|
9466
9478
|
incident_status: int = None,
|
|
9479
|
+
incident_tags: str = None,
|
|
9467
9480
|
incident_uuid: str = None,
|
|
9468
9481
|
relate_alert_count: int = None,
|
|
9469
9482
|
relate_asset_count: int = None,
|
|
@@ -9474,6 +9487,7 @@ class ListIncidentsResponseBodyIncidents(TeaModel):
|
|
|
9474
9487
|
self.incident_name = incident_name
|
|
9475
9488
|
self.incident_remark = incident_remark
|
|
9476
9489
|
self.incident_status = incident_status
|
|
9490
|
+
self.incident_tags = incident_tags
|
|
9477
9491
|
self.incident_uuid = incident_uuid
|
|
9478
9492
|
self.relate_alert_count = relate_alert_count
|
|
9479
9493
|
self.relate_asset_count = relate_asset_count
|
|
@@ -9497,6 +9511,8 @@ class ListIncidentsResponseBodyIncidents(TeaModel):
|
|
|
9497
9511
|
result['IncidentRemark'] = self.incident_remark
|
|
9498
9512
|
if self.incident_status is not None:
|
|
9499
9513
|
result['IncidentStatus'] = self.incident_status
|
|
9514
|
+
if self.incident_tags is not None:
|
|
9515
|
+
result['IncidentTags'] = self.incident_tags
|
|
9500
9516
|
if self.incident_uuid is not None:
|
|
9501
9517
|
result['IncidentUuid'] = self.incident_uuid
|
|
9502
9518
|
if self.relate_alert_count is not None:
|
|
@@ -9519,6 +9535,8 @@ class ListIncidentsResponseBodyIncidents(TeaModel):
|
|
|
9519
9535
|
self.incident_remark = m.get('IncidentRemark')
|
|
9520
9536
|
if m.get('IncidentStatus') is not None:
|
|
9521
9537
|
self.incident_status = m.get('IncidentStatus')
|
|
9538
|
+
if m.get('IncidentTags') is not None:
|
|
9539
|
+
self.incident_tags = m.get('IncidentTags')
|
|
9522
9540
|
if m.get('IncidentUuid') is not None:
|
|
9523
9541
|
self.incident_uuid = m.get('IncidentUuid')
|
|
9524
9542
|
if m.get('RelateAlertCount') is not None:
|
|
@@ -22,15 +22,15 @@ import os
|
|
|
22
22
|
from setuptools import setup, find_packages
|
|
23
23
|
|
|
24
24
|
"""
|
|
25
|
-
setup module for
|
|
25
|
+
setup module for alibabacloud_cloud_siem20241212.
|
|
26
26
|
|
|
27
|
-
Created on
|
|
27
|
+
Created on 04/11/2025
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
32
|
PACKAGE = "alibabacloud_cloud_siem20241212"
|
|
33
|
-
NAME = "
|
|
33
|
+
NAME = "alibabacloud_cloud_siem20241212" or "alibabacloud-package"
|
|
34
34
|
DESCRIPTION = "Alibaba Cloud cloud-siem (20241212) SDK Library for Python"
|
|
35
35
|
AUTHOR = "Alibaba Cloud SDK"
|
|
36
36
|
AUTHOR_EMAIL = "sdk-team@alibabacloud.com"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.0.0'
|
|
File without changes
|
|
File without changes
|
{alibabacloud_cloud-siem20241212-1.0.0 → alibabacloud_cloud_siem20241212-1.0.1}/README-CN.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|