tencentcloud-sdk-python 3.0.1153__py2.py3-none-any.whl → 3.0.1155__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/asr/v20190614/models.py +1 -1
- tencentcloud/cat/v20180409/cat_client.py +1 -0
- tencentcloud/cat/v20180409/models.py +1 -2
- tencentcloud/cdwdoris/v20211228/models.py +12 -0
- tencentcloud/cynosdb/v20190107/models.py +201 -59
- tencentcloud/dasb/v20191018/dasb_client.py +138 -0
- tencentcloud/dasb/v20191018/models.py +1446 -38
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +47 -1
- tencentcloud/dbbrain/v20210527/models.py +338 -2
- tencentcloud/dlc/v20210125/dlc_client.py +69 -0
- tencentcloud/dlc/v20210125/models.py +266 -0
- tencentcloud/dsgc/v20190723/models.py +13 -0
- tencentcloud/ess/v20201111/ess_client.py +53 -0
- tencentcloud/ess/v20201111/models.py +234 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -2
- tencentcloud/essbasic/v20210526/models.py +13 -1
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +1 -0
- tencentcloud/hunyuan/v20230901/models.py +1 -1
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +138 -0
- tencentcloud/iotexplorer/v20190423/models.py +934 -38
- tencentcloud/monitor/v20180724/models.py +36 -0
- tencentcloud/mps/v20190612/models.py +99 -0
- tencentcloud/svp/v20240125/errorcodes.py +3 -0
- tencentcloud/svp/v20240125/models.py +1023 -1
- tencentcloud/svp/v20240125/svp_client.py +69 -0
- tencentcloud/tdmq/v20200217/models.py +1 -5
- tencentcloud/tione/v20211111/models.py +13 -0
- {tencentcloud_sdk_python-3.0.1153.dist-info → tencentcloud_sdk_python-3.0.1155.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1153.dist-info → tencentcloud_sdk_python-3.0.1155.dist-info}/RECORD +33 -33
- {tencentcloud_sdk_python-3.0.1153.dist-info → tencentcloud_sdk_python-3.0.1155.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1153.dist-info → tencentcloud_sdk_python-3.0.1155.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1153.dist-info → tencentcloud_sdk_python-3.0.1155.dist-info}/top_level.txt +0 -0
@@ -16431,10 +16431,19 @@ class DescribePrometheusClusterAgentsRequest(AbstractModel):
|
|
16431
16431
|
:type Offset: int
|
16432
16432
|
:param _Limit: 用于分页
|
16433
16433
|
:type Limit: int
|
16434
|
+
:param _ClusterIds: 用于通过集群id过滤被绑定集群
|
16435
|
+
:type ClusterIds: list of str
|
16436
|
+
:param _ClusterTypes: 用于通过集群类型过滤被绑定集群
|
16437
|
+
:type ClusterTypes: list of str
|
16438
|
+
:param _ClusterName: 用于通过名称搜索被绑定集群
|
16439
|
+
:type ClusterName: str
|
16434
16440
|
"""
|
16435
16441
|
self._InstanceId = None
|
16436
16442
|
self._Offset = None
|
16437
16443
|
self._Limit = None
|
16444
|
+
self._ClusterIds = None
|
16445
|
+
self._ClusterTypes = None
|
16446
|
+
self._ClusterName = None
|
16438
16447
|
|
16439
16448
|
@property
|
16440
16449
|
def InstanceId(self):
|
@@ -16460,11 +16469,38 @@ class DescribePrometheusClusterAgentsRequest(AbstractModel):
|
|
16460
16469
|
def Limit(self, Limit):
|
16461
16470
|
self._Limit = Limit
|
16462
16471
|
|
16472
|
+
@property
|
16473
|
+
def ClusterIds(self):
|
16474
|
+
return self._ClusterIds
|
16475
|
+
|
16476
|
+
@ClusterIds.setter
|
16477
|
+
def ClusterIds(self, ClusterIds):
|
16478
|
+
self._ClusterIds = ClusterIds
|
16479
|
+
|
16480
|
+
@property
|
16481
|
+
def ClusterTypes(self):
|
16482
|
+
return self._ClusterTypes
|
16483
|
+
|
16484
|
+
@ClusterTypes.setter
|
16485
|
+
def ClusterTypes(self, ClusterTypes):
|
16486
|
+
self._ClusterTypes = ClusterTypes
|
16487
|
+
|
16488
|
+
@property
|
16489
|
+
def ClusterName(self):
|
16490
|
+
return self._ClusterName
|
16491
|
+
|
16492
|
+
@ClusterName.setter
|
16493
|
+
def ClusterName(self, ClusterName):
|
16494
|
+
self._ClusterName = ClusterName
|
16495
|
+
|
16463
16496
|
|
16464
16497
|
def _deserialize(self, params):
|
16465
16498
|
self._InstanceId = params.get("InstanceId")
|
16466
16499
|
self._Offset = params.get("Offset")
|
16467
16500
|
self._Limit = params.get("Limit")
|
16501
|
+
self._ClusterIds = params.get("ClusterIds")
|
16502
|
+
self._ClusterTypes = params.get("ClusterTypes")
|
16503
|
+
self._ClusterName = params.get("ClusterName")
|
16468
16504
|
memeber_set = set(params.keys())
|
16469
16505
|
for name, value in vars(self).items():
|
16470
16506
|
property_name = name[1:]
|
@@ -25843,6 +25843,7 @@ class LiveStreamAiRecognitionResultItem(AbstractModel):
|
|
25843
25843
|
<li>AsrFullTextRecognition:语音全文识别,</li>
|
25844
25844
|
<li>OcrFullTextRecognition:文本全文识别。</li>
|
25845
25845
|
<li>TransTextRecognition:语音翻译。</li>
|
25846
|
+
<li>ObjectRecognition:目标检测。</li>
|
25846
25847
|
<li>TagRecognition:精彩打点。</li>
|
25847
25848
|
:type Type: str
|
25848
25849
|
:param _FaceRecognitionResultSet: 人脸识别结果,当 Type 为
|
@@ -25862,6 +25863,8 @@ OcrFullTextRecognition 时有效。
|
|
25862
25863
|
:type OcrFullTextRecognitionResultSet: list of LiveStreamOcrFullTextRecognitionResult
|
25863
25864
|
:param _TransTextRecognitionResultSet: 翻译结果,当Type 为 TransTextRecognition 时有效。
|
25864
25865
|
:type TransTextRecognitionResultSet: list of LiveStreamTransTextRecognitionResult
|
25866
|
+
:param _ObjectRecognitionResultSet: 目标检测结果,当Type为 ObjectRecognition 时有效。
|
25867
|
+
:type ObjectRecognitionResultSet: list of LiveStreamObjectRecognitionResult
|
25865
25868
|
:param _TagRecognitionResultSet: 打点结果,当Type 为 TagRecognition 时有效。
|
25866
25869
|
注意:此字段可能返回 null,表示取不到有效值。
|
25867
25870
|
:type TagRecognitionResultSet: list of LiveStreamTagRecognitionResult
|
@@ -25873,6 +25876,7 @@ OcrFullTextRecognition 时有效。
|
|
25873
25876
|
self._AsrFullTextRecognitionResultSet = None
|
25874
25877
|
self._OcrFullTextRecognitionResultSet = None
|
25875
25878
|
self._TransTextRecognitionResultSet = None
|
25879
|
+
self._ObjectRecognitionResultSet = None
|
25876
25880
|
self._TagRecognitionResultSet = None
|
25877
25881
|
|
25878
25882
|
@property
|
@@ -25931,6 +25935,14 @@ OcrFullTextRecognition 时有效。
|
|
25931
25935
|
def TransTextRecognitionResultSet(self, TransTextRecognitionResultSet):
|
25932
25936
|
self._TransTextRecognitionResultSet = TransTextRecognitionResultSet
|
25933
25937
|
|
25938
|
+
@property
|
25939
|
+
def ObjectRecognitionResultSet(self):
|
25940
|
+
return self._ObjectRecognitionResultSet
|
25941
|
+
|
25942
|
+
@ObjectRecognitionResultSet.setter
|
25943
|
+
def ObjectRecognitionResultSet(self, ObjectRecognitionResultSet):
|
25944
|
+
self._ObjectRecognitionResultSet = ObjectRecognitionResultSet
|
25945
|
+
|
25934
25946
|
@property
|
25935
25947
|
def TagRecognitionResultSet(self):
|
25936
25948
|
return self._TagRecognitionResultSet
|
@@ -25978,6 +25990,12 @@ OcrFullTextRecognition 时有效。
|
|
25978
25990
|
obj = LiveStreamTransTextRecognitionResult()
|
25979
25991
|
obj._deserialize(item)
|
25980
25992
|
self._TransTextRecognitionResultSet.append(obj)
|
25993
|
+
if params.get("ObjectRecognitionResultSet") is not None:
|
25994
|
+
self._ObjectRecognitionResultSet = []
|
25995
|
+
for item in params.get("ObjectRecognitionResultSet"):
|
25996
|
+
obj = LiveStreamObjectRecognitionResult()
|
25997
|
+
obj._deserialize(item)
|
25998
|
+
self._ObjectRecognitionResultSet.append(obj)
|
25981
25999
|
if params.get("TagRecognitionResultSet") is not None:
|
25982
26000
|
self._TagRecognitionResultSet = []
|
25983
26001
|
for item in params.get("TagRecognitionResultSet"):
|
@@ -26870,6 +26888,87 @@ class LiveStreamFaceRecognitionResult(AbstractModel):
|
|
26870
26888
|
|
26871
26889
|
|
26872
26890
|
|
26891
|
+
class LiveStreamObjectRecognitionResult(AbstractModel):
|
26892
|
+
"""直播 AI 物体识别结果
|
26893
|
+
|
26894
|
+
"""
|
26895
|
+
|
26896
|
+
def __init__(self):
|
26897
|
+
r"""
|
26898
|
+
:param _Name: 识别的物体名称。
|
26899
|
+
:type Name: str
|
26900
|
+
:param _StartPtsOffset: 识别片段起始的 PTS 时间,单位:秒。
|
26901
|
+
:type StartPtsOffset: float
|
26902
|
+
:param _EndPtsOffset: 识别片段终止的 PTS 时间,单位:秒。
|
26903
|
+
:type EndPtsOffset: float
|
26904
|
+
:param _Confidence: 识别片段置信度。取值:0~100。
|
26905
|
+
:type Confidence: float
|
26906
|
+
:param _AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
|
26907
|
+
:type AreaCoordSet: list of int
|
26908
|
+
"""
|
26909
|
+
self._Name = None
|
26910
|
+
self._StartPtsOffset = None
|
26911
|
+
self._EndPtsOffset = None
|
26912
|
+
self._Confidence = None
|
26913
|
+
self._AreaCoordSet = None
|
26914
|
+
|
26915
|
+
@property
|
26916
|
+
def Name(self):
|
26917
|
+
return self._Name
|
26918
|
+
|
26919
|
+
@Name.setter
|
26920
|
+
def Name(self, Name):
|
26921
|
+
self._Name = Name
|
26922
|
+
|
26923
|
+
@property
|
26924
|
+
def StartPtsOffset(self):
|
26925
|
+
return self._StartPtsOffset
|
26926
|
+
|
26927
|
+
@StartPtsOffset.setter
|
26928
|
+
def StartPtsOffset(self, StartPtsOffset):
|
26929
|
+
self._StartPtsOffset = StartPtsOffset
|
26930
|
+
|
26931
|
+
@property
|
26932
|
+
def EndPtsOffset(self):
|
26933
|
+
return self._EndPtsOffset
|
26934
|
+
|
26935
|
+
@EndPtsOffset.setter
|
26936
|
+
def EndPtsOffset(self, EndPtsOffset):
|
26937
|
+
self._EndPtsOffset = EndPtsOffset
|
26938
|
+
|
26939
|
+
@property
|
26940
|
+
def Confidence(self):
|
26941
|
+
return self._Confidence
|
26942
|
+
|
26943
|
+
@Confidence.setter
|
26944
|
+
def Confidence(self, Confidence):
|
26945
|
+
self._Confidence = Confidence
|
26946
|
+
|
26947
|
+
@property
|
26948
|
+
def AreaCoordSet(self):
|
26949
|
+
return self._AreaCoordSet
|
26950
|
+
|
26951
|
+
@AreaCoordSet.setter
|
26952
|
+
def AreaCoordSet(self, AreaCoordSet):
|
26953
|
+
self._AreaCoordSet = AreaCoordSet
|
26954
|
+
|
26955
|
+
|
26956
|
+
def _deserialize(self, params):
|
26957
|
+
self._Name = params.get("Name")
|
26958
|
+
self._StartPtsOffset = params.get("StartPtsOffset")
|
26959
|
+
self._EndPtsOffset = params.get("EndPtsOffset")
|
26960
|
+
self._Confidence = params.get("Confidence")
|
26961
|
+
self._AreaCoordSet = params.get("AreaCoordSet")
|
26962
|
+
memeber_set = set(params.keys())
|
26963
|
+
for name, value in vars(self).items():
|
26964
|
+
property_name = name[1:]
|
26965
|
+
if property_name in memeber_set:
|
26966
|
+
memeber_set.remove(property_name)
|
26967
|
+
if len(memeber_set) > 0:
|
26968
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
26969
|
+
|
26970
|
+
|
26971
|
+
|
26873
26972
|
class LiveStreamOcrFullTextRecognitionResult(AbstractModel):
|
26874
26973
|
"""直播识别 Ocr 全文识别
|
26875
26974
|
|