tencentcloud-sdk-python-csip 3.0.1408__py2.py3-none-any.whl → 3.0.1413__py2.py3-none-any.whl

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/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1408'
17
+ __version__ = '3.0.1413'
@@ -164,6 +164,29 @@ class CsipClient(AbstractClient):
164
164
  raise TencentCloudSDKException(type(e).__name__, str(e))
165
165
 
166
166
 
167
+ def DescribeAssetProcessList(self, request):
168
+ """查询云边界分析-暴露路径下主机节点的进程列表
169
+
170
+ :param request: Request instance for DescribeAssetProcessList.
171
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeAssetProcessListRequest`
172
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeAssetProcessListResponse`
173
+
174
+ """
175
+ try:
176
+ params = request._serialize()
177
+ headers = request.headers
178
+ body = self.call("DescribeAssetProcessList", params, headers=headers)
179
+ response = json.loads(body)
180
+ model = models.DescribeAssetProcessListResponse()
181
+ model._deserialize(response["Response"])
182
+ return model
183
+ except Exception as e:
184
+ if isinstance(e, TencentCloudSDKException):
185
+ raise
186
+ else:
187
+ raise TencentCloudSDKException(type(e).__name__, str(e))
188
+
189
+
167
190
  def DescribeAssetRiskList(self, request):
168
191
  """资产视角下云资源配置风险列表
169
192
 
@@ -441,7 +464,7 @@ class CsipClient(AbstractClient):
441
464
 
442
465
 
443
466
  def DescribeExposeAssetCategory(self, request):
444
- """暴露面资产分类
467
+ """云边界分析资产分类
445
468
 
446
469
  :param request: Request instance for DescribeExposeAssetCategory.
447
470
  :type request: :class:`tencentcloud.csip.v20221121.models.DescribeExposeAssetCategoryRequest`
@@ -464,7 +487,7 @@ class CsipClient(AbstractClient):
464
487
 
465
488
 
466
489
  def DescribeExposePath(self, request):
467
- """查询互联网暴露节点
490
+ """查询云边界分析路径节点
468
491
 
469
492
  :param request: Request instance for DescribeExposePath.
470
493
  :type request: :class:`tencentcloud.csip.v20221121.models.DescribeExposePathRequest`
@@ -487,7 +510,7 @@ class CsipClient(AbstractClient):
487
510
 
488
511
 
489
512
  def DescribeExposures(self, request):
490
- """互联网暴露资产列表
513
+ """云边界分析资产列表
491
514
 
492
515
  :param request: Request instance for DescribeExposures.
493
516
  :type request: :class:`tencentcloud.csip.v20221121.models.DescribeExposuresRequest`
@@ -532,6 +555,29 @@ class CsipClient(AbstractClient):
532
555
  raise TencentCloudSDKException(type(e).__name__, str(e))
533
556
 
534
557
 
558
+ def DescribeHighBaseLineRiskList(self, request):
559
+ """查询云边界分析-暴露路径下主机节点的高危基线风险列表
560
+
561
+ :param request: Request instance for DescribeHighBaseLineRiskList.
562
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeHighBaseLineRiskListRequest`
563
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeHighBaseLineRiskListResponse`
564
+
565
+ """
566
+ try:
567
+ params = request._serialize()
568
+ headers = request.headers
569
+ body = self.call("DescribeHighBaseLineRiskList", params, headers=headers)
570
+ response = json.loads(body)
571
+ model = models.DescribeHighBaseLineRiskListResponse()
572
+ model._deserialize(response["Response"])
573
+ return model
574
+ except Exception as e:
575
+ if isinstance(e, TencentCloudSDKException):
576
+ raise
577
+ else:
578
+ raise TencentCloudSDKException(type(e).__name__, str(e))
579
+
580
+
535
581
  def DescribeListenerList(self, request):
536
582
  """查询clb监听器列表
537
583
 
@@ -993,7 +1039,7 @@ class CsipClient(AbstractClient):
993
1039
 
994
1040
 
995
1041
  def DescribeScanStatistic(self, request):
996
- """查询互联网暴露扫描结果统计信息
1042
+ """查询云边界分析扫描结果统计信息
997
1043
 
998
1044
  :param request: Request instance for DescribeScanStatistic.
999
1045
  :type request: :class:`tencentcloud.csip.v20221121.models.DescribeScanStatisticRequest`
@@ -1291,6 +1337,29 @@ class CsipClient(AbstractClient):
1291
1337
  raise TencentCloudSDKException(type(e).__name__, str(e))
1292
1338
 
1293
1339
 
1340
+ def DescribeVulRiskList(self, request):
1341
+ """查询云边界分析-暴露路径下主机节点的漏洞列表
1342
+
1343
+ :param request: Request instance for DescribeVulRiskList.
1344
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeVulRiskListRequest`
1345
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeVulRiskListResponse`
1346
+
1347
+ """
1348
+ try:
1349
+ params = request._serialize()
1350
+ headers = request.headers
1351
+ body = self.call("DescribeVulRiskList", params, headers=headers)
1352
+ response = json.loads(body)
1353
+ model = models.DescribeVulRiskListResponse()
1354
+ model._deserialize(response["Response"])
1355
+ return model
1356
+ except Exception as e:
1357
+ if isinstance(e, TencentCloudSDKException):
1358
+ raise
1359
+ else:
1360
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1361
+
1362
+
1294
1363
  def DescribeVulViewVulRiskList(self, request):
1295
1364
  """获取漏洞视角的漏洞风险列表
1296
1365