tencentcloud-sdk-python-live 3.1.102__tar.gz → 3.1.125__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/setup.py +1 -1
  3. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/live/v20180801/errorcodes.py +3 -0
  5. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/live/v20180801/models.py +83 -0
  6. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +2 -2
  7. tencentcloud_sdk_python_live-3.1.125/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  8. tencentcloud_sdk_python_live-3.1.102/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  9. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/README.rst +0 -0
  10. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/setup.cfg +0 -0
  11. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/live/__init__.py +0 -0
  12. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/live/v20180801/__init__.py +0 -0
  13. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/live/v20180801/live_client.py +0 -0
  14. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud/live/v20180801/live_client_async.py +0 -0
  15. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_live-3.1.102 → tencentcloud_sdk_python_live-3.1.125}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.1.102
3
+ Version: 3.1.125
4
4
  Summary: Tencent Cloud Live SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.102
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.125
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-live',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.102,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.125,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Live SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.102'
17
+ __version__ = '3.1.125'
@@ -701,6 +701,9 @@ RESOURCENOTFOUND_STOPSERVICE = 'ResourceNotFound.StopService'
701
701
  # TaskId 不存在。
702
702
  RESOURCENOTFOUND_TASKID = 'ResourceNotFound.TaskId'
703
703
 
704
+ # 任务不存在
705
+ RESOURCENOTFOUND_TASKNOTFOUND = 'ResourceNotFound.TaskNotFound'
706
+
704
707
  # 用户主动停服。
705
708
  RESOURCENOTFOUND_USERDISABLESERVICE = 'ResourceNotFound.UserDisableService'
706
709
 
@@ -12820,9 +12820,12 @@ class CreateVideoRedrawTaskRequest(AbstractModel):
12820
12820
  :type Input: :class:`tencentcloud.live.v20180801.models.VideoRedrawInput`
12821
12821
  :param _CosInfo: <p>用户自定义cos信息</p>
12822
12822
  :type CosInfo: :class:`tencentcloud.live.v20180801.models.VideoRedrawCosInfo`
12823
+ :param _TaskInfo: <p>转绘任务参数</p>
12824
+ :type TaskInfo: :class:`tencentcloud.live.v20180801.models.VideoRedrawTaskInfo`
12823
12825
  """
12824
12826
  self._Input = None
12825
12827
  self._CosInfo = None
12828
+ self._TaskInfo = None
12826
12829
 
12827
12830
  @property
12828
12831
  def Input(self):
@@ -12846,6 +12849,17 @@ class CreateVideoRedrawTaskRequest(AbstractModel):
12846
12849
  def CosInfo(self, CosInfo):
12847
12850
  self._CosInfo = CosInfo
12848
12851
 
12852
+ @property
12853
+ def TaskInfo(self):
12854
+ r"""<p>转绘任务参数</p>
12855
+ :rtype: :class:`tencentcloud.live.v20180801.models.VideoRedrawTaskInfo`
12856
+ """
12857
+ return self._TaskInfo
12858
+
12859
+ @TaskInfo.setter
12860
+ def TaskInfo(self, TaskInfo):
12861
+ self._TaskInfo = TaskInfo
12862
+
12849
12863
 
12850
12864
  def _deserialize(self, params):
12851
12865
  if params.get("Input") is not None:
@@ -12854,6 +12868,9 @@ class CreateVideoRedrawTaskRequest(AbstractModel):
12854
12868
  if params.get("CosInfo") is not None:
12855
12869
  self._CosInfo = VideoRedrawCosInfo()
12856
12870
  self._CosInfo._deserialize(params.get("CosInfo"))
12871
+ if params.get("TaskInfo") is not None:
12872
+ self._TaskInfo = VideoRedrawTaskInfo()
12873
+ self._TaskInfo._deserialize(params.get("TaskInfo"))
12857
12874
  memeber_set = set(params.keys())
12858
12875
  for name, value in vars(self).items():
12859
12876
  property_name = name[1:]
@@ -15583,6 +15600,10 @@ class DescribeAIGCTaskStatusResponse(AbstractModel):
15583
15600
  :type TaskResultCode: int
15584
15601
  :param _TaskResultMsg: <p>任务返回错误信息</p>
15585
15602
  :type TaskResultMsg: str
15603
+ :param _RequestBody: <p>请求参数</p>
15604
+ :type RequestBody: str
15605
+ :param _TaskType: <p>任务类型</p>
15606
+ :type TaskType: str
15586
15607
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15587
15608
  :type RequestId: str
15588
15609
  """
