tencentcloud-sdk-python-ai3d 3.1.35__tar.gz → 3.1.37__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_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/ai3d/v20250513/models.py +15 -0
  5. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud_sdk_python_ai3d.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ai3d-3.1.37/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ai3d-3.1.35/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/ai3d/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/ai3d/v20250513/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/ai3d/v20250513/ai3d_client.py +0 -0
  13. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/ai3d/v20250513/ai3d_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud/ai3d/v20250513/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud_sdk_python_ai3d.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud_sdk_python_ai3d.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ai3d-3.1.35 → tencentcloud_sdk_python_ai3d-3.1.37}/tencentcloud_sdk_python_ai3d.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ai3d
3
- Version: 3.1.35
3
+ Version: 3.1.37
4
4
  Summary: Tencent Cloud Ai3d 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.35
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.37
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-ai3d',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.35,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.37,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Ai3d SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.35'
17
+ __version__ = '3.1.37'
@@ -1192,8 +1192,11 @@ class SubmitHunyuan3DPartJobRequest(AbstractModel):
1192
1192
  r"""
1193
1193
  :param _File: 需进行组件生成的3D模型文件,仅支持FBX格式。
1194
1194
  :type File: :class:`tencentcloud.ai3d.v20250513.models.InputFile3D`
1195
+ :param _Model: 组件生成模型版本,默认为1.0,可选项:1.0,1.5;
1196
+ :type Model: str
1195
1197
  """
1196
1198
  self._File = None
1199
+ self._Model = None
1197
1200
 
1198
1201
  @property
1199
1202
  def File(self):
@@ -1206,11 +1209,23 @@ class SubmitHunyuan3DPartJobRequest(AbstractModel):
1206
1209
  def File(self, File):
1207
1210
  self._File = File
1208
1211
 
1212
+ @property
1213
+ def Model(self):
1214
+ r"""组件生成模型版本,默认为1.0,可选项:1.0,1.5;
1215
+ :rtype: str
1216
+ """
1217
+ return self._Model
1218
+
1219
+ @Model.setter
1220
+ def Model(self, Model):
1221
+ self._Model = Model
1222
+
1209
1223
 
1210
1224
  def _deserialize(self, params):
1211
1225
  if params.get("File") is not None:
1212
1226
  self._File = InputFile3D()
1213
1227
  self._File._deserialize(params.get("File"))
1228
+ self._Model = params.get("Model")
1214
1229
  memeber_set = set(params.keys())
1215
1230
  for name, value in vars(self).items():
1216
1231
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ai3d
3
- Version: 3.1.35
3
+ Version: 3.1.37
4
4
  Summary: Tencent Cloud Ai3d 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.35
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.37
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.37
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.35