tencentcloud-sdk-python-trtc 3.0.1173__tar.gz → 3.0.1174__tar.gz
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-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/setup.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/errorcodes.py +2 -2
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/models.py +12 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-trtc-3.0.1174/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-trtc-3.0.1173/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/README.rst +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/setup.cfg +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/trtc_client.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1173 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-trtc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1174"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Trtc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -38,8 +38,8 @@ FAILEDOPERATION_MIXSESSIONNOTEXIST = 'FailedOperation.MixSessionNotExist'
|
|
|
38
38
|
# 需要解锁所需能力位
|
|
39
39
|
FAILEDOPERATION_NOTABILITY = 'FailedOperation.NotAbility'
|
|
40
40
|
|
|
41
|
-
#
|
|
42
|
-
|
|
41
|
+
# 不允许此操作,请提交工单联系我们
|
|
42
|
+
FAILEDOPERATION_NOTALLOWED = 'FailedOperation.NotAllowed'
|
|
43
43
|
|
|
44
44
|
# 查询任务失败
|
|
45
45
|
FAILEDOPERATION_QUERYTASKINFOFAILED = 'FailedOperation.QueryTaskInfoFailed'
|
|
@@ -9004,26 +9004,38 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
9004
9004
|
|
|
9005
9005
|
@property
|
|
9006
9006
|
def VideoEncodeParams(self):
|
|
9007
|
+
warnings.warn("parameter `VideoEncodeParams` is deprecated", DeprecationWarning)
|
|
9008
|
+
|
|
9007
9009
|
return self._VideoEncodeParams
|
|
9008
9010
|
|
|
9009
9011
|
@VideoEncodeParams.setter
|
|
9010
9012
|
def VideoEncodeParams(self, VideoEncodeParams):
|
|
9013
|
+
warnings.warn("parameter `VideoEncodeParams` is deprecated", DeprecationWarning)
|
|
9014
|
+
|
|
9011
9015
|
self._VideoEncodeParams = VideoEncodeParams
|
|
9012
9016
|
|
|
9013
9017
|
@property
|
|
9014
9018
|
def AudioEncodeParams(self):
|
|
9019
|
+
warnings.warn("parameter `AudioEncodeParams` is deprecated", DeprecationWarning)
|
|
9020
|
+
|
|
9015
9021
|
return self._AudioEncodeParams
|
|
9016
9022
|
|
|
9017
9023
|
@AudioEncodeParams.setter
|
|
9018
9024
|
def AudioEncodeParams(self, AudioEncodeParams):
|
|
9025
|
+
warnings.warn("parameter `AudioEncodeParams` is deprecated", DeprecationWarning)
|
|
9026
|
+
|
|
9019
9027
|
self._AudioEncodeParams = AudioEncodeParams
|
|
9020
9028
|
|
|
9021
9029
|
@property
|
|
9022
9030
|
def SourceUrl(self):
|
|
9031
|
+
warnings.warn("parameter `SourceUrl` is deprecated", DeprecationWarning)
|
|
9032
|
+
|
|
9023
9033
|
return self._SourceUrl
|
|
9024
9034
|
|
|
9025
9035
|
@SourceUrl.setter
|
|
9026
9036
|
def SourceUrl(self, SourceUrl):
|
|
9037
|
+
warnings.warn("parameter `SourceUrl` is deprecated", DeprecationWarning)
|
|
9038
|
+
|
|
9027
9039
|
self._SourceUrl = SourceUrl
|
|
9028
9040
|
|
|
9029
9041
|
@property
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1174
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1173
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|