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 +1 -1
- tencentcloud/csip/v20221121/csip_client.py +46 -0
- tencentcloud/csip/v20221121/models.py +1051 -118
- tencentcloud/ess/v20201111/ess_client.py +2 -2
- tencentcloud/ess/v20201111/models.py +3 -2
- tencentcloud/essbasic/v20210526/essbasic_client.py +6 -2
- tencentcloud/essbasic/v20210526/models.py +3 -2
- tencentcloud/gaap/v20180529/models.py +26 -0
- tencentcloud/ocr/v20181119/models.py +22 -16
- tencentcloud/redis/v20180412/models.py +33 -12
- tencentcloud/redis/v20180412/redis_client.py +2 -2
- tencentcloud/wedata/v20210820/models.py +125 -3
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1170.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1170.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/RECORD +18 -18
- {tencentcloud_sdk_python-3.0.1170.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1170.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1170.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -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
|
|