@@ -15594,6 +15615,8 @@ class DescribeAIGCTaskStatusResponse(AbstractModel):
15594
15615
  self._FinishedTime = None
15595
15616
  self._TaskResultCode = None
15596
15617
  self._TaskResultMsg = None
15618
+ self._RequestBody = None
15619
+ self._TaskType = None
15597
15620
  self._RequestId = None
15598
15621
 
15599
15622
  @property
@@ -15685,6 +15708,28 @@ class DescribeAIGCTaskStatusResponse(AbstractModel):
15685
15708
  def TaskResultMsg(self, TaskResultMsg):
15686
15709
  self._TaskResultMsg = TaskResultMsg
15687
15710
 
15711
+ @property
15712
+ def RequestBody(self):
15713
+ r"""<p>请求参数</p>
15714
+ :rtype: str
15715
+ """
15716
+ return self._RequestBody
15717
+
15718
+ @RequestBody.setter
15719
+ def RequestBody(self, RequestBody):
15720
+ self._RequestBody = RequestBody
15721
+
15722
+ @property
15723
+ def TaskType(self):
15724
+ r"""<p>任务类型</p>
15725
+ :rtype: str
15726
+ """
15727
+ return self._TaskType
15728
+
15729
+ @TaskType.setter
15730
+ def TaskType(self, TaskType):
15731
+ self._TaskType = TaskType
15732
+
15688
15733
  @property
15689
15734
  def RequestId(self):
15690
15735
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -15706,6 +15751,8 @@ class DescribeAIGCTaskStatusResponse(AbstractModel):
15706
15751
  self._FinishedTime = params.get("FinishedTime")
15707
15752
  self._TaskResultCode = params.get("TaskResultCode")
15708
15753
  self._TaskResultMsg = params.get("TaskResultMsg")
15754
+ self._RequestBody = params.get("RequestBody")
15755
+ self._TaskType = params.get("TaskType")
15709
15756
  self._RequestId = params.get("RequestId")
15710
15757
 
15711
15758
 
@@ -46959,6 +47006,42 @@ class VideoRedrawInput(AbstractModel):
46959
47006
 
46960
47007
 
46961
47008
 
47009
+ class VideoRedrawTaskInfo(AbstractModel):
47010
+ r"""Aigc 转绘、替换等任务参数
47011
+
47012
+ """
47013
+
47014
+ def __init__(self):
47015
+ r"""
47016
+ :param _Style: <p>转绘视频风格,如动漫、赛博朋克、水墨等</p>
47017
+ :type Style: str
47018
+ """
47019
+ self._Style = None
47020
+
47021
+ @property
47022
+ def Style(self):
47023
+ r"""<p>转绘视频风格,如动漫、赛博朋克、水墨等</p>
47024
+ :rtype: str
47025
+ """
47026
+ return self._Style
47027
+
47028
+ @Style.setter
47029
+ def Style(self, Style):
47030
+ self._Style = Style
47031
+
47032
+
47033
+ def _deserialize(self, params):
47034
+ self._Style = params.get("Style")
47035
+ memeber_set = set(params.keys())
47036
+ for name, value in vars(self).items():
47037
+ property_name = name[1:]
47038
+ if property_name in memeber_set:
47039
+ memeber_set.remove(property_name)
47040
+ if len(memeber_set) > 0:
47041
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
47042
+
47043
+
47044
+
46962
47045
  class WatermarkInfo(AbstractModel):
46963
47046
  r"""水印信息。
46964
47047
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.1.102
3
+ Version: 3.1.125
4
4
  Summary: Tencent Cloud Live SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.102
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.125
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.125
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.102