tencentcloud-sdk-python-mps 3.0.1278__tar.gz → 3.0.1280__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 (16) hide show
  1. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/setup.py +1 -1
  3. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud/mps/v20190612/models.py +17 -0
  5. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-mps-3.0.1280/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-mps-3.0.1278/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/README.rst +0 -0
  9. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-mps-3.0.1278 → tencentcloud-sdk-python-mps-3.0.1280}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1278
3
+ Version: 3.0.1280
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-mps',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1278"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1280"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Mps SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1278'
17
+ __version__ = '3.0.1280'
@@ -1703,9 +1703,13 @@ class AddOnSubtitle(AbstractModel):
1703
1703
  :param _Subtitle: 字幕文件。
1704
1704
  注意:此字段可能返回 null,表示取不到有效值。
1705
1705
  :type Subtitle: :class:`tencentcloud.mps.v20190612.models.MediaInputInfo`
1706
+ :param _SubtitleName: 字幕名称
1707
+ 注意:此字段可能返回 null,表示取不到有效值。
1708
+ :type SubtitleName: str
1706
1709
  """
1707
1710
  self._Type = None
1708
1711
  self._Subtitle = None
1712
+ self._SubtitleName = None
1709
1713
 
1710
1714
  @property
1711
1715
  def Type(self):
@@ -1734,12 +1738,25 @@ class AddOnSubtitle(AbstractModel):
1734
1738
  def Subtitle(self, Subtitle):
1735
1739
  self._Subtitle = Subtitle
1736
1740
 
1741
+ @property
1742
+ def SubtitleName(self):
1743
+ """字幕名称
1744
+ 注意:此字段可能返回 null,表示取不到有效值。
1745
+ :rtype: str
1746
+ """
1747
+ return self._SubtitleName
1748
+
1749
+ @SubtitleName.setter
1750
+ def SubtitleName(self, SubtitleName):
1751
+ self._SubtitleName = SubtitleName
1752
+
1737
1753
 
1738
1754
  def _deserialize(self, params):
1739
1755
  self._Type = params.get("Type")
1740
1756
  if params.get("Subtitle") is not None:
1741
1757
  self._Subtitle = MediaInputInfo()
1742
1758
  self._Subtitle._deserialize(params.get("Subtitle"))
1759
+ self._SubtitleName = params.get("SubtitleName")
1743
1760
  memeber_set = set(params.keys())
1744
1761
  for name, value in vars(self).items():
1745
1762
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1278
3
+ Version: 3.0.1280
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1280
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1278