tencentcloud-sdk-python-csip 3.1.157__tar.gz → 3.1.158__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_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/setup.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/csip/v20221121/models.py +237 -46
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_csip-3.1.158/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_csip-3.1.157/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/README.rst +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/setup.cfg +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/csip/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/csip/v20221121/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/csip/v20221121/csip_client.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/csip/v20221121/csip_client_async.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.157 → tencentcloud_sdk_python_csip-3.1.158}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.158
|
|
4
4
|
Summary: Tencent Cloud Csip SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.158
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-csip',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.158,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Csip SDK for Python',
|
|
@@ -99639,6 +99639,204 @@ class UserDspmInfo(AbstractModel):
|
|
|
99639
99639
|
|
|
99640
99640
|
|
|
99641
99641
|
|
|
99642
|
+
class VPRExplainDimension(AbstractModel):
|
|
99643
|
+
r"""VPR解释卡片中的单个维度
|
|
99644
|
+
|
|
99645
|
+
"""
|
|
99646
|
+
|
|
99647
|
+
def __init__(self):
|
|
99648
|
+
r"""
|
|
99649
|
+
:param _Key: <p>标签key</p>
|
|
99650
|
+
:type Key: str
|
|
99651
|
+
:param _Name: <p>标签名称</p>
|
|
99652
|
+
:type Name: str
|
|
99653
|
+
:param _Items: <p>标签子项</p>
|
|
99654
|
+
:type Items: list of VPRExplainDimensionItem
|
|
99655
|
+
"""
|
|
99656
|
+
self._Key = None
|
|
99657
|
+
self._Name = None
|
|
99658
|
+
self._Items = None
|
|
99659
|
+
|
|
99660
|
+
@property
|
|
99661
|
+
def Key(self):
|
|
99662
|
+
r"""<p>标签key</p>
|
|
99663
|
+
:rtype: str
|
|
99664
|
+
"""
|
|
99665
|
+
return self._Key
|
|
99666
|
+
|
|
99667
|
+
@Key.setter
|
|
99668
|
+
def Key(self, Key):
|
|
99669
|
+
self._Key = Key
|
|
99670
|
+
|
|
99671
|
+
@property
|
|
99672
|
+
def Name(self):
|
|
99673
|
+
r"""<p>标签名称</p>
|
|
99674
|
+
:rtype: str
|
|
99675
|
+
"""
|
|
99676
|
+
return self._Name
|
|
99677
|
+
|
|
99678
|
+
@Name.setter
|
|
99679
|
+
def Name(self, Name):
|
|
99680
|
+
self._Name = Name
|
|
99681
|
+
|
|
99682
|
+
@property
|
|
99683
|
+
def Items(self):
|
|
99684
|
+
r"""<p>标签子项</p>
|
|
99685
|
+
:rtype: list of VPRExplainDimensionItem
|
|
99686
|
+
"""
|
|
99687
|
+
return self._Items
|
|
99688
|
+
|
|
99689
|
+
@Items.setter
|
|
99690
|
+
def Items(self, Items):
|
|
99691
|
+
self._Items = Items
|
|
99692
|
+
|
|
99693
|
+
|
|
99694
|
+
def _deserialize(self, params):
|
|
99695
|
+
self._Key = params.get("Key")
|
|
99696
|
+
self._Name = params.get("Name")
|
|
99697
|
+
if params.get("Items") is not None:
|
|
99698
|
+
self._Items = []
|
|
99699
|
+
for item in params.get("Items"):
|
|
99700
|
+
obj = VPRExplainDimensionItem()
|
|
99701
|
+
obj._deserialize(item)
|
|
99702
|
+
self._Items.append(obj)
|
|
99703
|
+
memeber_set = set(params.keys())
|
|
99704
|
+
for name, value in vars(self).items():
|
|
99705
|
+
property_name = name[1:]
|
|
99706
|
+
if property_name in memeber_set:
|
|
99707
|
+
memeber_set.remove(property_name)
|
|
99708
|
+
if len(memeber_set) > 0:
|
|
99709
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
99710
|
+
|
|
99711
|
+
|
|
99712
|
+
|
|
99713
|
+
class VPRExplainDimensionItem(AbstractModel):
|
|
99714
|
+
r"""VPR解释卡片中的单个标签项
|
|
99715
|
+
|
|
99716
|
+
"""
|
|
99717
|
+
|
|
99718
|
+
def __init__(self):
|
|
99719
|
+
r"""
|
|
99720
|
+
:param _Key: <p>标签</p>
|
|
99721
|
+
:type Key: str
|
|
99722
|
+
:param _Name: <p>标签名称</p>
|
|
99723
|
+
:type Name: str
|
|
99724
|
+
:param _Remark: <p>标签描述</p>
|
|
99725
|
+
:type Remark: str
|
|
99726
|
+
"""
|
|
99727
|
+
self._Key = None
|
|
99728
|
+
self._Name = None
|
|
99729
|
+
self._Remark = None
|
|
99730
|
+
|
|
99731
|
+
@property
|
|
99732
|
+
def Key(self):
|
|
99733
|
+
r"""<p>标签</p>
|
|
99734
|
+
:rtype: str
|
|
99735
|
+
"""
|
|
99736
|
+
return self._Key
|
|
99737
|
+
|
|
99738
|
+
@Key.setter
|
|
99739
|
+
def Key(self, Key):
|
|
99740
|
+
self._Key = Key
|
|
99741
|
+
|
|
99742
|
+
@property
|
|
99743
|
+
def Name(self):
|
|
99744
|
+
r"""<p>标签名称</p>
|
|
99745
|
+
:rtype: str
|
|
99746
|
+
"""
|
|
99747
|
+
return self._Name
|
|
99748
|
+
|
|
99749
|
+
@Name.setter
|
|
99750
|
+
def Name(self, Name):
|
|
99751
|
+
self._Name = Name
|
|
99752
|
+
|
|
99753
|
+
@property
|
|
99754
|
+
def Remark(self):
|
|
99755
|
+
r"""<p>标签描述</p>
|
|
99756
|
+
:rtype: str
|
|
99757
|
+
"""
|
|
99758
|
+
return self._Remark
|
|
99759
|
+
|
|
99760
|
+
@Remark.setter
|
|
99761
|
+
def Remark(self, Remark):
|
|
99762
|
+
self._Remark = Remark
|
|
99763
|
+
|
|
99764
|
+
|
|
99765
|
+
def _deserialize(self, params):
|
|
99766
|
+
self._Key = params.get("Key")
|
|
99767
|
+
self._Name = params.get("Name")
|
|
99768
|
+
self._Remark = params.get("Remark")
|
|
99769
|
+
memeber_set = set(params.keys())
|
|
99770
|
+
for name, value in vars(self).items():
|
|
99771
|
+
property_name = name[1:]
|
|
99772
|
+
if property_name in memeber_set:
|
|
99773
|
+
memeber_set.remove(property_name)
|
|
99774
|
+
if len(memeber_set) > 0:
|
|
99775
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
99776
|
+
|
|
99777
|
+
|
|
99778
|
+
|
|
99779
|
+
class VPRExplainInfo(AbstractModel):
|
|
99780
|
+
r"""VPR评级解释卡片
|
|
99781
|
+
|
|
99782
|
+
"""
|
|
99783
|
+
|
|
99784
|
+
def __init__(self):
|
|
99785
|
+
r"""
|
|
99786
|
+
:param _VulIntel: <p>漏洞情报</p>
|
|
99787
|
+
:type VulIntel: list of VPRExplainDimension
|
|
99788
|
+
:param _AssetContext: <p>资产上下文</p>
|
|
99789
|
+
:type AssetContext: list of VPRExplainDimension
|
|
99790
|
+
"""
|
|
99791
|
+
self._VulIntel = None
|
|
99792
|
+
self._AssetContext = None
|
|
99793
|
+
|
|
99794
|
+
@property
|
|
99795
|
+
def VulIntel(self):
|
|
99796
|
+
r"""<p>漏洞情报</p>
|
|
99797
|
+
:rtype: list of VPRExplainDimension
|
|
99798
|
+
"""
|
|
99799
|
+
return self._VulIntel
|
|
99800
|
+
|
|
99801
|
+
@VulIntel.setter
|
|
99802
|
+
def VulIntel(self, VulIntel):
|
|
99803
|
+
self._VulIntel = VulIntel
|
|
99804
|
+
|
|
99805
|
+
@property
|
|
99806
|
+
def AssetContext(self):
|
|
99807
|
+
r"""<p>资产上下文</p>
|
|
99808
|
+
:rtype: list of VPRExplainDimension
|
|
99809
|
+
"""
|
|
99810
|
+
return self._AssetContext
|
|
99811
|
+
|
|
99812
|
+
@AssetContext.setter
|
|
99813
|
+
def AssetContext(self, AssetContext):
|
|
99814
|
+
self._AssetContext = AssetContext
|
|
99815
|
+
|
|
99816
|
+
|
|
99817
|
+
def _deserialize(self, params):
|
|
99818
|
+
if params.get("VulIntel") is not None:
|
|
99819
|
+
self._VulIntel = []
|
|
99820
|
+
for item in params.get("VulIntel"):
|
|
99821
|
+
obj = VPRExplainDimension()
|
|
99822
|
+
obj._deserialize(item)
|
|
99823
|
+
self._VulIntel.append(obj)
|
|
99824
|
+
if params.get("AssetContext") is not None:
|
|
99825
|
+
self._AssetContext = []
|
|
99826
|
+
for item in params.get("AssetContext"):
|
|
99827
|
+
obj = VPRExplainDimension()
|
|
99828
|
+
obj._deserialize(item)
|
|
99829
|
+
self._AssetContext.append(obj)
|
|
99830
|
+
memeber_set = set(params.keys())
|
|
99831
|
+
for name, value in vars(self).items():
|
|
99832
|
+
property_name = name[1:]
|
|
99833
|
+
if property_name in memeber_set:
|
|
99834
|
+
memeber_set.remove(property_name)
|
|
99835
|
+
if len(memeber_set) > 0:
|
|
99836
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
99837
|
+
|
|
99838
|
+
|
|
99839
|
+
|
|
99642
99840
|
class VPRLabel(AbstractModel):
|
|
99643
99841
|
r"""漏洞VPR标签
|
|
99644
99842
|
|
|
@@ -104277,40 +104475,30 @@ class VulFixedItem(AbstractModel):
|
|
|
104277
104475
|
|
|
104278
104476
|
def __init__(self):
|
|
104279
104477
|
r"""
|
|
104280
|
-
:param _VulId:
|
|
104478
|
+
:param _VulId: <p>漏洞ID</p>
|
|
104281
104479
|
:type VulId: int
|
|
104282
|
-
:param _VulName:
|
|
104480
|
+
:param _VulName: <p>漏洞名称</p>
|
|
104283
104481
|
:type VulName: str
|
|
104284
|
-
:param _Level:
|
|
104285
|
-
枚举值:
|
|
104286
|
-
LOW:低危
|
|
104287
|
-
MEDIUM:中危
|
|
104288
|
-
HIGH:高危
|
|
104289
|
-
CRITICAL:严重
|
|
104482
|
+
:param _Level: <p>漏洞等级<br>枚举值:<br>LOW:低危<br>MEDIUM:中危<br>HIGH:高危<br>CRITICAL:严重</p>
|
|
104290
104483
|
:type Level: str
|
|
104291
|
-
:param _VRPRatingInfo: VPR 评级信息(包含评级结果、说明和分阶段评分),与 DescribeHostVulRiskList
|
|
104484
|
+
:param _VRPRatingInfo: <p>VPR 评级信息(包含评级结果、说明和分阶段评分),与 DescribeHostVulRiskList 一致</p>
|
|
104292
104485
|
:type VRPRatingInfo: :class:`tencentcloud.csip.v20221121.models.VPRRatingInfo`
|
|
104293
|
-
:param _VulCategory:
|
|
104294
|
-
枚举值:
|
|
104295
|
-
LINUX:Linux软件漏洞
|
|
104296
|
-
WINDOWS:Windows系统补丁漏洞
|
|
104297
|
-
WEB_CMS:Web-CMS漏洞
|
|
104298
|
-
APPLICATION:应用漏洞
|
|
104299
|
-
EMERGENCY:应急漏洞
|
|
104486
|
+
:param _VulCategory: <p>漏洞类型<br>枚举值:<br>LINUX:Linux软件漏洞<br>WINDOWS:Windows系统补丁漏洞<br>WEB_CMS:Web-CMS漏洞<br>APPLICATION:应用漏洞<br>EMERGENCY:应急漏洞</p>
|
|
104300
104487
|
:type VulCategory: str
|
|
104301
|
-
:param _CveId: CVE
|
|
104488
|
+
:param _CveId: <p>CVE编号</p>
|
|
104302
104489
|
:type CveId: str
|
|
104303
|
-
:param _MachineName:
|
|
104490
|
+
:param _MachineName: <p>修复主机名称</p>
|
|
104304
104491
|
:type MachineName: str
|
|
104305
|
-
:param _InstanceId:
|
|
104492
|
+
:param _InstanceId: <p>修复主机实例ID</p>
|
|
104306
104493
|
:type InstanceId: str
|
|
104307
|
-
:param _ComponentCount:
|
|
104494
|
+
:param _ComponentCount: <p>关联组件&路径数量</p>
|
|
104308
104495
|
:type ComponentCount: int
|
|
104309
|
-
:param _Components:
|
|
104496
|
+
:param _Components: <p>关联组件&路径列表</p>
|
|
104310
104497
|
:type Components: list of str
|
|
104311
|
-
:param _LatestFixTime:
|
|
104312
|
-
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
104498
|
+
:param _LatestFixTime: <p>最近一次修复时间<br>参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)</p>
|
|
104313
104499
|
:type LatestFixTime: str
|
|
104500
|
+
:param _VPRExplainInfo: <p>VPR评级依据</p>
|
|
104501
|
+
:type VPRExplainInfo: :class:`tencentcloud.csip.v20221121.models.VPRExplainInfo`
|
|
104314
104502
|
"""
|
|
104315
104503
|
self._VulId = None
|
|
104316
104504
|
self._VulName = None
|
|
@@ -104323,10 +104511,11 @@ EMERGENCY:应急漏洞
|
|
|
104323
104511
|
self._ComponentCount = None
|
|
104324
104512
|
self._Components = None
|
|
104325
104513
|
self._LatestFixTime = None
|
|
104514
|
+
self._VPRExplainInfo = None
|
|
104326
104515
|
|
|
104327
104516
|
@property
|
|
104328
104517
|
def VulId(self):
|
|
104329
|
-
r"""
|
|
104518
|
+
r"""<p>漏洞ID</p>
|
|
104330
104519
|
:rtype: int
|
|
104331
104520
|
"""
|
|
104332
104521
|
return self._VulId
|
|
@@ -104337,7 +104526,7 @@ EMERGENCY:应急漏洞
|
|
|
104337
104526
|
|
|
104338
104527
|
@property
|
|
104339
104528
|
def VulName(self):
|
|
104340
|
-
r"""
|
|
104529
|
+
r"""<p>漏洞名称</p>
|
|
104341
104530
|
:rtype: str
|
|
104342
104531
|
"""
|
|
104343
104532
|
return self._VulName
|
|
@@ -104348,12 +104537,7 @@ EMERGENCY:应急漏洞
|
|
|
104348
104537
|
|
|
104349
104538
|
@property
|
|
104350
104539
|
def Level(self):
|
|
104351
|
-
r"""
|
|
104352
|
-
枚举值:
|
|
104353
|
-
LOW:低危
|
|
104354
|
-
MEDIUM:中危
|
|
104355
|
-
HIGH:高危
|
|
104356
|
-
CRITICAL:严重
|
|
104540
|
+
r"""<p>漏洞等级<br>枚举值:<br>LOW:低危<br>MEDIUM:中危<br>HIGH:高危<br>CRITICAL:严重</p>
|
|
104357
104541
|
:rtype: str
|
|
104358
104542
|
"""
|
|
104359
104543
|
return self._Level
|
|
@@ -104364,7 +104548,7 @@ CRITICAL:严重
|
|
|
104364
104548
|
|
|
104365
104549
|
@property
|
|
104366
104550
|
def VRPRatingInfo(self):
|
|
104367
|
-
r"""VPR 评级信息(包含评级结果、说明和分阶段评分),与 DescribeHostVulRiskList
|
|
104551
|
+
r"""<p>VPR 评级信息(包含评级结果、说明和分阶段评分),与 DescribeHostVulRiskList 一致</p>
|
|
104368
104552
|
:rtype: :class:`tencentcloud.csip.v20221121.models.VPRRatingInfo`
|
|
104369
104553
|
"""
|
|
104370
104554
|
return self._VRPRatingInfo
|
|
@@ -104375,13 +104559,7 @@ CRITICAL:严重
|
|
|
104375
104559
|
|
|
104376
104560
|
@property
|
|
104377
104561
|
def VulCategory(self):
|
|
104378
|
-
r"""
|
|
104379
|
-
枚举值:
|
|
104380
|
-
LINUX:Linux软件漏洞
|
|
104381
|
-
WINDOWS:Windows系统补丁漏洞
|
|
104382
|
-
WEB_CMS:Web-CMS漏洞
|
|
104383
|
-
APPLICATION:应用漏洞
|
|
104384
|
-
EMERGENCY:应急漏洞
|
|
104562
|
+
r"""<p>漏洞类型<br>枚举值:<br>LINUX:Linux软件漏洞<br>WINDOWS:Windows系统补丁漏洞<br>WEB_CMS:Web-CMS漏洞<br>APPLICATION:应用漏洞<br>EMERGENCY:应急漏洞</p>
|
|
104385
104563
|
:rtype: str
|
|
104386
104564
|
"""
|
|
104387
104565
|
return self._VulCategory
|
|
@@ -104392,7 +104570,7 @@ EMERGENCY:应急漏洞
|
|
|
104392
104570
|
|
|
104393
104571
|
@property
|
|
104394
104572
|
def CveId(self):
|
|
104395
|
-
r"""CVE
|
|
104573
|
+
r"""<p>CVE编号</p>
|
|
104396
104574
|
:rtype: str
|
|
104397
104575
|
"""
|
|
104398
104576
|
return self._CveId
|
|
@@ -104403,7 +104581,7 @@ EMERGENCY:应急漏洞
|
|
|
104403
104581
|
|
|
104404
104582
|
@property
|
|
104405
104583
|
def MachineName(self):
|
|
104406
|
-
r"""
|
|
104584
|
+
r"""<p>修复主机名称</p>
|
|
104407
104585
|
:rtype: str
|
|
104408
104586
|
"""
|
|
104409
104587
|
return self._MachineName
|
|
@@ -104414,7 +104592,7 @@ EMERGENCY:应急漏洞
|
|
|
104414
104592
|
|
|
104415
104593
|
@property
|
|
104416
104594
|
def InstanceId(self):
|
|
104417
|
-
r"""
|
|
104595
|
+
r"""<p>修复主机实例ID</p>
|
|
104418
104596
|
:rtype: str
|
|
104419
104597
|
"""
|
|
104420
104598
|
return self._InstanceId
|
|
@@ -104425,7 +104603,7 @@ EMERGENCY:应急漏洞
|
|
|
104425
104603
|
|
|
104426
104604
|
@property
|
|
104427
104605
|
def ComponentCount(self):
|
|
104428
|
-
r"""
|
|
104606
|
+
r"""<p>关联组件&路径数量</p>
|
|
104429
104607
|
:rtype: int
|
|
104430
104608
|
"""
|
|
104431
104609
|
return self._ComponentCount
|
|
@@ -104436,7 +104614,7 @@ EMERGENCY:应急漏洞
|
|
|
104436
104614
|
|
|
104437
104615
|
@property
|
|
104438
104616
|
def Components(self):
|
|
104439
|
-
r"""
|
|
104617
|
+
r"""<p>关联组件&路径列表</p>
|
|
104440
104618
|
:rtype: list of str
|
|
104441
104619
|
"""
|
|
104442
104620
|
return self._Components
|
|
@@ -104447,8 +104625,7 @@ EMERGENCY:应急漏洞
|
|
|
104447
104625
|
|
|
104448
104626
|
@property
|
|
104449
104627
|
def LatestFixTime(self):
|
|
104450
|
-
r"""
|
|
104451
|
-
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
104628
|
+
r"""<p>最近一次修复时间<br>参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)</p>
|
|
104452
104629
|
:rtype: str
|
|
104453
104630
|
"""
|
|
104454
104631
|
return self._LatestFixTime
|
|
@@ -104457,6 +104634,17 @@ EMERGENCY:应急漏洞
|
|
|
104457
104634
|
def LatestFixTime(self, LatestFixTime):
|
|
104458
104635
|
self._LatestFixTime = LatestFixTime
|
|
104459
104636
|
|
|
104637
|
+
@property
|
|
104638
|
+
def VPRExplainInfo(self):
|
|
104639
|
+
r"""<p>VPR评级依据</p>
|
|
104640
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.VPRExplainInfo`
|
|
104641
|
+
"""
|
|
104642
|
+
return self._VPRExplainInfo
|
|
104643
|
+
|
|
104644
|
+
@VPRExplainInfo.setter
|
|
104645
|
+
def VPRExplainInfo(self, VPRExplainInfo):
|
|
104646
|
+
self._VPRExplainInfo = VPRExplainInfo
|
|
104647
|
+
|
|
104460
104648
|
|
|
104461
104649
|
def _deserialize(self, params):
|
|
104462
104650
|
self._VulId = params.get("VulId")
|
|
@@ -104472,6 +104660,9 @@ EMERGENCY:应急漏洞
|
|
|
104472
104660
|
self._ComponentCount = params.get("ComponentCount")
|
|
104473
104661
|
self._Components = params.get("Components")
|
|
104474
104662
|
self._LatestFixTime = params.get("LatestFixTime")
|
|
104663
|
+
if params.get("VPRExplainInfo") is not None:
|
|
104664
|
+
self._VPRExplainInfo = VPRExplainInfo()
|
|
104665
|
+
self._VPRExplainInfo._deserialize(params.get("VPRExplainInfo"))
|
|
104475
104666
|
memeber_set = set(params.keys())
|
|
104476
104667
|
for name, value in vars(self).items():
|
|
104477
104668
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.158
|
|
4
4
|
Summary: Tencent Cloud Csip SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.158
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.158
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.157
|
|
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
|