tencentcloud-sdk-python 3.0.1283__py2.py3-none-any.whl → 3.0.1284__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/essbasic/v20210526/models.py +17 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +29 -2
- tencentcloud/iotexplorer/v20190423/models.py +220 -0
- tencentcloud/sms/v20210111/models.py +2 -2
- tencentcloud/vrs/v20200824/models.py +115 -4
- tencentcloud/vrs/v20200824/vrs_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -4412,11 +4412,15 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
4412
4412
|
:param _Approvers: 签署方信息,如角色ID、角色名称等
|
4413
4413
|
注意:此字段可能返回 null,表示取不到有效值。
|
4414
4414
|
:type Approvers: list of ApproverItem
|
4415
|
+
:param _PreviewUrl: 预览链接,有效期5分钟
|
4416
|
+
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
|
4417
|
+
:type PreviewUrl: str
|
4415
4418
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4416
4419
|
:type RequestId: str
|
4417
4420
|
"""
|
4418
4421
|
self._FlowId = None
|
4419
4422
|
self._Approvers = None
|
4423
|
+
self._PreviewUrl = None
|
4420
4424
|
self._RequestId = None
|
4421
4425
|
|
4422
4426
|
@property
|
@@ -4446,6 +4450,18 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
4446
4450
|
def Approvers(self, Approvers):
|
4447
4451
|
self._Approvers = Approvers
|
4448
4452
|
|
4453
|
+
@property
|
4454
|
+
def PreviewUrl(self):
|
4455
|
+
"""预览链接,有效期5分钟
|
4456
|
+
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
|
4457
|
+
:rtype: str
|
4458
|
+
"""
|
4459
|
+
return self._PreviewUrl
|
4460
|
+
|
4461
|
+
@PreviewUrl.setter
|
4462
|
+
def PreviewUrl(self, PreviewUrl):
|
4463
|
+
self._PreviewUrl = PreviewUrl
|
4464
|
+
|
4449
4465
|
@property
|
4450
4466
|
def RequestId(self):
|
4451
4467
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -4466,6 +4482,7 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
4466
4482
|
obj = ApproverItem()
|
4467
4483
|
obj._deserialize(item)
|
4468
4484
|
self._Approvers.append(obj)
|
4485
|
+
self._PreviewUrl = params.get("PreviewUrl")
|
4469
4486
|
self._RequestId = params.get("RequestId")
|
4470
4487
|
|
4471
4488
|
|
@@ -304,6 +304,29 @@ class IotexplorerClient(AbstractClient):
|
|
304
304
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
305
305
|
|
306
306
|
|
307
|
+
def CreateCloudStorageAIServiceTask(self, request):
|
308
|
+
"""创建设备云存 AI 分析任务
|
309
|
+
|
310
|
+
:param request: Request instance for CreateCloudStorageAIServiceTask.
|
311
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.CreateCloudStorageAIServiceTaskRequest`
|
312
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.CreateCloudStorageAIServiceTaskResponse`
|
313
|
+
|
314
|
+
"""
|
315
|
+
try:
|
316
|
+
params = request._serialize()
|
317
|
+
headers = request.headers
|
318
|
+
body = self.call("CreateCloudStorageAIServiceTask", params, headers=headers)
|
319
|
+
response = json.loads(body)
|
320
|
+
model = models.CreateCloudStorageAIServiceTaskResponse()
|
321
|
+
model._deserialize(response["Response"])
|
322
|
+
return model
|
323
|
+
except Exception as e:
|
324
|
+
if isinstance(e, TencentCloudSDKException):
|
325
|
+
raise
|
326
|
+
else:
|
327
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
328
|
+
|
329
|
+
|
307
330
|
def CreateDevice(self, request):
|
308
331
|
"""创建设备
|
309
332
|
|
@@ -2998,7 +3021,9 @@ class IotexplorerClient(AbstractClient):
|
|
2998
3021
|
|
2999
3022
|
|
3000
3023
|
def PublishBroadcastMessage(self, request):
|
3001
|
-
"""
|
3024
|
+
"""发布广播消息、发布RRPC消息属于早期服务,目前已停止维护,需要从官网下线。
|
3025
|
+
|
3026
|
+
发布广播消息
|
3002
3027
|
|
3003
3028
|
:param request: Request instance for PublishBroadcastMessage.
|
3004
3029
|
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.PublishBroadcastMessageRequest`
|
@@ -3067,7 +3092,9 @@ class IotexplorerClient(AbstractClient):
|
|
3067
3092
|
|
3068
3093
|
|
3069
3094
|
def PublishRRPCMessage(self, request):
|
3070
|
-
"""
|
3095
|
+
"""发布广播消息、发布RRPC消息属于早期服务,目前已停止维护,需要从官网下线。
|
3096
|
+
|
3097
|
+
下发RRPC消息
|
3071
3098
|
|
3072
3099
|
:param request: Request instance for PublishRRPCMessage.
|
3073
3100
|
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.PublishRRPCMessageRequest`
|
@@ -2722,6 +2722,226 @@ class CreateCloudStorageAIServiceResponse(AbstractModel):
|
|
2722
2722
|
self._RequestId = params.get("RequestId")
|
2723
2723
|
|
2724
2724
|
|
2725
|
+
class CreateCloudStorageAIServiceTaskRequest(AbstractModel):
|
2726
|
+
"""CreateCloudStorageAIServiceTask请求参数结构体
|
2727
|
+
|
2728
|
+
"""
|
2729
|
+
|
2730
|
+
def __init__(self):
|
2731
|
+
r"""
|
2732
|
+
:param _ProductId: 产品 ID
|
2733
|
+
:type ProductId: str
|
2734
|
+
:param _DeviceName: 设备名称
|
2735
|
+
:type DeviceName: str
|
2736
|
+
:param _ServiceType: 云存 AI 服务类型。可选值:
|
2737
|
+
- `RealtimeObjectDetect`:目标检测
|
2738
|
+
- `Highlight`:视频浓缩
|
2739
|
+
- `VideoToText`:视频语义理解
|
2740
|
+
:type ServiceType: str
|
2741
|
+
:param _StartTime: 待分析云存的起始时间
|
2742
|
+
:type StartTime: int
|
2743
|
+
:param _EndTime: 待分析云存的结束时间
|
2744
|
+
:type EndTime: int
|
2745
|
+
:param _ChannelId: 通道 ID
|
2746
|
+
:type ChannelId: int
|
2747
|
+
:param _Config: 视频分析配置参数
|
2748
|
+
:type Config: str
|
2749
|
+
:param _ROI: 视频分析识别区域
|
2750
|
+
:type ROI: str
|
2751
|
+
:param _VideoURLs: 分析外部传入的视频 URL 列表,支持 HLS 点播(m3u8)及常见视频格式(mp4 等)
|
2752
|
+
:type VideoURLs: list of str
|
2753
|
+
:param _CustomId: 自定义任务 ID
|
2754
|
+
:type CustomId: str
|
2755
|
+
"""
|
2756
|
+
self._ProductId = None
|
2757
|
+
self._DeviceName = None
|
2758
|
+
self._ServiceType = None
|
2759
|
+
self._StartTime = None
|
2760
|
+
self._EndTime = None
|
2761
|
+
self._ChannelId = None
|
2762
|
+
self._Config = None
|
2763
|
+
self._ROI = None
|
2764
|
+
self._VideoURLs = None
|
2765
|
+
self._CustomId = None
|
2766
|
+
|
2767
|
+
@property
|
2768
|
+
def ProductId(self):
|
2769
|
+
"""产品 ID
|
2770
|
+
:rtype: str
|
2771
|
+
"""
|
2772
|
+
return self._ProductId
|
2773
|
+
|
2774
|
+
@ProductId.setter
|
2775
|
+
def ProductId(self, ProductId):
|
2776
|
+
self._ProductId = ProductId
|
2777
|
+
|
2778
|
+
@property
|
2779
|
+
def DeviceName(self):
|
2780
|
+
"""设备名称
|
2781
|
+
:rtype: str
|
2782
|
+
"""
|
2783
|
+
return self._DeviceName
|
2784
|
+
|
2785
|
+
@DeviceName.setter
|
2786
|
+
def DeviceName(self, DeviceName):
|
2787
|
+
self._DeviceName = DeviceName
|
2788
|
+
|
2789
|
+
@property
|
2790
|
+
def ServiceType(self):
|
2791
|
+
"""云存 AI 服务类型。可选值:
|
2792
|
+
- `RealtimeObjectDetect`:目标检测
|
2793
|
+
- `Highlight`:视频浓缩
|
2794
|
+
- `VideoToText`:视频语义理解
|
2795
|
+
:rtype: str
|
2796
|
+
"""
|
2797
|
+
return self._ServiceType
|
2798
|
+
|
2799
|
+
@ServiceType.setter
|
2800
|
+
def ServiceType(self, ServiceType):
|
2801
|
+
self._ServiceType = ServiceType
|
2802
|
+
|
2803
|
+
@property
|
2804
|
+
def StartTime(self):
|
2805
|
+
"""待分析云存的起始时间
|
2806
|
+
:rtype: int
|
2807
|
+
"""
|
2808
|
+
return self._StartTime
|
2809
|
+
|
2810
|
+
@StartTime.setter
|
2811
|
+
def StartTime(self, StartTime):
|
2812
|
+
self._StartTime = StartTime
|
2813
|
+
|
2814
|
+
@property
|
2815
|
+
def EndTime(self):
|
2816
|
+
"""待分析云存的结束时间
|
2817
|
+
:rtype: int
|
2818
|
+
"""
|
2819
|
+
return self._EndTime
|
2820
|
+
|
2821
|
+
@EndTime.setter
|
2822
|
+
def EndTime(self, EndTime):
|
2823
|
+
self._EndTime = EndTime
|
2824
|
+
|
2825
|
+
@property
|
2826
|
+
def ChannelId(self):
|
2827
|
+
"""通道 ID
|
2828
|
+
:rtype: int
|
2829
|
+
"""
|
2830
|
+
return self._ChannelId
|
2831
|
+
|
2832
|
+
@ChannelId.setter
|
2833
|
+
def ChannelId(self, ChannelId):
|
2834
|
+
self._ChannelId = ChannelId
|
2835
|
+
|
2836
|
+
@property
|
2837
|
+
def Config(self):
|
2838
|
+
"""视频分析配置参数
|
2839
|
+
:rtype: str
|
2840
|
+
"""
|
2841
|
+
return self._Config
|
2842
|
+
|
2843
|
+
@Config.setter
|
2844
|
+
def Config(self, Config):
|
2845
|
+
self._Config = Config
|
2846
|
+
|
2847
|
+
@property
|
2848
|
+
def ROI(self):
|
2849
|
+
"""视频分析识别区域
|
2850
|
+
:rtype: str
|
2851
|
+
"""
|
2852
|
+
return self._ROI
|
2853
|
+
|
2854
|
+
@ROI.setter
|
2855
|
+
def ROI(self, ROI):
|
2856
|
+
self._ROI = ROI
|
2857
|
+
|
2858
|
+
@property
|
2859
|
+
def VideoURLs(self):
|
2860
|
+
"""分析外部传入的视频 URL 列表,支持 HLS 点播(m3u8)及常见视频格式(mp4 等)
|
2861
|
+
:rtype: list of str
|
2862
|
+
"""
|
2863
|
+
return self._VideoURLs
|
2864
|
+
|
2865
|
+
@VideoURLs.setter
|
2866
|
+
def VideoURLs(self, VideoURLs):
|
2867
|
+
self._VideoURLs = VideoURLs
|
2868
|
+
|
2869
|
+
@property
|
2870
|
+
def CustomId(self):
|
2871
|
+
"""自定义任务 ID
|
2872
|
+
:rtype: str
|
2873
|
+
"""
|
2874
|
+
return self._CustomId
|
2875
|
+
|
2876
|
+
@CustomId.setter
|
2877
|
+
def CustomId(self, CustomId):
|
2878
|
+
self._CustomId = CustomId
|
2879
|
+
|
2880
|
+
|
2881
|
+
def _deserialize(self, params):
|
2882
|
+
self._ProductId = params.get("ProductId")
|
2883
|
+
self._DeviceName = params.get("DeviceName")
|
2884
|
+
self._ServiceType = params.get("ServiceType")
|
2885
|
+
self._StartTime = params.get("StartTime")
|
2886
|
+
self._EndTime = params.get("EndTime")
|
2887
|
+
self._ChannelId = params.get("ChannelId")
|
2888
|
+
self._Config = params.get("Config")
|
2889
|
+
self._ROI = params.get("ROI")
|
2890
|
+
self._VideoURLs = params.get("VideoURLs")
|
2891
|
+
self._CustomId = params.get("CustomId")
|
2892
|
+
memeber_set = set(params.keys())
|
2893
|
+
for name, value in vars(self).items():
|
2894
|
+
property_name = name[1:]
|
2895
|
+
if property_name in memeber_set:
|
2896
|
+
memeber_set.remove(property_name)
|
2897
|
+
if len(memeber_set) > 0:
|
2898
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2899
|
+
|
2900
|
+
|
2901
|
+
|
2902
|
+
class CreateCloudStorageAIServiceTaskResponse(AbstractModel):
|
2903
|
+
"""CreateCloudStorageAIServiceTask返回参数结构体
|
2904
|
+
|
2905
|
+
"""
|
2906
|
+
|
2907
|
+
def __init__(self):
|
2908
|
+
r"""
|
2909
|
+
:param _TaskId: 任务 ID
|
2910
|
+
:type TaskId: str
|
2911
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2912
|
+
:type RequestId: str
|
2913
|
+
"""
|
2914
|
+
self._TaskId = None
|
2915
|
+
self._RequestId = None
|
2916
|
+
|
2917
|
+
@property
|
2918
|
+
def TaskId(self):
|
2919
|
+
"""任务 ID
|
2920
|
+
:rtype: str
|
2921
|
+
"""
|
2922
|
+
return self._TaskId
|
2923
|
+
|
2924
|
+
@TaskId.setter
|
2925
|
+
def TaskId(self, TaskId):
|
2926
|
+
self._TaskId = TaskId
|
2927
|
+
|
2928
|
+
@property
|
2929
|
+
def RequestId(self):
|
2930
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2931
|
+
:rtype: str
|
2932
|
+
"""
|
2933
|
+
return self._RequestId
|
2934
|
+
|
2935
|
+
@RequestId.setter
|
2936
|
+
def RequestId(self, RequestId):
|
2937
|
+
self._RequestId = RequestId
|
2938
|
+
|
2939
|
+
|
2940
|
+
def _deserialize(self, params):
|
2941
|
+
self._TaskId = params.get("TaskId")
|
2942
|
+
self._RequestId = params.get("RequestId")
|
2943
|
+
|
2944
|
+
|
2725
2945
|
class CreateDeviceChannelRequest(AbstractModel):
|
2726
2946
|
"""CreateDeviceChannel请求参数结构体
|
2727
2947
|
|
@@ -2109,7 +2109,7 @@ class PhoneNumberInfo(AbstractModel):
|
|
2109
2109
|
:type PhoneNumber: str
|
2110
2110
|
:param _IsoCode: 国家码或地区码,例如 CN、US 等,对于未识别出国家码或者地区码,默认返回 DEF。
|
2111
2111
|
:type IsoCode: str
|
2112
|
-
:param _IsoName: 国家码或地区名,例如 China,可参考 [国际/港澳台短信价格总览](https://cloud.tencent.com/document/product/382/18051
|
2112
|
+
:param _IsoName: 国家码或地区名,例如 China,可参考 [国际/港澳台短信价格总览](https://cloud.tencent.com/document/product/382/18051)
|
2113
2113
|
:type IsoName: str
|
2114
2114
|
"""
|
2115
2115
|
self._Code = None
|
@@ -2188,7 +2188,7 @@ class PhoneNumberInfo(AbstractModel):
|
|
2188
2188
|
|
2189
2189
|
@property
|
2190
2190
|
def IsoName(self):
|
2191
|
-
"""国家码或地区名,例如 China,可参考 [国际/港澳台短信价格总览](https://cloud.tencent.com/document/product/382/18051
|
2191
|
+
"""国家码或地区名,例如 China,可参考 [国际/港澳台短信价格总览](https://cloud.tencent.com/document/product/382/18051)
|
2192
2192
|
:rtype: str
|
2193
2193
|
"""
|
2194
2194
|
return self._IsoName
|
@@ -1203,6 +1203,117 @@ class GetTrainingTextResponse(AbstractModel):
|
|
1203
1203
|
self._RequestId = params.get("RequestId")
|
1204
1204
|
|
1205
1205
|
|
1206
|
+
class GetVRSVoiceTypeInfoRequest(AbstractModel):
|
1207
|
+
"""GetVRSVoiceTypeInfo请求参数结构体
|
1208
|
+
|
1209
|
+
"""
|
1210
|
+
|
1211
|
+
def __init__(self):
|
1212
|
+
r"""
|
1213
|
+
:param _VoiceType: 音色id。
|
1214
|
+
:type VoiceType: int
|
1215
|
+
:param _TaskType: 0 - 除快速声音复刻外其他复刻类型(默认); 5 - 快速声音复刻。 默认为0。
|
1216
|
+
:type TaskType: int
|
1217
|
+
:param _FastVoiceType: 快速复刻音色id。
|
1218
|
+
:type FastVoiceType: str
|
1219
|
+
"""
|
1220
|
+
self._VoiceType = None
|
1221
|
+
self._TaskType = None
|
1222
|
+
self._FastVoiceType = None
|
1223
|
+
|
1224
|
+
@property
|
1225
|
+
def VoiceType(self):
|
1226
|
+
"""音色id。
|
1227
|
+
:rtype: int
|
1228
|
+
"""
|
1229
|
+
return self._VoiceType
|
1230
|
+
|
1231
|
+
@VoiceType.setter
|
1232
|
+
def VoiceType(self, VoiceType):
|
1233
|
+
self._VoiceType = VoiceType
|
1234
|
+
|
1235
|
+
@property
|
1236
|
+
def TaskType(self):
|
1237
|
+
"""0 - 除快速声音复刻外其他复刻类型(默认); 5 - 快速声音复刻。 默认为0。
|
1238
|
+
:rtype: int
|
1239
|
+
"""
|
1240
|
+
return self._TaskType
|
1241
|
+
|
1242
|
+
@TaskType.setter
|
1243
|
+
def TaskType(self, TaskType):
|
1244
|
+
self._TaskType = TaskType
|
1245
|
+
|
1246
|
+
@property
|
1247
|
+
def FastVoiceType(self):
|
1248
|
+
"""快速复刻音色id。
|
1249
|
+
:rtype: str
|
1250
|
+
"""
|
1251
|
+
return self._FastVoiceType
|
1252
|
+
|
1253
|
+
@FastVoiceType.setter
|
1254
|
+
def FastVoiceType(self, FastVoiceType):
|
1255
|
+
self._FastVoiceType = FastVoiceType
|
1256
|
+
|
1257
|
+
|
1258
|
+
def _deserialize(self, params):
|
1259
|
+
self._VoiceType = params.get("VoiceType")
|
1260
|
+
self._TaskType = params.get("TaskType")
|
1261
|
+
self._FastVoiceType = params.get("FastVoiceType")
|
1262
|
+
memeber_set = set(params.keys())
|
1263
|
+
for name, value in vars(self).items():
|
1264
|
+
property_name = name[1:]
|
1265
|
+
if property_name in memeber_set:
|
1266
|
+
memeber_set.remove(property_name)
|
1267
|
+
if len(memeber_set) > 0:
|
1268
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1269
|
+
|
1270
|
+
|
1271
|
+
|
1272
|
+
class GetVRSVoiceTypeInfoResponse(AbstractModel):
|
1273
|
+
"""GetVRSVoiceTypeInfo返回参数结构体
|
1274
|
+
|
1275
|
+
"""
|
1276
|
+
|
1277
|
+
def __init__(self):
|
1278
|
+
r"""
|
1279
|
+
:param _Data: 音色信息
|
1280
|
+
:type Data: :class:`tencentcloud.vrs.v20200824.models.VoiceTypeInfo`
|
1281
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1282
|
+
:type RequestId: str
|
1283
|
+
"""
|
1284
|
+
self._Data = None
|
1285
|
+
self._RequestId = None
|
1286
|
+
|
1287
|
+
@property
|
1288
|
+
def Data(self):
|
1289
|
+
"""音色信息
|
1290
|
+
:rtype: :class:`tencentcloud.vrs.v20200824.models.VoiceTypeInfo`
|
1291
|
+
"""
|
1292
|
+
return self._Data
|
1293
|
+
|
1294
|
+
@Data.setter
|
1295
|
+
def Data(self, Data):
|
1296
|
+
self._Data = Data
|
1297
|
+
|
1298
|
+
@property
|
1299
|
+
def RequestId(self):
|
1300
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1301
|
+
:rtype: str
|
1302
|
+
"""
|
1303
|
+
return self._RequestId
|
1304
|
+
|
1305
|
+
@RequestId.setter
|
1306
|
+
def RequestId(self, RequestId):
|
1307
|
+
self._RequestId = RequestId
|
1308
|
+
|
1309
|
+
|
1310
|
+
def _deserialize(self, params):
|
1311
|
+
if params.get("Data") is not None:
|
1312
|
+
self._Data = VoiceTypeInfo()
|
1313
|
+
self._Data._deserialize(params.get("Data"))
|
1314
|
+
self._RequestId = params.get("RequestId")
|
1315
|
+
|
1316
|
+
|
1206
1317
|
class GetVRSVoiceTypesRequest(AbstractModel):
|
1207
1318
|
"""GetVRSVoiceTypes请求参数结构体
|
1208
1319
|
|
@@ -1602,10 +1713,10 @@ class Words(AbstractModel):
|
|
1602
1713
|
|
1603
1714
|
def __init__(self):
|
1604
1715
|
r"""
|
1605
|
-
:param _PronAccuracy: 准确度 (
|
1716
|
+
:param _PronAccuracy: 准确度 (小于75则认为不合格)
|
1606
1717
|
注意:此字段可能返回 null,表示取不到有效值。
|
1607
1718
|
:type PronAccuracy: float
|
1608
|
-
:param _PronFluency: 流畅度 (
|
1719
|
+
:param _PronFluency: 流畅度 (小于0.95则认为不合格)
|
1609
1720
|
注意:此字段可能返回 null,表示取不到有效值。
|
1610
1721
|
:type PronFluency: float
|
1611
1722
|
:param _Tag: tag:
|
@@ -1628,7 +1739,7 @@ class Words(AbstractModel):
|
|
1628
1739
|
|
1629
1740
|
@property
|
1630
1741
|
def PronAccuracy(self):
|
1631
|
-
"""准确度 (
|
1742
|
+
"""准确度 (小于75则认为不合格)
|
1632
1743
|
注意:此字段可能返回 null,表示取不到有效值。
|
1633
1744
|
:rtype: float
|
1634
1745
|
"""
|
@@ -1640,7 +1751,7 @@ class Words(AbstractModel):
|
|
1640
1751
|
|
1641
1752
|
@property
|
1642
1753
|
def PronFluency(self):
|
1643
|
-
"""流畅度 (
|
1754
|
+
"""流畅度 (小于0.95则认为不合格)
|
1644
1755
|
注意:此字段可能返回 null,表示取不到有效值。
|
1645
1756
|
:rtype: float
|
1646
1757
|
"""
|
@@ -176,6 +176,29 @@ class VrsClient(AbstractClient):
|
|
176
176
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
177
177
|
|
178
178
|
|
179
|
+
def GetVRSVoiceTypeInfo(self, request):
|
180
|
+
"""该接口用于查询复刻音色详细信息。
|
181
|
+
|
182
|
+
:param request: Request instance for GetVRSVoiceTypeInfo.
|
183
|
+
:type request: :class:`tencentcloud.vrs.v20200824.models.GetVRSVoiceTypeInfoRequest`
|
184
|
+
:rtype: :class:`tencentcloud.vrs.v20200824.models.GetVRSVoiceTypeInfoResponse`
|
185
|
+
|
186
|
+
"""
|
187
|
+
try:
|
188
|
+
params = request._serialize()
|
189
|
+
headers = request.headers
|
190
|
+
body = self.call("GetVRSVoiceTypeInfo", params, headers=headers)
|
191
|
+
response = json.loads(body)
|
192
|
+
model = models.GetVRSVoiceTypeInfoResponse()
|
193
|
+
model._deserialize(response["Response"])
|
194
|
+
return model
|
195
|
+
except Exception as e:
|
196
|
+
if isinstance(e, TencentCloudSDKException):
|
197
|
+
raise
|
198
|
+
else:
|
199
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
200
|
+
|
201
|
+
|
179
202
|
def GetVRSVoiceTypes(self, request):
|
180
203
|
"""查询复刻音色
|
181
204
|
|
{tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=Ow3F_RstvrO_BbP0z9homfK6IviRClk7pZJCN_MQnyw,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -611,7 +611,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=O9e3iv74K4tUd9YKAf61DQ1KKG59MwV
|
|
611
611
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
612
612
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
613
613
|
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=gViDjJshQAGwaqIxetHBcxFUIPbqvdsaMjjCiLMLzFQ,157794
|
614
|
-
tencentcloud/essbasic/v20210526/models.py,sha256=
|
614
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=7wm_0Qy-3AVB0mLJpCEL1gQWWyvLVBf1q8pIojuCfLE,1148978
|
615
615
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
616
616
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
617
617
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -771,8 +771,8 @@ tencentcloud/iotcloud/v20210408/models.py,sha256=V1ywfytu7T3iC7g3vQrCgqLUiYrgpl_
|
|
771
771
|
tencentcloud/iotexplorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
772
772
|
tencentcloud/iotexplorer/v20190423/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
773
773
|
tencentcloud/iotexplorer/v20190423/errorcodes.py,sha256=5ngBLiqBqH9-cLKp8t3oSSc0eosxdjP6gJxyupQZKtA,23452
|
774
|
-
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=
|
775
|
-
tencentcloud/iotexplorer/v20190423/models.py,sha256=
|
774
|
+
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=0xAQ_nvXUkpKc0hUV9xCUxor3-lXjLGS1DTLV5W7mCo,140044
|
775
|
+
tencentcloud/iotexplorer/v20190423/models.py,sha256=oVO5o4luknELodkomH1iR4SziAH_VkxNpnXeNPhvfEg,755807
|
776
776
|
tencentcloud/iottid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
777
777
|
tencentcloud/iottid/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
778
778
|
tencentcloud/iottid/v20190411/errorcodes.py,sha256=8HLJco204GFDbjmQDdjbUSLO1AFGPXVNVhsglGcae-g,1707
|
@@ -1059,7 +1059,7 @@ tencentcloud/sms/v20190711/models.py,sha256=pfutYU5f-D5jT3VNS3q3NWYclFMaXYoiBQwg
|
|
1059
1059
|
tencentcloud/sms/v20190711/sms_client.py,sha256=fyELgzDGcMjxfr82ieA2TU9uZ0L8TrYZPgJESGudcC0,22470
|
1060
1060
|
tencentcloud/sms/v20210111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1061
1061
|
tencentcloud/sms/v20210111/errorcodes.py,sha256=5x058pFyD_LrkYq3XhLQgKnu1HOxW-WXiv6dLZL01ng,20966
|
1062
|
-
tencentcloud/sms/v20210111/models.py,sha256=
|
1062
|
+
tencentcloud/sms/v20210111/models.py,sha256=A1uLz0qpiKGcP8RXmJOxXr9NmYoIpZuXuuO4ikajymc,137344
|
1063
1063
|
tencentcloud/sms/v20210111/sms_client.py,sha256=o5PZBWAQ128iDAu4C0qzKnIlhx1nnCsr4TMQYpPDevw,25326
|
1064
1064
|
tencentcloud/soe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1065
1065
|
tencentcloud/soe/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1437,8 +1437,8 @@ tencentcloud/vpc/v20170312/vpc_client.py,sha256=WrTgyRJUH56icUFOlZVwj1NvQtEYzPoM
|
|
1437
1437
|
tencentcloud/vrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1438
1438
|
tencentcloud/vrs/v20200824/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1439
1439
|
tencentcloud/vrs/v20200824/errorcodes.py,sha256=3O-SknHK8RKn0fv6LNWHVFDTtpYMRW_TiCg_N_-XHho,2250
|
1440
|
-
tencentcloud/vrs/v20200824/models.py,sha256=
|
1441
|
-
tencentcloud/vrs/v20200824/vrs_client.py,sha256=
|
1440
|
+
tencentcloud/vrs/v20200824/models.py,sha256=hZ_pqVhGEL-maoBWpj-vyHcvTJ5NeXMZonW3IFMgnr4,54453
|
1441
|
+
tencentcloud/vrs/v20200824/vrs_client.py,sha256=4U9Ta8gH45c5R_ZSOs3wXOTe_7gIfVWGM8L-NzSTxJc,9575
|
1442
1442
|
tencentcloud/vtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1443
1443
|
tencentcloud/vtc/v20240223/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1444
1444
|
tencentcloud/vtc/v20240223/errorcodes.py,sha256=20JHP-9IY0DxziLgJAIiQQV-uBy7M3z2f7GaNFajckU,3580
|
@@ -1493,8 +1493,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1493
1493
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1494
1494
|
tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
|
1495
1495
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1496
|
-
tencentcloud_sdk_python-3.0.
|
1497
|
-
tencentcloud_sdk_python-3.0.
|
1498
|
-
tencentcloud_sdk_python-3.0.
|
1499
|
-
tencentcloud_sdk_python-3.0.
|
1500
|
-
tencentcloud_sdk_python-3.0.
|
1496
|
+
tencentcloud_sdk_python-3.0.1284.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1497
|
+
tencentcloud_sdk_python-3.0.1284.dist-info/METADATA,sha256=GiQo27ZgzvHhdy-0M7-Yd7izWQxK_5A6GWETCQIrGKk,1511
|
1498
|
+
tencentcloud_sdk_python-3.0.1284.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1499
|
+
tencentcloud_sdk_python-3.0.1284.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1500
|
+
tencentcloud_sdk_python-3.0.1284.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1283.dist-info → tencentcloud_sdk_python-3.0.1284.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|