tencentcloud-sdk-python-cwp 3.0.1187__tar.gz → 3.0.1194__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud/cwp/v20180228/models.py +61 -0
  5. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cwp-3.0.1194/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cwp-3.0.1187/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud/cwp/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud/cwp/v20180228/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
  13. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cwp-3.0.1187 → tencentcloud-sdk-python-cwp-3.0.1194}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cwp
3
- Version: 3.0.1187
3
+ Version: 3.0.1194
4
4
  Summary: Tencent Cloud Cwp SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cwp',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1187"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1194"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cwp SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1187'
17
+ __version__ = '3.0.1194'
@@ -40170,6 +40170,10 @@ class DescribeMalwareTimingScanSettingResponse(AbstractModel):
40170
40170
  :type EnableInspiredEngine: int
40171
40171
  :param _EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
40172
40172
  :type EnableMemShellScan: int
40173
+ :param _ProtectMode: 防护模式 0 标准 1 重保
40174
+ :type ProtectMode: int
40175
+ :param _ProtectFileScope: 查杀范围 0 脚本类之外的恶意文件,1全部恶意文件
40176
+ :type ProtectFileScope: int
40173
40177
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
40174
40178
  :type RequestId: str
40175
40179
  """
@@ -40189,6 +40193,8 @@ class DescribeMalwareTimingScanSettingResponse(AbstractModel):
40189
40193
  self._EngineType = None
40190
40194
  self._EnableInspiredEngine = None
40191
40195
  self._EnableMemShellScan = None
40196
+ self._ProtectMode = None
40197
+ self._ProtectFileScope = None
40192
40198
  self._RequestId = None
40193
40199
 
40194
40200
  @property
@@ -40319,6 +40325,22 @@ class DescribeMalwareTimingScanSettingResponse(AbstractModel):
40319
40325
  def EnableMemShellScan(self, EnableMemShellScan):
40320
40326
  self._EnableMemShellScan = EnableMemShellScan
40321
40327
 
40328
+ @property
40329
+ def ProtectMode(self):
40330
+ return self._ProtectMode
40331
+
40332
+ @ProtectMode.setter
40333
+ def ProtectMode(self, ProtectMode):
40334
+ self._ProtectMode = ProtectMode
40335
+
40336
+ @property
40337
+ def ProtectFileScope(self):
40338
+ return self._ProtectFileScope
40339
+
40340
+ @ProtectFileScope.setter
40341
+ def ProtectFileScope(self, ProtectFileScope):
40342
+ self._ProtectFileScope = ProtectFileScope
40343
+
40322
40344
  @property
40323
40345
  def RequestId(self):
40324
40346
  return self._RequestId
@@ -40345,6 +40367,8 @@ class DescribeMalwareTimingScanSettingResponse(AbstractModel):
40345
40367
  self._EngineType = params.get("EngineType")
40346
40368
  self._EnableInspiredEngine = params.get("EnableInspiredEngine")
40347
40369
  self._EnableMemShellScan = params.get("EnableMemShellScan")
40370
+ self._ProtectMode = params.get("ProtectMode")
40371
+ self._ProtectFileScope = params.get("ProtectFileScope")
40348
40372
  self._RequestId = params.get("RequestId")
40349
40373
 
40350
40374
 
@@ -71254,12 +71278,19 @@ class ModifyMalwareTimingScanSettingsRequest(AbstractModel):
71254
71278
  :type AutoIsolation: int
71255
71279
  :param _KillProcess: 是否杀掉进程 1杀掉 0不杀掉
71256
71280
  :type KillProcess: int
71281
+ :param _DoClean: 1 清理, 0 不清理
71282
+ <li>本操作会修复被篡改的系统命令,计划任务等系统文件,操作中请确保yum/apt 可用</li>
71283
+ :type DoClean: int
71257
71284
  :param _EngineType: 1标准模式(只报严重、高危)、2增强模式(报严重、高危、中危)、3严格模式(报严重、高、中、低、提示)
71258
71285
  :type EngineType: int
71259
71286
  :param _EnableInspiredEngine: 启发引擎开关 0 关闭 1开启
71260
71287
  :type EnableInspiredEngine: int
71261
71288
  :param _EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
71262
71289
  :type EnableMemShellScan: int
71290
+ :param _ProtectMode: 防护模式 0 标准 1重保
71291
+ :type ProtectMode: int
71292
+ :param _ProtectFileScope: 查杀范围 0 脚本类之外的恶意文件,1全部恶意文件
71293
+ :type ProtectFileScope: int
71263
71294
  """
