tencentcloud-sdk-python-mps 3.1.96__tar.gz → 3.1.99__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_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/setup.py +1 -1
  3. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/mps/v20190612/models.py +48 -3
  5. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_mps-3.1.99/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_mps-3.1.96/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/README.rst +0 -0
  9. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud/mps/v20190612/mps_client_async.py +0 -0
  15. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_mps-3.1.96 → tencentcloud_sdk_python_mps-3.1.99}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.1.96
3
+ Version: 3.1.99
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
@@ -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.96
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
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-mps',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.96,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.99,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Mps SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.96'
17
+ __version__ = '3.1.99'
@@ -2187,14 +2187,28 @@ class AddOnImageInput(AbstractModel):
2187
2187
 
2188
2188
  def __init__(self):
2189
2189
  r"""
2190
- :param _Image: 图片路径。
2190
+ :param _Type: <p>图片类型。</p>
2191
+ :type Type: str
2192
+ :param _Image: <p>图片路径。</p>
2191
2193
  :type Image: :class:`tencentcloud.mps.v20190612.models.MediaInputInfo`
2192
2194
  """
2195
+ self._Type = None
2193
2196
  self._Image = None
2194
2197
 
2198
+ @property
2199
+ def Type(self):
2200
+ r"""<p>图片类型。</p>
2201
+ :rtype: str
2202
+ """
2203
+ return self._Type
2204
+
2205
+ @Type.setter
2206
+ def Type(self, Type):
2207
+ self._Type = Type
2208
+
2195
2209
  @property
2196
2210
  def Image(self):
2197
- r"""图片路径。
2211
+ r"""<p>图片路径。</p>
2198
2212
  :rtype: :class:`tencentcloud.mps.v20190612.models.MediaInputInfo`
2199
2213
  """
2200
2214
  return self._Image
@@ -2205,6 +2219,7 @@ class AddOnImageInput(AbstractModel):
2205
2219
 
2206
2220
 
2207
2221
  def _deserialize(self, params):
2222
+ self._Type = params.get("Type")
2208
2223
  if params.get("Image") is not None:
2209
2224
  self._Image = MediaInputInfo()
2210
2225
  self._Image._deserialize(params.get("Image"))
@@ -12787,7 +12802,7 @@ class AigcImageInfo(AbstractModel):
12787
12802
 
12788
12803
 
12789
12804
  class AigcStoreCosParam(AbstractModel):
12790
- r"""Aigc结果文件上传COS时,需传入的信息。 需创建并授权LVB_QCSRole角色。
12805
+ r"""Aigc结果文件上传COS时,需传入的信息。 需创建并授权MPS_QcsRole角色。
12791
12806
 
12792
12807
  """
12793
12808
 
@@ -31871,6 +31886,8 @@ class DescribeDesignTaskResponse(AbstractModel):
31871
31886
  :param _VoiceId: <p>音色id</p>
31872
31887
  注意:此字段可能返回 null,表示取不到有效值。
31873
31888
  :type VoiceId: str
31889
+ :param _AudioUrl: <p>试听音频Url</p>
31890
+ :type AudioUrl: str
31874
31891
  :param _ExtInfo: <p>扩展信息</p>
31875
31892
  注意:此字段可能返回 null,表示取不到有效值。
31876
31893
  :type ExtInfo: str
@@ -31881,6 +31898,7 @@ class DescribeDesignTaskResponse(AbstractModel):
31881
31898
  self._Msg = None
31882
31899
  self._Status = None
31883
31900
  self._VoiceId = None
31901
+ self._AudioUrl = None
31884
31902
  self._ExtInfo = None
31885
31903
  self._RequestId = None
31886
31904
 
@@ -31929,6 +31947,17 @@ class DescribeDesignTaskResponse(AbstractModel):
31929
31947
  def VoiceId(self, VoiceId):
31930
31948
  self._VoiceId = VoiceId
31931
31949
 
31950
+ @property
31951
+ def AudioUrl(self):
31952
+ r"""<p>试听音频Url</p>
31953
+ :rtype: str
31954
+ """
31955
+ return self._AudioUrl
31956
+
31957
+ @AudioUrl.setter
31958
+ def AudioUrl(self, AudioUrl):
31959
+ self._AudioUrl = AudioUrl
31960
+
31932
31961
  @property
31933
31962
  def ExtInfo(self):
31934
31963
  r"""<p>扩展信息</p>
@@ -31958,6 +31987,7 @@ class DescribeDesignTaskResponse(AbstractModel):
31958
31987
  self._Msg = params.get("Msg")
31959
31988
  self._Status = params.get("Status")
31960
31989
  self._VoiceId = params.get("VoiceId")
31990
+ self._AudioUrl = params.get("AudioUrl")
31961
31991
  self._ExtInfo = params.get("ExtInfo")
31962
31992
  self._RequestId = params.get("RequestId")
31963
31993
 
@@ -42701,11 +42731,14 @@ class DesignVoiceAsyncRequest(AbstractModel):
42701
42731
  :type Prompt: str
42702
42732
  :param _VoiceProfile: <p>音色属性</p>
42703
42733
  :type VoiceProfile: :class:`tencentcloud.mps.v20190612.models.VoiceProfile`
42734
+ :param _Text: <p>试听音频文本。长度不超过500</p>
42735
+ :type Text: str
42704
42736
  :param _ExtParam: <p>扩展参数,json字符串</p>
42705
42737
  :type ExtParam: str
42706
42738
  """
42707
42739
  self._Prompt = None
42708
42740
  self._VoiceProfile = None
42741
+ self._Text = None
42709
42742
  self._ExtParam = None
42710
42743
 
42711
42744
  @property
@@ -42730,6 +42763,17 @@ class DesignVoiceAsyncRequest(AbstractModel):
42730
42763
  def VoiceProfile(self, VoiceProfile):
42731
42764
  self._VoiceProfile = VoiceProfile
42732
42765
 
42766
+ @property
42767
+ def Text(self):
42768
+ r"""<p>试听音频文本。长度不超过500</p>
42769
+ :rtype: str
42770
+ """
42771
+ return self._Text
42772
+
42773
+ @Text.setter
42774
+ def Text(self, Text):
42775
+ self._Text = Text
42776
+
42733
42777
  @property
42734
42778
  def ExtParam(self):
42735
42779
  r"""<p>扩展参数,json字符串</p>
@@ -42747,6 +42791,7 @@ class DesignVoiceAsyncRequest(AbstractModel):
42747
42791
  if params.get("VoiceProfile") is not None:
42748
42792
  self._VoiceProfile = VoiceProfile()
42749
42793
  self._VoiceProfile._deserialize(params.get("VoiceProfile"))
42794
+ self._Text = params.get("Text")
42750
42795
  self._ExtParam = params.get("ExtParam")
42751
42796
  memeber_set = set(params.keys())
42752
42797
  for name, value in vars(self).items():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.1.96
3
+ Version: 3.1.99
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
@@ -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.96
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.99
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.96