tencentcloud-sdk-python-mps 3.1.124__tar.gz → 3.1.126__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.124 → tencentcloud_sdk_python_mps-3.1.126}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/setup.py +1 -1
  3. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/mps/v20190612/models.py +17 -2
  5. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_mps-3.1.126/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_mps-3.1.124/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/README.rst +0 -0
  9. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud/mps/v20190612/mps_client_async.py +0 -0
  15. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_mps-3.1.124 → tencentcloud_sdk_python_mps-3.1.126}/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.124
3
+ Version: 3.1.126
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.124
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.126
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.124,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.126,<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.124'
17
+ __version__ = '3.1.126'
@@ -49865,14 +49865,17 @@ class ImageProcessPrompt(AbstractModel):
49865
49865
 
49866
49866
  def __init__(self):
49867
49867
  r"""
49868
- :param _Prompt: 图片处理相关的prompt
49868
+ :param _Prompt: <p>图片处理相关的prompt。</p>
49869
49869
  :type Prompt: str
49870
+ :param _Role: <p>prompt 对应的 role。</p>
49871
+ :type Role: str
49870
49872
  """
49871
49873
  self._Prompt = None
49874
+ self._Role = None
49872
49875
 
49873
49876
  @property
49874
49877
  def Prompt(self):
49875
- r"""图片处理相关的prompt
49878
+ r"""<p>图片处理相关的prompt。</p>
49876
49879
  :rtype: str
49877
49880
  """
49878
49881
  return self._Prompt
@@ -49881,9 +49884,21 @@ class ImageProcessPrompt(AbstractModel):
49881
49884
  def Prompt(self, Prompt):
49882
49885
  self._Prompt = Prompt
49883
49886
 
49887
+ @property
49888
+ def Role(self):
49889
+ r"""<p>prompt 对应的 role。</p>
49890
+ :rtype: str
49891
+ """
49892
+ return self._Role
49893
+
49894
+ @Role.setter
49895
+ def Role(self, Role):
49896
+ self._Role = Role
49897
+
49884
49898
 
49885
49899
  def _deserialize(self, params):
49886
49900
  self._Prompt = params.get("Prompt")
49901
+ self._Role = params.get("Role")
49887
49902
  memeber_set = set(params.keys())
49888
49903
  for name, value in vars(self).items():
49889
49904
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.1.124
3
+ Version: 3.1.126
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.124
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.126
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.126
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.124