tencentcloud-sdk-python 3.0.1307__py2.py3-none-any.whl → 3.0.1308__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/bi/v20220105/models.py +122 -0
- tencentcloud/cdwdoris/v20211228/models.py +84 -82
- tencentcloud/cfg/v20210820/models.py +45 -0
- tencentcloud/cwp/v20180228/cwp_client.py +0 -50
- tencentcloud/cwp/v20180228/models.py +0 -717
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +6 -6
- tencentcloud/hunyuan/v20230901/models.py +19 -0
- tencentcloud/lke/v20231130/models.py +1413 -48
- tencentcloud/ocr/v20181119/models.py +352 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/rum/v20210622/models.py +168 -32
- tencentcloud/scf/v20180416/models.py +4 -4
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +5864 -351
- tencentcloud/teo/v20220901/teo_client.py +144 -6
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1308.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1308.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1308.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1308.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1308.dist-info}/top_level.txt +0 -0
@@ -1939,6 +1939,8 @@ class DescribeTaskListRequest(AbstractModel):
|
|
1939
1939
|
:type TaskStatusList: list of int non-negative
|
1940
1940
|
:param _ArchId: 架构ID
|
1941
1941
|
:type ArchId: str
|
1942
|
+
:param _ArchName: 架构名称
|
1943
|
+
:type ArchName: str
|
1942
1944
|
"""
|
1943
1945
|
self._Limit = None
|
1944
1946
|
self._Offset = None
|
@@ -1955,6 +1957,7 @@ class DescribeTaskListRequest(AbstractModel):
|
|
1955
1957
|
self._ApplicationName = None
|
1956
1958
|
self._TaskStatusList = None
|
1957
1959
|
self._ArchId = None
|
1960
|
+
self._ArchName = None
|
1958
1961
|
|
1959
1962
|
@property
|
1960
1963
|
def Limit(self):
|
@@ -2121,6 +2124,17 @@ class DescribeTaskListRequest(AbstractModel):
|
|
2121
2124
|
def ArchId(self, ArchId):
|
2122
2125
|
self._ArchId = ArchId
|
2123
2126
|
|
2127
|
+
@property
|
2128
|
+
def ArchName(self):
|
2129
|
+
"""架构名称
|
2130
|
+
:rtype: str
|
2131
|
+
"""
|
2132
|
+
return self._ArchName
|
2133
|
+
|
2134
|
+
@ArchName.setter
|
2135
|
+
def ArchName(self, ArchName):
|
2136
|
+
self._ArchName = ArchName
|
2137
|
+
|
2124
2138
|
|
2125
2139
|
def _deserialize(self, params):
|
2126
2140
|
self._Limit = params.get("Limit")
|
@@ -2148,6 +2162,7 @@ class DescribeTaskListRequest(AbstractModel):
|
|
2148
2162
|
self._ApplicationName = params.get("ApplicationName")
|
2149
2163
|
self._TaskStatusList = params.get("TaskStatusList")
|
2150
2164
|
self._ArchId = params.get("ArchId")
|
2165
|
+
self._ArchName = params.get("ArchName")
|
2151
2166
|
memeber_set = set(params.keys())
|
2152
2167
|
for name, value in vars(self).items():
|
2153
2168
|
property_name = name[1:]
|
@@ -5709,6 +5724,10 @@ class TaskListItem(AbstractModel):
|
|
5709
5724
|
:param _TaskStatusType: 状态类型: 0 -- 无状态,1 -- 成功,2-- 失败,3--终止
|
5710
5725
|
注意:此字段可能返回 null,表示取不到有效值。
|
5711
5726
|
:type TaskStatusType: int
|
5727
|
+
:param _ArchId: 架构ID
|
5728
|
+
:type ArchId: str
|
5729
|
+
:param _ArchName: 架构名称
|
5730
|
+
:type ArchName: str
|
5712
5731
|
"""
|
5713
5732
|
self._TaskId = None
|
5714
5733
|
self._TaskTitle = None
|
@@ -5724,6 +5743,8 @@ class TaskListItem(AbstractModel):
|
|
5724
5743
|
self._ApplicationName = None
|
5725
5744
|
self._VerifyId = None
|
5726
5745
|
self._TaskStatusType = None
|
5746
|
+
self._ArchId = None
|
5747
|
+
self._ArchName = None
|
5727
5748
|
|
5728
5749
|
@property
|
5729
5750
|
def TaskId(self):
|
@@ -5887,6 +5908,28 @@ class TaskListItem(AbstractModel):
|
|
5887
5908
|
def TaskStatusType(self, TaskStatusType):
|
5888
5909
|
self._TaskStatusType = TaskStatusType
|
5889
5910
|
|
5911
|
+
@property
|
5912
|
+
def ArchId(self):
|
5913
|
+
"""架构ID
|
5914
|
+
:rtype: str
|
5915
|
+
"""
|
5916
|
+
return self._ArchId
|
5917
|
+
|
5918
|
+
@ArchId.setter
|
5919
|
+
def ArchId(self, ArchId):
|
5920
|
+
self._ArchId = ArchId
|
5921
|
+
|
5922
|
+
@property
|
5923
|
+
def ArchName(self):
|
5924
|
+
"""架构名称
|
5925
|
+
:rtype: str
|
5926
|
+
"""
|
5927
|
+
return self._ArchName
|
5928
|
+
|
5929
|
+
@ArchName.setter
|
5930
|
+
def ArchName(self, ArchName):
|
5931
|
+
self._ArchName = ArchName
|
5932
|
+
|
5890
5933
|
|
5891
5934
|
def _deserialize(self, params):
|
5892
5935
|
self._TaskId = params.get("TaskId")
|
@@ -5903,6 +5946,8 @@ class TaskListItem(AbstractModel):
|
|
5903
5946
|
self._ApplicationName = params.get("ApplicationName")
|
5904
5947
|
self._VerifyId = params.get("VerifyId")
|
5905
5948
|
self._TaskStatusType = params.get("TaskStatusType")
|
5949
|
+
self._ArchId = params.get("ArchId")
|
5950
|
+
self._ArchName = params.get("ArchName")
|
5906
5951
|
memeber_set = set(params.keys())
|
5907
5952
|
for name, value in vars(self).items():
|
5908
5953
|
property_name = name[1:]
|
@@ -2837,56 +2837,6 @@ class CwpClient(AbstractClient):
|
|
2837
2837
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2838
2838
|
|
2839
2839
|
|
2840
|
-
def DescribeAttackSource(self, request):
|
2841
|
-
"""已废弃
|
2842
|
-
|
2843
|
-
查询攻击溯源
|
2844
|
-
|
2845
|
-
:param request: Request instance for DescribeAttackSource.
|
2846
|
-
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackSourceRequest`
|
2847
|
-
:rtype: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackSourceResponse`
|
2848
|
-
|
2849
|
-
"""
|
2850
|
-
try:
|
2851
|
-
params = request._serialize()
|
2852
|
-
headers = request.headers
|
2853
|
-
body = self.call("DescribeAttackSource", params, headers=headers)
|
2854
|
-
response = json.loads(body)
|
2855
|
-
model = models.DescribeAttackSourceResponse()
|
2856
|
-
model._deserialize(response["Response"])
|
2857
|
-
return model
|
2858
|
-
except Exception as e:
|
2859
|
-
if isinstance(e, TencentCloudSDKException):
|
2860
|
-
raise
|
2861
|
-
else:
|
2862
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2863
|
-
|
2864
|
-
|
2865
|
-
def DescribeAttackSourceEvents(self, request):
|
2866
|
-
"""已废弃
|
2867
|
-
|
2868
|
-
查询攻击溯源事件
|
2869
|
-
|
2870
|
-
:param request: Request instance for DescribeAttackSourceEvents.
|
2871
|
-
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackSourceEventsRequest`
|
2872
|
-
:rtype: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackSourceEventsResponse`
|
2873
|
-
|
2874
|
-
"""
|
2875
|
-
try:
|
2876
|
-
params = request._serialize()
|
2877
|
-
headers = request.headers
|
2878
|
-
body = self.call("DescribeAttackSourceEvents", params, headers=headers)
|
2879
|
-
response = json.loads(body)
|
2880
|
-
model = models.DescribeAttackSourceEventsResponse()
|
2881
|
-
model._deserialize(response["Response"])
|
2882
|
-
return model
|
2883
|
-
except Exception as e:
|
2884
|
-
if isinstance(e, TencentCloudSDKException):
|
2885
|
-
raise
|
2886
|
-
else:
|
2887
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2888
|
-
|
2889
|
-
|
2890
2840
|
def DescribeAttackStatistics(self, request):
|
2891
2841
|
"""网络攻击数据统计
|
2892
2842
|
|