tencentcloud-sdk-python-trtc 3.0.1260__py2.py3-none-any.whl → 3.0.1280__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-trtc might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- tencentcloud/trtc/v20190722/models.py +3085 -16
- tencentcloud/trtc/v20190722/trtc_client.py +47 -0
- {tencentcloud_sdk_python_trtc-3.0.1260.dist-info → tencentcloud_sdk_python_trtc-3.0.1280.dist-info}/METADATA +3 -3
- tencentcloud_sdk_python_trtc-3.0.1280.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_trtc-3.0.1260.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_trtc-3.0.1260.dist-info → tencentcloud_sdk_python_trtc-3.0.1280.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_trtc-3.0.1260.dist-info → tencentcloud_sdk_python_trtc-3.0.1280.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -32,6 +32,9 @@ FAILEDOPERATION = 'FailedOperation'
|
|
|
32
32
|
# 云端录制方法不支持。
|
|
33
33
|
FAILEDOPERATION_CRUNSUPPORTMETHOD = 'FailedOperation.CRUnsupportMethod'
|
|
34
34
|
|
|
35
|
+
# 云端切片方法不支持。
|
|
36
|
+
FAILEDOPERATION_CSUNSUPPORTMETHOD = 'FailedOperation.CSUnsupportMethod'
|
|
37
|
+
|
|
35
38
|
# 房间中没有设置混流模板。
|
|
36
39
|
FAILEDOPERATION_MIXSESSIONNOTEXIST = 'FailedOperation.MixSessionNotExist'
|
|
37
40
|
|
|
@@ -77,6 +80,9 @@ INTERNALERROR = 'InternalError'
|
|
|
77
80
|
# 云端录制内部服务错误。
|
|
78
81
|
INTERNALERROR_CRINTERNALERROR = 'InternalError.CRInternalError'
|
|
79
82
|
|
|
83
|
+
# 云端切片内部服务错误
|
|
84
|
+
INTERNALERROR_CSINTERNALERROR = 'InternalError.CSInternalError'
|
|
85
|
+
|
|
80
86
|
# 数据库查询异常。
|
|
81
87
|
INTERNALERROR_DBERROR = 'InternalError.DBError'
|
|
82
88
|
|
|
@@ -302,6 +308,15 @@ MISSINGPARAMETER_SDKAPPID = 'MissingParameter.SdkAppId'
|
|
|
302
308
|
# 缺少SecretKey参数。
|
|
303
309
|
MISSINGPARAMETER_SECRETKEY = 'MissingParameter.SecretKey'
|
|
304
310
|
|
|
311
|
+
# 缺少SliceParams参数。
|
|
312
|
+
MISSINGPARAMETER_SLICEPARAMS = 'MissingParameter.SliceParams'
|
|
313
|
+
|
|
314
|
+
# 缺少SliceStorageParams参数。
|
|
315
|
+
MISSINGPARAMETER_SLICESTORAGEPARAMS = 'MissingParameter.SliceStorageParams'
|
|
316
|
+
|
|
317
|
+
# 缺少SliceType参数。
|
|
318
|
+
MISSINGPARAMETER_SLICETYPE = 'MissingParameter.SliceType'
|
|
319
|
+
|
|
305
320
|
# 缺少startTS_s参数。
|
|
306
321
|
MISSINGPARAMETER_STARTTS = 'MissingParameter.StartTs'
|
|
307
322
|
|