tencentcloud-sdk-python-cfw 3.0.865__tar.gz → 3.0.868__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.
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud/cfw/v20190904/models.py +51 -1
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/README.rst +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/setup.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.865 → tencentcloud-sdk-python-cfw-3.0.868}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -436,6 +436,41 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
436
436
|
|
|
437
437
|
|
|
438
438
|
|
|
439
|
+
class BetaInfoByACL(AbstractModel):
|
|
440
|
+
"""规则关联的beta任务
|
|
441
|
+
|
|
442
|
+
"""
|
|
443
|
+
|
|
444
|
+
def __init__(self):
|
|
445
|
+
r"""
|
|
446
|
+
:param TaskId: 任务id
|
|
447
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
448
|
+
:type TaskId: int
|
|
449
|
+
:param TaskName: 任务名称
|
|
450
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
451
|
+
:type TaskName: str
|
|
452
|
+
:param LastTime: 上次执行时间
|
|
453
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
454
|
+
:type LastTime: str
|
|
455
|
+
"""
|
|
456
|
+
self.TaskId = None
|
|
457
|
+
self.TaskName = None
|
|
458
|
+
self.LastTime = None
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
def _deserialize(self, params):
|
|
462
|
+
self.TaskId = params.get("TaskId")
|
|
463
|
+
self.TaskName = params.get("TaskName")
|
|
464
|
+
self.LastTime = params.get("LastTime")
|
|
465
|
+
memeber_set = set(params.keys())
|
|
466
|
+
for name, value in vars(self).items():
|
|
467
|
+
if name in memeber_set:
|
|
468
|
+
memeber_set.remove(name)
|
|
469
|
+
if len(memeber_set) > 0:
|
|
470
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
439
474
|
class BlockIgnoreRule(AbstractModel):
|
|
440
475
|
"""入侵防御放通封禁规则
|
|
441
476
|
|
|
@@ -1555,6 +1590,9 @@ class DescAcItem(AbstractModel):
|
|
|
1555
1590
|
:param Status: 规则状态,查询规则命中详情时该字段有效,0:新增,1: 已删除, 2: 编辑删除
|
|
1556
1591
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1557
1592
|
:type Status: int
|
|
1593
|
+
:param BetaList: 关联任务详情
|
|
1594
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1595
|
+
:type BetaList: list of BetaInfoByACL
|
|
1558
1596
|
"""
|
|
1559
1597
|
self.SourceContent = None
|
|
1560
1598
|
self.TargetContent = None
|
|
@@ -1580,6 +1618,7 @@ class DescAcItem(AbstractModel):
|
|
|
1580
1618
|
self.InstanceName = None
|
|
1581
1619
|
self.InternalUuid = None
|
|
1582
1620
|
self.Status = None
|
|
1621
|
+
self.BetaList = None
|
|
1583
1622
|
|
|
1584
1623
|
|
|
1585
1624
|
def _deserialize(self, params):
|
|
@@ -1607,6 +1646,12 @@ class DescAcItem(AbstractModel):
|
|
|
1607
1646
|
self.InstanceName = params.get("InstanceName")
|
|
1608
1647
|
self.InternalUuid = params.get("InternalUuid")
|
|
1609
1648
|
self.Status = params.get("Status")
|
|
1649
|
+
if params.get("BetaList") is not None:
|
|
1650
|
+
self.BetaList = []
|
|
1651
|
+
for item in params.get("BetaList"):
|
|
1652
|
+
obj = BetaInfoByACL()
|
|
1653
|
+
obj._deserialize(item)
|
|
1654
|
+
self.BetaList.append(obj)
|
|
1610
1655
|
memeber_set = set(params.keys())
|
|
1611
1656
|
for name, value in vars(self).items():
|
|
1612
1657
|
if name in memeber_set:
|
|
@@ -3177,7 +3222,12 @@ class DescribeTLogInfoResponse(AbstractModel):
|
|
|
3177
3222
|
|
|
3178
3223
|
def __init__(self):
|
|
3179
3224
|
r"""
|
|
3180
|
-
:param Data:
|
|
3225
|
+
:param Data: "NetworkNum":网络扫描探测
|
|
3226
|
+
"HandleNum": 待处理事件
|
|
3227
|
+
"BanNum":
|
|
3228
|
+
"VulNum": 漏洞利用
|
|
3229
|
+
"OutNum": 失陷主机
|
|
3230
|
+
"BruteForceNum": 0
|
|
3181
3231
|
:type Data: :class:`tencentcloud.cfw.v20190904.models.TLogInfo`
|
|
3182
3232
|
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3183
3233
|
:type RequestId: str
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|