tencentcloud-sdk-python 3.0.1460__py2.py3-none-any.whl → 3.0.1461__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/ai3d/v20250513/ai3d_client.py +48 -0
- tencentcloud/ai3d/v20250513/models.py +288 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/ccc/v20200210/models.py +76 -68
- tencentcloud/clb/v20180317/models.py +32 -2
- tencentcloud/gs/v20191118/gs_client.py +23 -0
- tencentcloud/gs/v20191118/models.py +150 -0
- tencentcloud/gwlb/v20240906/models.py +201 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +4 -3
- tencentcloud/lkeap/v20240522/models.py +59 -0
- tencentcloud/ocr/v20181119/models.py +2 -2
- tencentcloud/trtc/v20190722/models.py +2 -2
- tencentcloud/vtc/v20240223/vtc_client.py +1 -1
- tencentcloud/waf/v20180125/models.py +497 -0
- tencentcloud/waf/v20180125/waf_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1460.dist-info → tencentcloud_sdk_python-3.0.1461.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1460.dist-info → tencentcloud_sdk_python-3.0.1461.dist-info}/RECORD +21 -21
- {tencentcloud_sdk_python-3.0.1460.dist-info → tencentcloud_sdk_python-3.0.1461.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1460.dist-info → tencentcloud_sdk_python-3.0.1461.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1460.dist-info → tencentcloud_sdk_python-3.0.1461.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -74,6 +74,30 @@ class Ai3dClient(AbstractClient):
|
|
74
74
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
75
75
|
|
76
76
|
|
77
|
+
def QueryHunyuanTo3DRapidJob(self, request):
|
78
|
+
r"""混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
|
79
|
+
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
80
|
+
|
81
|
+
:param request: Request instance for QueryHunyuanTo3DRapidJob.
|
82
|
+
:type request: :class:`tencentcloud.ai3d.v20250513.models.QueryHunyuanTo3DRapidJobRequest`
|
83
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.QueryHunyuanTo3DRapidJobResponse`
|
84
|
+
|
85
|
+
"""
|
86
|
+
try:
|
87
|
+
params = request._serialize()
|
88
|
+
headers = request.headers
|
89
|
+
body = self.call("QueryHunyuanTo3DRapidJob", params, headers=headers)
|
90
|
+
response = json.loads(body)
|
91
|
+
model = models.QueryHunyuanTo3DRapidJobResponse()
|
92
|
+
model._deserialize(response["Response"])
|
93
|
+
return model
|
94
|
+
except Exception as e:
|
95
|
+
if isinstance(e, TencentCloudSDKException):
|
96
|
+
raise
|
97
|
+
else:
|
98
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
99
|
+
|
100
|
+
|
77
101
|
def SubmitHunyuanTo3DJob(self, request):
|
78
102
|
r"""混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
|
79
103
|
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
@@ -115,6 +139,30 @@ class Ai3dClient(AbstractClient):
|
|
115
139
|
model = models.SubmitHunyuanTo3DProJobResponse()
|
116
140
|
model._deserialize(response["Response"])
|
117
141
|
return model
|
142
|
+
except Exception as e:
|
143
|
+
if isinstance(e, TencentCloudSDKException):
|
144
|
+
raise
|
145
|
+
else:
|
146
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
147
|
+
|
148
|
+
|
149
|
+
def SubmitHunyuanTo3DRapidJob(self, request):
|
150
|
+
r"""混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
|
151
|
+
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
152
|
+
|
153
|
+
:param request: Request instance for SubmitHunyuanTo3DRapidJob.
|
154
|
+
:type request: :class:`tencentcloud.ai3d.v20250513.models.SubmitHunyuanTo3DRapidJobRequest`
|
155
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.SubmitHunyuanTo3DRapidJobResponse`
|
156
|
+
|
157
|
+
"""
|
158
|
+
try:
|
159
|
+
params = request._serialize()
|
160
|
+
headers = request.headers
|
161
|
+
body = self.call("SubmitHunyuanTo3DRapidJob", params, headers=headers)
|
162
|
+
response = json.loads(body)
|
163
|
+
model = models.SubmitHunyuanTo3DRapidJobResponse()
|
164
|
+
model._deserialize(response["Response"])
|
165
|
+
return model
|
118
166
|
except Exception as e:
|
119
167
|
if isinstance(e, TencentCloudSDKException):
|
120
168
|
raise
|
@@ -342,6 +342,135 @@ class QueryHunyuanTo3DProJobResponse(AbstractModel):
|
|
342
342
|
self._RequestId = params.get("RequestId")
|
343
343
|
|
344
344
|
|
345
|
+
class QueryHunyuanTo3DRapidJobRequest(AbstractModel):
|
346
|
+
r"""QueryHunyuanTo3DRapidJob请求参数结构体
|
347
|
+
|
348
|
+
"""
|
349
|
+
|
350
|
+
def __init__(self):
|
351
|
+
r"""
|
352
|
+
:param _JobId: 任务ID。
|
353
|
+
:type JobId: str
|
354
|
+
"""
|
355
|
+
self._JobId = None
|
356
|
+
|
357
|
+
@property
|
358
|
+
def JobId(self):
|
359
|
+
r"""任务ID。
|
360
|
+
:rtype: str
|
361
|
+
"""
|
362
|
+
return self._JobId
|
363
|
+
|
364
|
+
@JobId.setter
|
365
|
+
def JobId(self, JobId):
|
366
|
+
self._JobId = JobId
|
367
|
+
|
368
|
+
|
369
|
+
def _deserialize(self, params):
|
370
|
+
self._JobId = params.get("JobId")
|
371
|
+
memeber_set = set(params.keys())
|
372
|
+
for name, value in vars(self).items():
|
373
|
+
property_name = name[1:]
|
374
|
+
if property_name in memeber_set:
|
375
|
+
memeber_set.remove(property_name)
|
376
|
+
if len(memeber_set) > 0:
|
377
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
378
|
+
|
379
|
+
|
380
|
+
|
381
|
+
class QueryHunyuanTo3DRapidJobResponse(AbstractModel):
|
382
|
+
r"""QueryHunyuanTo3DRapidJob返回参数结构体
|
383
|
+
|
384
|
+
"""
|
385
|
+
|
386
|
+
def __init__(self):
|
387
|
+
r"""
|
388
|
+
:param _Status: 任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功
|
389
|
+
:type Status: str
|
390
|
+
:param _ErrorCode: 错误码
|
391
|
+
:type ErrorCode: str
|
392
|
+
:param _ErrorMessage: 错误信息
|
393
|
+
:type ErrorMessage: str
|
394
|
+
:param _ResultFile3Ds: 生成的3D文件数组。
|
395
|
+
:type ResultFile3Ds: list of File3D
|
396
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
397
|
+
:type RequestId: str
|
398
|
+
"""
|
399
|
+
self._Status = None
|
400
|
+
self._ErrorCode = None
|
401
|
+
self._ErrorMessage = None
|
402
|
+
self._ResultFile3Ds = None
|
403
|
+
self._RequestId = None
|
404
|
+
|
405
|
+
@property
|
406
|
+
def Status(self):
|
407
|
+
r"""任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功
|
408
|
+
:rtype: str
|
409
|
+
"""
|
410
|
+
return self._Status
|
411
|
+
|
412
|
+
@Status.setter
|
413
|
+
def Status(self, Status):
|
414
|
+
self._Status = Status
|
415
|
+
|
416
|
+
@property
|
417
|
+
def ErrorCode(self):
|
418
|
+
r"""错误码
|
419
|
+
:rtype: str
|
420
|
+
"""
|
421
|
+
return self._ErrorCode
|
422
|
+
|
423
|
+
@ErrorCode.setter
|
424
|
+
def ErrorCode(self, ErrorCode):
|
425
|
+
self._ErrorCode = ErrorCode
|
426
|
+
|
427
|
+
@property
|
428
|
+
def ErrorMessage(self):
|
429
|
+
r"""错误信息
|
430
|
+
:rtype: str
|
431
|
+
"""
|
432
|
+
return self._ErrorMessage
|
433
|
+
|
434
|
+
@ErrorMessage.setter
|
435
|
+
def ErrorMessage(self, ErrorMessage):
|
436
|
+
self._ErrorMessage = ErrorMessage
|
437
|
+
|
438
|
+
@property
|
439
|
+
def ResultFile3Ds(self):
|
440
|
+
r"""生成的3D文件数组。
|
441
|
+
:rtype: list of File3D
|
442
|
+
"""
|
443
|
+
return self._ResultFile3Ds
|
444
|
+
|
445
|
+
@ResultFile3Ds.setter
|
446
|
+
def ResultFile3Ds(self, ResultFile3Ds):
|
447
|
+
self._ResultFile3Ds = ResultFile3Ds
|
448
|
+
|
449
|
+
@property
|
450
|
+
def RequestId(self):
|
451
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
452
|
+
:rtype: str
|
453
|
+
"""
|
454
|
+
return self._RequestId
|
455
|
+
|
456
|
+
@RequestId.setter
|
457
|
+
def RequestId(self, RequestId):
|
458
|
+
self._RequestId = RequestId
|
459
|
+
|
460
|
+
|
461
|
+
def _deserialize(self, params):
|
462
|
+
self._Status = params.get("Status")
|
463
|
+
self._ErrorCode = params.get("ErrorCode")
|
464
|
+
self._ErrorMessage = params.get("ErrorMessage")
|
465
|
+
if params.get("ResultFile3Ds") is not None:
|
466
|
+
self._ResultFile3Ds = []
|
467
|
+
for item in params.get("ResultFile3Ds"):
|
468
|
+
obj = File3D()
|
469
|
+
obj._deserialize(item)
|
470
|
+
self._ResultFile3Ds.append(obj)
|
471
|
+
self._RequestId = params.get("RequestId")
|
472
|
+
|
473
|
+
|
345
474
|
class SubmitHunyuanTo3DJobRequest(AbstractModel):
|
346
475
|
r"""SubmitHunyuanTo3DJob请求参数结构体
|
347
476
|
|
@@ -753,6 +882,165 @@ class SubmitHunyuanTo3DProJobResponse(AbstractModel):
|
|
753
882
|
self._RequestId = params.get("RequestId")
|
754
883
|
|
755
884
|
|
885
|
+
class SubmitHunyuanTo3DRapidJobRequest(AbstractModel):
|
886
|
+
r"""SubmitHunyuanTo3DRapidJob请求参数结构体
|
887
|
+
|
888
|
+
"""
|
889
|
+
|
890
|
+
def __init__(self):
|
891
|
+
r"""
|
892
|
+
:param _Prompt: 文生3D,3D内容的描述,中文正向提示词。
|
893
|
+
最多支持200个 utf-8 字符。
|
894
|
+
文生3D, image、image_url和 prompt必填其一,且prompt和image/image_url不能同时存在。
|
895
|
+
:type Prompt: str
|
896
|
+
:param _ImageBase64: 输入图 Base64 数据。
|
897
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
898
|
+
格式:jpg,png,jpeg,webp。
|
899
|
+
ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
900
|
+
:type ImageBase64: str
|
901
|
+
:param _ImageUrl: 输入图Url。
|
902
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
903
|
+
格式:jpg,png,jpeg,webp。
|
904
|
+
ImageBase64/ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
905
|
+
:type ImageUrl: str
|
906
|
+
:param _ResultFormat: 生成模型的格式,仅限制生成一种格式。
|
907
|
+
生成模型文件组默认返回obj格式。
|
908
|
+
可选值:OBJ,GLB,STL,USDZ,FBX,MP4。
|
909
|
+
:type ResultFormat: str
|
910
|
+
:param _EnablePBR: 是否开启 PBR材质生成,默认 false。
|
911
|
+
:type EnablePBR: bool
|
912
|
+
"""
|
913
|
+
self._Prompt = None
|
914
|
+
self._ImageBase64 = None
|
915
|
+
self._ImageUrl = None
|
916
|
+
self._ResultFormat = None
|
917
|
+
self._EnablePBR = None
|
918
|
+
|
919
|
+
@property
|
920
|
+
def Prompt(self):
|
921
|
+
r"""文生3D,3D内容的描述,中文正向提示词。
|
922
|
+
最多支持200个 utf-8 字符。
|
923
|
+
文生3D, image、image_url和 prompt必填其一,且prompt和image/image_url不能同时存在。
|
924
|
+
:rtype: str
|
925
|
+
"""
|
926
|
+
return self._Prompt
|
927
|
+
|
928
|
+
@Prompt.setter
|
929
|
+
def Prompt(self, Prompt):
|
930
|
+
self._Prompt = Prompt
|
931
|
+
|
932
|
+
@property
|
933
|
+
def ImageBase64(self):
|
934
|
+
r"""输入图 Base64 数据。
|
935
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
936
|
+
格式:jpg,png,jpeg,webp。
|
937
|
+
ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
938
|
+
:rtype: str
|
939
|
+
"""
|
940
|
+
return self._ImageBase64
|
941
|
+
|
942
|
+
@ImageBase64.setter
|
943
|
+
def ImageBase64(self, ImageBase64):
|
944
|
+
self._ImageBase64 = ImageBase64
|
945
|
+
|
946
|
+
@property
|
947
|
+
def ImageUrl(self):
|
948
|
+
r"""输入图Url。
|
949
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
950
|
+
格式:jpg,png,jpeg,webp。
|
951
|
+
ImageBase64/ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
952
|
+
:rtype: str
|
953
|
+
"""
|
954
|
+
return self._ImageUrl
|
955
|
+
|
956
|
+
@ImageUrl.setter
|
957
|
+
def ImageUrl(self, ImageUrl):
|
958
|
+
self._ImageUrl = ImageUrl
|
959
|
+
|
960
|
+
@property
|
961
|
+
def ResultFormat(self):
|
962
|
+
r"""生成模型的格式,仅限制生成一种格式。
|
963
|
+
生成模型文件组默认返回obj格式。
|
964
|
+
可选值:OBJ,GLB,STL,USDZ,FBX,MP4。
|
965
|
+
:rtype: str
|
966
|
+
"""
|
967
|
+
return self._ResultFormat
|
968
|
+
|
969
|
+
@ResultFormat.setter
|
970
|
+
def ResultFormat(self, ResultFormat):
|
971
|
+
self._ResultFormat = ResultFormat
|
972
|
+
|
973
|
+
@property
|
974
|
+
def EnablePBR(self):
|
975
|
+
r"""是否开启 PBR材质生成,默认 false。
|
976
|
+
:rtype: bool
|
977
|
+
"""
|
978
|
+
return self._EnablePBR
|
979
|
+
|
980
|
+
@EnablePBR.setter
|
981
|
+
def EnablePBR(self, EnablePBR):
|
982
|
+
self._EnablePBR = EnablePBR
|
983
|
+
|
984
|
+
|
985
|
+
def _deserialize(self, params):
|
986
|
+
self._Prompt = params.get("Prompt")
|
987
|
+
self._ImageBase64 = params.get("ImageBase64")
|
988
|
+
self._ImageUrl = params.get("ImageUrl")
|
989
|
+
self._ResultFormat = params.get("ResultFormat")
|
990
|
+
self._EnablePBR = params.get("EnablePBR")
|
991
|
+
memeber_set = set(params.keys())
|
992
|
+
for name, value in vars(self).items():
|
993
|
+
property_name = name[1:]
|
994
|
+
if property_name in memeber_set:
|
995
|
+
memeber_set.remove(property_name)
|
996
|
+
if len(memeber_set) > 0:
|
997
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
998
|
+
|
999
|
+
|
1000
|
+
|
1001
|
+
class SubmitHunyuanTo3DRapidJobResponse(AbstractModel):
|
1002
|
+
r"""SubmitHunyuanTo3DRapidJob返回参数结构体
|
1003
|
+
|
1004
|
+
"""
|
1005
|
+
|
1006
|
+
def __init__(self):
|
1007
|
+
r"""
|
1008
|
+
:param _JobId: 任务ID(有效期24小时)
|
1009
|
+
:type JobId: str
|
1010
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1011
|
+
:type RequestId: str
|
1012
|
+
"""
|
1013
|
+
self._JobId = None
|
1014
|
+
self._RequestId = None
|
1015
|
+
|
1016
|
+
@property
|
1017
|
+
def JobId(self):
|
1018
|
+
r"""任务ID(有效期24小时)
|
1019
|
+
:rtype: str
|
1020
|
+
"""
|
1021
|
+
return self._JobId
|
1022
|
+
|
1023
|
+
@JobId.setter
|
1024
|
+
def JobId(self, JobId):
|
1025
|
+
self._JobId = JobId
|
1026
|
+
|
1027
|
+
@property
|
1028
|
+
def RequestId(self):
|
1029
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1030
|
+
:rtype: str
|
1031
|
+
"""
|
1032
|
+
return self._RequestId
|
1033
|
+
|
1034
|
+
@RequestId.setter
|
1035
|
+
def RequestId(self, RequestId):
|
1036
|
+
self._RequestId = RequestId
|
1037
|
+
|
1038
|
+
|
1039
|
+
def _deserialize(self, params):
|
1040
|
+
self._JobId = params.get("JobId")
|
1041
|
+
self._RequestId = params.get("RequestId")
|
1042
|
+
|
1043
|
+
|
756
1044
|
class ViewImage(AbstractModel):
|
757
1045
|
r"""多视角图片
|
758
1046
|
|
@@ -108,7 +108,7 @@ class AsrClient(AbstractClient):
|
|
108
108
|
def CreateAsyncRecognitionTask(self, request):
|
109
109
|
r"""本接口用于对语音流进行准实时识别,通过异步回调来返回识别结果。适用于直播审核等场景。
|
110
110
|
<br>• 支持rtmp、rtsp等流媒体协议,以及各类基于http协议的直播流(不支持hls)
|
111
|
-
<br>• 音频流时长无限制,服务会自动拉取音频流数据,若连续10
|
111
|
+
<br>• 音频流时长无限制,服务会自动拉取音频流数据,若连续10分钟拉不到流或流数据无人声时,服务会终止识别任务
|
112
112
|
<br>• 服务通过回调的方式来提供识别结果,用户需要提供CallbackUrl。回调时机为一小段话(最长15秒)回调一次。
|
113
113
|
<br>• 签名方法参考 [公共参数](https://cloud.tencent.com/document/api/1093/35640) 中签名方法v3。
|
114
114
|
<br>• 默认单账号限制并发数为20路,如您有提高并发限制的需求,请提[工单](https://console.cloud.tencent.com/workorder/category)进行咨询。
|
@@ -17185,73 +17185,77 @@ class TelCdrInfo(AbstractModel):
|
|
17185
17185
|
|
17186
17186
|
**场景 EndStatus EndStatusString 状态说明**
|
17187
17187
|
|
17188
|
-
电话呼入&呼出 1 ok
|
17188
|
+
电话呼入&呼出 1 ok **正常通话**
|
17189
17189
|
|
17190
|
-
电话呼入 102 ivrGiveUp IVR
|
17190
|
+
电话呼入 102 ivrGiveUp **IVR期间用户放弃**
|
17191
17191
|
|
17192
|
-
电话呼入 103 waitingGiveUp
|
17192
|
+
电话呼入 103 waitingGiveUp **排队时用户放弃**
|
17193
17193
|
|
17194
|
-
电话呼入 104 ringingGiveUp
|
17194
|
+
电话呼入 104 ringingGiveUp **振铃时用户放弃**
|
17195
17195
|
|
17196
|
-
电话呼入 105 noSeatOnline
|
17196
|
+
电话呼入 105 noSeatOnline **无座席在线**
|
17197
17197
|
|
17198
|
-
电话呼入 106 notWorkTime
|
17198
|
+
电话呼入 106 notWorkTime **非工作时间**
|
17199
17199
|
|
17200
|
-
电话呼入 107 ivrEnd IVR全自动结束(无人工介入)
|
17200
|
+
电话呼入 107 ivrEnd **IVR全自动结束(无人工介入)**
|
17201
17201
|
|
17202
|
-
电话呼入 100 blackList
|
17202
|
+
电话呼入 100 blackList **黑名单(系统侧)**
|
17203
17203
|
|
17204
|
-
电话呼出 108 restrictedCallee
|
17204
|
+
电话呼出 108 restrictedCallee **全局外呼风险号码拦截(系统侧)**
|
17205
17205
|
|
17206
|
-
电话呼出 109 tooManyRequest
|
17206
|
+
电话呼出 109 tooManyRequest **外呼频控拦截(系统侧)**
|
17207
17207
|
|
17208
|
-
电话呼出 110 restrictedArea
|
17208
|
+
电话呼出 110 restrictedArea **外呼地域拦截(系统侧)**
|
17209
17209
|
|
17210
|
-
电话呼出 111 restrictedTime
|
17210
|
+
电话呼出 111 restrictedTime **外呼时段拦截(系统侧)**
|
17211
17211
|
|
17212
|
-
电话呼出 202 notAnswer
|
17212
|
+
电话呼出 202 notAnswer **被叫未接听**
|
17213
17213
|
|
17214
|
-
电话呼出 203 userReject
|
17214
|
+
电话呼出 203 userReject **被叫拒接挂断**
|
17215
17215
|
|
17216
|
-
电话呼出 204 powerOff
|
17216
|
+
电话呼出 204 powerOff **被叫关机**
|
17217
17217
|
|
17218
|
-
电话呼出 205 numberNotExist
|
17218
|
+
电话呼出 205 numberNotExist **被叫空号**
|
17219
17219
|
|
17220
|
-
电话呼出 206 busy
|
17220
|
+
电话呼出 206 busy **被叫忙**
|
17221
17221
|
|
17222
|
-
电话呼出 207 outOfCredit
|
17222
|
+
电话呼出 207 outOfCredit **被叫欠费**
|
17223
17223
|
|
17224
|
-
电话呼出 208 operatorError
|
17224
|
+
电话呼出 208 operatorError **运营商线路异常**
|
17225
17225
|
|
17226
|
-
电话呼出 209 callerCancel
|
17226
|
+
电话呼出 209 callerCancel **主叫取消**
|
17227
17227
|
|
17228
|
-
电话呼出 210 notInService
|
17228
|
+
电话呼出 210 notInService **被叫不在服务区**
|
17229
17229
|
|
17230
|
-
电话呼入&呼出 211 clientError
|
17230
|
+
电话呼入&呼出 211 clientError **座席客户端错误**
|
17231
17231
|
|
17232
|
-
电话呼出 212 carrierBlocked
|
17232
|
+
电话呼出 212 carrierBlocked **运营商拦截**
|
17233
17233
|
|
17234
|
-
电话呼出 213 callReminder
|
17234
|
+
电话呼出 213 callReminder **提示来电提醒**
|
17235
17235
|
|
17236
|
-
电话呼出 215 numberInvalid
|
17236
|
+
电话呼出 215 numberInvalid **被叫号码无效**
|
17237
17237
|
|
17238
|
-
电话呼出 216 callRestricted
|
17238
|
+
电话呼出 216 callRestricted **提示呼叫受限**
|
17239
17239
|
|
17240
|
-
电话呼出 217 calleeRestricted
|
17240
|
+
电话呼出 217 calleeRestricted **被叫黑名单受限**
|
17241
17241
|
|
17242
|
-
电话呼出 218 areaRestricted
|
17242
|
+
电话呼出 218 areaRestricted **被叫区域受限**
|
17243
17243
|
|
17244
|
-
电话呼出 219 promptCallForwarding
|
17244
|
+
电话呼出 219 promptCallForwarding **提示呼叫转移**
|
17245
17245
|
|
17246
|
-
电话呼出 220 callerCancelWhileRing
|
17246
|
+
电话呼出 220 callerCancelWhileRing **振铃中主叫取消**
|
17247
17247
|
|
17248
|
-
电话呼出 221 callerCancelWithoutRing
|
17248
|
+
电话呼出 221 callerCancelWithoutRing **未振铃被叫号码异常**
|
17249
17249
|
|
17250
|
-
音频呼入 501 callConflict VoIP
|
17250
|
+
音频呼入 501 callConflict **VoIP用户呼叫冲突终止**
|
17251
17251
|
|
17252
|
-
音频呼入 502 clientTimeout VoIP
|
17252
|
+
音频呼入 502 clientTimeout **VoIP用户客户端超时**
|
17253
17253
|
|
17254
|
-
音频呼入 503 voipClientError VoIP
|
17254
|
+
音频呼入 503 voipClientError **VoIP用户客户端错误**
|
17255
|
+
|
17256
|
+
中文详情[参考](https://www.tencentcloud.com/zh/document/product/1229/71847)
|
17257
|
+
|
17258
|
+
英文详情[参考](https://www.tencentcloud.com/document/product/1229/71847?lang=en)
|
17255
17259
|
:type EndStatus: int
|
17256
17260
|
:param _SkillGroup: 技能组名称
|
17257
17261
|
:type SkillGroup: str
|
@@ -17460,73 +17464,77 @@ NotExists
|
|
17460
17464
|
|
17461
17465
|
**场景 EndStatus EndStatusString 状态说明**
|
17462
17466
|
|
17463
|
-
电话呼入&呼出 1 ok
|
17467
|
+
电话呼入&呼出 1 ok **正常通话**
|
17464
17468
|
|
17465
|
-
电话呼入 102 ivrGiveUp IVR
|
17469
|
+
电话呼入 102 ivrGiveUp **IVR期间用户放弃**
|
17466
17470
|
|
17467
|
-
电话呼入 103 waitingGiveUp
|
17471
|
+
电话呼入 103 waitingGiveUp **排队时用户放弃**
|
17468
17472
|
|
17469
|
-
电话呼入 104 ringingGiveUp
|
17473
|
+
电话呼入 104 ringingGiveUp **振铃时用户放弃**
|
17470
17474
|
|
17471
|
-
电话呼入 105 noSeatOnline
|
17475
|
+
电话呼入 105 noSeatOnline **无座席在线**
|
17472
17476
|
|
17473
|
-
电话呼入 106 notWorkTime
|
17477
|
+
电话呼入 106 notWorkTime **非工作时间**
|
17474
17478
|
|
17475
|
-
电话呼入 107 ivrEnd IVR全自动结束(无人工介入)
|
17479
|
+
电话呼入 107 ivrEnd **IVR全自动结束(无人工介入)**
|
17476
17480
|
|
17477
|
-
电话呼入 100 blackList
|
17481
|
+
电话呼入 100 blackList **黑名单(系统侧)**
|
17478
17482
|
|
17479
|
-
电话呼出 108 restrictedCallee
|
17483
|
+
电话呼出 108 restrictedCallee **全局外呼风险号码拦截(系统侧)**
|
17480
17484
|
|
17481
|
-
电话呼出 109 tooManyRequest
|
17485
|
+
电话呼出 109 tooManyRequest **外呼频控拦截(系统侧)**
|
17482
17486
|
|
17483
|
-
电话呼出 110 restrictedArea
|
17487
|
+
电话呼出 110 restrictedArea **外呼地域拦截(系统侧)**
|
17484
17488
|
|
17485
|
-
电话呼出 111 restrictedTime
|
17489
|
+
电话呼出 111 restrictedTime **外呼时段拦截(系统侧)**
|
17486
17490
|
|
17487
|
-
电话呼出 202 notAnswer
|
17491
|
+
电话呼出 202 notAnswer **被叫未接听**
|
17492
|
+
|
17493
|
+
电话呼出 203 userReject **被叫拒接挂断**
|
17494
|
+
|
17495
|
+
电话呼出 204 powerOff **被叫关机**
|
17488
17496
|
|
17489
|
-
电话呼出
|
17497
|
+
电话呼出 205 numberNotExist **被叫空号**
|
17490
17498
|
|
17491
|
-
电话呼出
|
17499
|
+
电话呼出 206 busy **被叫忙**
|
17492
17500
|
|
17493
|
-
电话呼出
|
17501
|
+
电话呼出 207 outOfCredit **被叫欠费**
|
17494
17502
|
|
17495
|
-
电话呼出
|
17503
|
+
电话呼出 208 operatorError **运营商线路异常**
|
17496
17504
|
|
17497
|
-
电话呼出
|
17505
|
+
电话呼出 209 callerCancel **主叫取消**
|
17498
17506
|
|
17499
|
-
电话呼出
|
17507
|
+
电话呼出 210 notInService **被叫不在服务区**
|
17500
17508
|
|
17501
|
-
|
17509
|
+
电话呼入&呼出 211 clientError **座席客户端错误**
|
17502
17510
|
|
17503
|
-
电话呼出
|
17511
|
+
电话呼出 212 carrierBlocked **运营商拦截**
|
17504
17512
|
|
17505
|
-
|
17513
|
+
电话呼出 213 callReminder **提示来电提醒**
|
17506
17514
|
|
17507
|
-
电话呼出
|
17515
|
+
电话呼出 215 numberInvalid **被叫号码无效**
|
17508
17516
|
|
17509
|
-
电话呼出
|
17517
|
+
电话呼出 216 callRestricted **提示呼叫受限**
|
17510
17518
|
|
17511
|
-
电话呼出
|
17519
|
+
电话呼出 217 calleeRestricted **被叫黑名单受限**
|
17512
17520
|
|
17513
|
-
电话呼出
|
17521
|
+
电话呼出 218 areaRestricted **被叫区域受限**
|
17514
17522
|
|
17515
|
-
电话呼出
|
17523
|
+
电话呼出 219 promptCallForwarding **提示呼叫转移**
|
17516
17524
|
|
17517
|
-
电话呼出
|
17525
|
+
电话呼出 220 callerCancelWhileRing **振铃中主叫取消**
|
17518
17526
|
|
17519
|
-
电话呼出
|
17527
|
+
电话呼出 221 callerCancelWithoutRing **未振铃被叫号码异常**
|
17520
17528
|
|
17521
|
-
|
17529
|
+
音频呼入 501 callConflict **VoIP用户呼叫冲突终止**
|
17522
17530
|
|
17523
|
-
|
17531
|
+
音频呼入 502 clientTimeout **VoIP用户客户端超时**
|
17524
17532
|
|
17525
|
-
音频呼入
|
17533
|
+
音频呼入 503 voipClientError **VoIP用户客户端错误**
|
17526
17534
|
|
17527
|
-
|
17535
|
+
中文详情[参考](https://www.tencentcloud.com/zh/document/product/1229/71847)
|
17528
17536
|
|
17529
|
-
|
17537
|
+
英文详情[参考](https://www.tencentcloud.com/document/product/1229/71847?lang=en)
|
17530
17538
|
:rtype: int
|
17531
17539
|
"""
|
17532
17540
|
return self._EndStatus
|