71264
71295
  self._CheckPattern = None
71265
71296
  self._StartTime = None
@@ -71272,9 +71303,12 @@ class ModifyMalwareTimingScanSettingsRequest(AbstractModel):
71272
71303
  self._QuuidList = None
71273
71304
  self._AutoIsolation = None
71274
71305
  self._KillProcess = None
71306
+ self._DoClean = None
71275
71307
  self._EngineType = None
71276
71308
  self._EnableInspiredEngine = None
71277
71309
  self._EnableMemShellScan = None
71310
+ self._ProtectMode = None
71311
+ self._ProtectFileScope = None
71278
71312
 
71279
71313
  @property
71280
71314
  def CheckPattern(self):
@@ -71364,6 +71398,14 @@ class ModifyMalwareTimingScanSettingsRequest(AbstractModel):
71364
71398
  def KillProcess(self, KillProcess):
71365
71399
  self._KillProcess = KillProcess
71366
71400
 
71401
+ @property
71402
+ def DoClean(self):
71403
+ return self._DoClean
71404
+
71405
+ @DoClean.setter
71406
+ def DoClean(self, DoClean):
71407
+ self._DoClean = DoClean
71408
+
71367
71409
  @property
71368
71410
  def EngineType(self):
71369
71411
  return self._EngineType
@@ -71388,6 +71430,22 @@ class ModifyMalwareTimingScanSettingsRequest(AbstractModel):
71388
71430
  def EnableMemShellScan(self, EnableMemShellScan):
71389
71431
  self._EnableMemShellScan = EnableMemShellScan
71390
71432
 
71433
+ @property
71434
+ def ProtectMode(self):
71435
+ return self._ProtectMode
71436
+
71437
+ @ProtectMode.setter
71438
+ def ProtectMode(self, ProtectMode):
71439
+ self._ProtectMode = ProtectMode
71440
+
71441
+ @property
71442
+ def ProtectFileScope(self):
71443
+ return self._ProtectFileScope
71444
+
71445
+ @ProtectFileScope.setter
71446
+ def ProtectFileScope(self, ProtectFileScope):
71447
+ self._ProtectFileScope = ProtectFileScope
71448
+
71391
71449
 
71392
71450
  def _deserialize(self, params):
71393
71451
  self._CheckPattern = params.get("CheckPattern")
@@ -71401,9 +71459,12 @@ class ModifyMalwareTimingScanSettingsRequest(AbstractModel):
71401
71459
  self._QuuidList = params.get("QuuidList")
71402
71460
  self._AutoIsolation = params.get("AutoIsolation")
71403
71461
  self._KillProcess = params.get("KillProcess")
71462
+ self._DoClean = params.get("DoClean")
71404
71463
  self._EngineType = params.get("EngineType")
71405
71464
  self._EnableInspiredEngine = params.get("EnableInspiredEngine")
71406
71465
  self._EnableMemShellScan = params.get("EnableMemShellScan")
71466
+ self._ProtectMode = params.get("ProtectMode")
71467
+ self._ProtectFileScope = params.get("ProtectFileScope")
71407
71468
  memeber_set = set(params.keys())
71408
71469
  for name, value in vars(self).items():
71409
71470
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cwp
3
- Version: 3.0.1187
3
+ Version: 3.0.1194
4
4
  Summary: Tencent Cloud Cwp SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1194
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1187