tencentcloud-sdk-python 3.0.1170__py2.py3-none-any.whl → 3.0.1171__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.1170'
17
+ __version__ = '3.0.1171'
@@ -808,6 +808,29 @@ class CsipClient(AbstractClient):
808
808
  raise TencentCloudSDKException(type(e).__name__, str(e))
809
809
 
810
810
 
811
+ def DescribeVULRiskDetail(self, request):
812
+ """获取漏洞展开详情
813
+
814
+ :param request: Request instance for DescribeVULRiskDetail.
815
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeVULRiskDetailRequest`
816
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeVULRiskDetailResponse`
817
+
818
+ """
819
+ try:
820
+ params = request._serialize()
821
+ headers = request.headers
822
+ body = self.call("DescribeVULRiskDetail", params, headers=headers)
823
+ response = json.loads(body)
824
+ model = models.DescribeVULRiskDetailResponse()
825
+ model._deserialize(response["Response"])
826
+ return model
827
+ except Exception as e:
828
+ if isinstance(e, TencentCloudSDKException):
829
+ raise
830
+ else:
831
+ raise TencentCloudSDKException(type(e).__name__, str(e))
832
+
833
+
811
834
  def DescribeVpcAssets(self, request):
812
835
  """获取vpc列表
813
836
 
@@ -831,6 +854,29 @@ class CsipClient(AbstractClient):
831
854
  raise TencentCloudSDKException(type(e).__name__, str(e))
832
855
 
833
856
 
857
+ def DescribeVulViewVulRiskList(self, request):
858
+ """获取漏洞视角的漏洞风险列表
859
+
860
+ :param request: Request instance for DescribeVulViewVulRiskList.
861
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeVulViewVulRiskListRequest`
862
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeVulViewVulRiskListResponse`
863
+
864
+ """
865
+ try:
866
+ params = request._serialize()
867
+ headers = request.headers
868
+ body = self.call("DescribeVulViewVulRiskList", params, headers=headers)
869
+ response = json.loads(body)
870
+ model = models.DescribeVulViewVulRiskListResponse()
871
+ model._deserialize(response["Response"])
872
+ return model
873
+ except Exception as e:
874
+ if isinstance(e, TencentCloudSDKException):
875
+ raise
876
+ else:
877
+ raise TencentCloudSDKException(type(e).__name__, str(e))
878
+
879
+
834
880
  def ModifyOrganizationAccountStatus(self, request):
835
881
  """修改集团账号状态
836
882