tencentcloud-sdk-python-cwp 3.0.1212__tar.gz → 3.0.1215__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-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/setup.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud/cwp/v20180228/models.py +38 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cwp-3.0.1215/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cwp-3.0.1212/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/README.rst +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud/cwp/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud/cwp/v20180228/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1212 → tencentcloud-sdk-python-cwp-3.0.1215}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1215"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cwp SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13281,11 +13281,15 @@ class CanFixVulInfo(AbstractModel):
|
|
|
13281
13281
|
:param _FixTag: 修复提示tag
|
|
13282
13282
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13283
13283
|
:type FixTag: list of str
|
|
13284
|
+
:param _VulCategory: 漏洞分类1 web cms漏洞,2应用漏洞,4linux软件漏洞,5windows系统漏洞
|
|
13285
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13286
|
+
:type VulCategory: int
|
|
13284
13287
|
"""
|
|
13285
13288
|
self._VulId = None
|
|
13286
13289
|
self._VulName = None
|
|
13287
13290
|
self._HostList = None
|
|
13288
13291
|
self._FixTag = None
|
|
13292
|
+
self._VulCategory = None
|
|
13289
13293
|
|
|
13290
13294
|
@property
|
|
13291
13295
|
def VulId(self):
|
|
@@ -13319,6 +13323,14 @@ class CanFixVulInfo(AbstractModel):
|
|
|
13319
13323
|
def FixTag(self, FixTag):
|
|
13320
13324
|
self._FixTag = FixTag
|
|
13321
13325
|
|
|
13326
|
+
@property
|
|
13327
|
+
def VulCategory(self):
|
|
13328
|
+
return self._VulCategory
|
|
13329
|
+
|
|
13330
|
+
@VulCategory.setter
|
|
13331
|
+
def VulCategory(self, VulCategory):
|
|
13332
|
+
self._VulCategory = VulCategory
|
|
13333
|
+
|
|
13322
13334
|
|
|
13323
13335
|
def _deserialize(self, params):
|
|
13324
13336
|
self._VulId = params.get("VulId")
|
|
@@ -13330,6 +13342,7 @@ class CanFixVulInfo(AbstractModel):
|
|
|
13330
13342
|
obj._deserialize(item)
|
|
13331
13343
|
self._HostList.append(obj)
|
|
13332
13344
|
self._FixTag = params.get("FixTag")
|
|
13345
|
+
self._VulCategory = params.get("VulCategory")
|
|
13333
13346
|
memeber_set = set(params.keys())
|
|
13334
13347
|
for name, value in vars(self).items():
|
|
13335
13348
|
property_name = name[1:]
|
|
@@ -16281,9 +16294,12 @@ class CreateVulFixTaskQuuids(AbstractModel):
|
|
|
16281
16294
|
:type VulId: int
|
|
16282
16295
|
:param _Quuids: 需要修复漏洞的主机,所有主机必须有VulId的这个漏洞且是待修复状态。
|
|
16283
16296
|
:type Quuids: list of str
|
|
16297
|
+
:param _FixMethod: 修复方式 0组件更新或者安装补丁,1禁用服务
|
|
16298
|
+
:type FixMethod: int
|
|
16284
16299
|
"""
|
|
16285
16300
|
self._VulId = None
|
|
16286
16301
|
self._Quuids = None
|
|
16302
|
+
self._FixMethod = None
|
|
16287
16303
|
|
|
16288
16304
|
@property
|
|
16289
16305
|
def VulId(self):
|
|
@@ -16301,10 +16317,19 @@ class CreateVulFixTaskQuuids(AbstractModel):
|
|
|
16301
16317
|
def Quuids(self, Quuids):
|
|
16302
16318
|
self._Quuids = Quuids
|
|
16303
16319
|
|
|
16320
|
+
@property
|
|
16321
|
+
def FixMethod(self):
|
|
16322
|
+
return self._FixMethod
|
|
16323
|
+
|
|
16324
|
+
@FixMethod.setter
|
|
16325
|
+
def FixMethod(self, FixMethod):
|
|
16326
|
+
self._FixMethod = FixMethod
|
|
16327
|
+
|
|
16304
16328
|
|
|
16305
16329
|
def _deserialize(self, params):
|
|
16306
16330
|
self._VulId = params.get("VulId")
|
|
16307
16331
|
self._Quuids = params.get("Quuids")
|
|
16332
|
+
self._FixMethod = params.get("FixMethod")
|
|
16308
16333
|
memeber_set = set(params.keys())
|
|
16309
16334
|
for name, value in vars(self).items():
|
|
16310
16335
|
property_name = name[1:]
|
|
@@ -88205,6 +88230,9 @@ class VulFixStatusInfo(AbstractModel):
|
|
|
88205
88230
|
:param _FixSuccessCnt: 修复成功的数量
|
|
88206
88231
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
88207
88232
|
:type FixSuccessCnt: int
|
|
88233
|
+
:param _FixMethod: 修复方式 0组件更新或者安装补丁,1禁用服务
|
|
88234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
88235
|
+
:type FixMethod: int
|
|
88208
88236
|
"""
|
|
88209
88237
|
self._VulId = None
|
|
88210
88238
|
self._VulName = None
|
|
@@ -88212,6 +88240,7 @@ class VulFixStatusInfo(AbstractModel):
|
|
|
88212
88240
|
self._HostList = None
|
|
88213
88241
|
self._FailCnt = None
|
|
88214
88242
|
self._FixSuccessCnt = None
|
|
88243
|
+
self._FixMethod = None
|
|
88215
88244
|
|
|
88216
88245
|
@property
|
|
88217
88246
|
def VulId(self):
|
|
@@ -88261,6 +88290,14 @@ class VulFixStatusInfo(AbstractModel):
|
|
|
88261
88290
|
def FixSuccessCnt(self, FixSuccessCnt):
|
|
88262
88291
|
self._FixSuccessCnt = FixSuccessCnt
|
|
88263
88292
|
|
|
88293
|
+
@property
|
|
88294
|
+
def FixMethod(self):
|
|
88295
|
+
return self._FixMethod
|
|
88296
|
+
|
|
88297
|
+
@FixMethod.setter
|
|
88298
|
+
def FixMethod(self, FixMethod):
|
|
88299
|
+
self._FixMethod = FixMethod
|
|
88300
|
+
|
|
88264
88301
|
|
|
88265
88302
|
def _deserialize(self, params):
|
|
88266
88303
|
self._VulId = params.get("VulId")
|
|
@@ -88274,6 +88311,7 @@ class VulFixStatusInfo(AbstractModel):
|
|
|
88274
88311
|
self._HostList.append(obj)
|
|
88275
88312
|
self._FailCnt = params.get("FailCnt")
|
|
88276
88313
|
self._FixSuccessCnt = params.get("FixSuccessCnt")
|
|
88314
|
+
self._FixMethod = params.get("FixMethod")
|
|
88277
88315
|
memeber_set = set(params.keys())
|
|
88278
88316
|
for name, value in vars(self).items():
|
|
88279
88317
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1215
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1212
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|