tencentcloud-sdk-python-trtc 3.0.1349__tar.gz → 3.0.1350__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.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/setup.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud/trtc/v20190722/models.py +30 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-trtc-3.0.1350/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-trtc-3.0.1349/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/README.rst +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/setup.cfg +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud/trtc/v20190722/errorcodes.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud/trtc/v20190722/trtc_client.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1349 → tencentcloud-sdk-python-trtc-3.0.1350}/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.1350"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Trtc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2545,9 +2545,12 @@ class DescribeCloudRecordingRequest(AbstractModel):
|
|
|
2545
2545
|
:type SdkAppId: int
|
|
2546
2546
|
:param _TaskId: 录制任务的唯一Id,在启动录制成功后会返回。
|
|
2547
2547
|
:type TaskId: str
|
|
2548
|
+
:param _RecorderKey: 转推录制任务发起时所填,标识一次录制
|
|
2549
|
+
:type RecorderKey: str
|
|
2548
2550
|
"""
|
|
2549
2551
|
self._SdkAppId = None
|
|
2550
2552
|
self._TaskId = None
|
|
2553
|
+
self._RecorderKey = None
|
|
2551
2554
|
|
|
2552
2555
|
@property
|
|
2553
2556
|
def SdkAppId(self):
|
|
@@ -2571,10 +2574,22 @@ class DescribeCloudRecordingRequest(AbstractModel):
|
|
|
2571
2574
|
def TaskId(self, TaskId):
|
|
2572
2575
|
self._TaskId = TaskId
|
|
2573
2576
|
|
|
2577
|
+
@property
|
|
2578
|
+
def RecorderKey(self):
|
|
2579
|
+
"""转推录制任务发起时所填,标识一次录制
|
|
2580
|
+
:rtype: str
|
|
2581
|
+
"""
|
|
2582
|
+
return self._RecorderKey
|
|
2583
|
+
|
|
2584
|
+
@RecorderKey.setter
|
|
2585
|
+
def RecorderKey(self, RecorderKey):
|
|
2586
|
+
self._RecorderKey = RecorderKey
|
|
2587
|
+
|
|
2574
2588
|
|
|
2575
2589
|
def _deserialize(self, params):
|
|
2576
2590
|
self._SdkAppId = params.get("SdkAppId")
|
|
2577
2591
|
self._TaskId = params.get("TaskId")
|
|
2592
|
+
self._RecorderKey = params.get("RecorderKey")
|
|
2578
2593
|
memeber_set = set(params.keys())
|
|
2579
2594
|
for name, value in vars(self).items():
|
|
2580
2595
|
property_name = name[1:]
|
|
@@ -2601,12 +2616,15 @@ Exited:表示当前录制任务正在退出的过程中。
|
|
|
2601
2616
|
:type Status: str
|
|
2602
2617
|
:param _StorageFileList: 录制文件信息。
|
|
2603
2618
|
:type StorageFileList: list of StorageFile
|
|
2619
|
+
:param _RecorderKey: 转推录制任务发起时所填,标识一次录制
|
|
2620
|
+
:type RecorderKey: str
|
|
2604
2621
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2605
2622
|
:type RequestId: str
|
|
2606
2623
|
"""
|
|
2607
2624
|
self._TaskId = None
|
|
2608
2625
|
self._Status = None
|
|
2609
2626
|
self._StorageFileList = None
|
|
2627
|
+
self._RecorderKey = None
|
|
2610
2628
|
self._RequestId = None
|
|
2611
2629
|
|
|
2612
2630
|
@property
|
|
@@ -2645,6 +2663,17 @@ Exited:表示当前录制任务正在退出的过程中。
|
|
|
2645
2663
|
def StorageFileList(self, StorageFileList):
|
|
2646
2664
|
self._StorageFileList = StorageFileList
|
|
2647
2665
|
|
|
2666
|
+
@property
|
|
2667
|
+
def RecorderKey(self):
|
|
2668
|
+
"""转推录制任务发起时所填,标识一次录制
|
|
2669
|
+
:rtype: str
|
|
2670
|
+
"""
|
|
2671
|
+
return self._RecorderKey
|
|
2672
|
+
|
|
2673
|
+
@RecorderKey.setter
|
|
2674
|
+
def RecorderKey(self, RecorderKey):
|
|
2675
|
+
self._RecorderKey = RecorderKey
|
|
2676
|
+
|
|
2648
2677
|
@property
|
|
2649
2678
|
def RequestId(self):
|
|
2650
2679
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2666,6 +2695,7 @@ Exited:表示当前录制任务正在退出的过程中。
|
|
|
2666
2695
|
obj = StorageFile()
|
|
2667
2696
|
obj._deserialize(item)
|
|
2668
2697
|
self._StorageFileList.append(obj)
|
|
2698
|
+
self._RecorderKey = params.get("RecorderKey")
|
|
2669
2699
|
self._RequestId = params.get("RequestId")
|
|
2670
2700
|
|
|
2671
2701
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1350
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1349
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|