tencentcloud-sdk-python-tione 3.0.1346__tar.gz → 3.0.1348__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 (20) hide show
  1. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/setup.py +1 -1
  3. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20211111/models.py +68 -0
  5. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud_sdk_python_tione.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-tione-3.0.1348/tencentcloud_sdk_python_tione.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-tione-3.0.1346/tencentcloud_sdk_python_tione.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/README.rst +0 -0
  9. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/__init__.py +0 -0
  11. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20191022/__init__.py +0 -0
  12. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20191022/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20191022/models.py +0 -0
  14. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20191022/tione_client.py +0 -0
  15. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20211111/__init__.py +0 -0
  16. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20211111/errorcodes.py +0 -0
  17. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud/tione/v20211111/tione_client.py +0 -0
  18. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud_sdk_python_tione.egg-info/SOURCES.txt +0 -0
  19. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud_sdk_python_tione.egg-info/dependency_links.txt +0 -0
  20. {tencentcloud-sdk-python-tione-3.0.1346 → tencentcloud-sdk-python-tione-3.0.1348}/tencentcloud_sdk_python_tione.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-tione
3
- Version: 3.0.1346
3
+ Version: 3.0.1348
4
4
  Summary: Tencent Cloud Tione 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-tione',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1346"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1348"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Tione 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.1346'
17
+ __version__ = '3.0.1348'
@@ -8339,6 +8339,57 @@ class GooseFS(AbstractModel):
8339
8339
 
8340
8340
 
8341
8341
 
8342
+ class GooseFSx(AbstractModel):
8343
+ """GosseFSx的配置
8344
+
8345
+ """
8346
+
8347
+ def __init__(self):
8348
+ r"""
8349
+ :param _Id: goosefsx实例id
8350
+ :type Id: str
8351
+ :param _Path: GooseFSx实例需要挂载的路径
8352
+ :type Path: str
8353
+ """
8354
+ self._Id = None
8355
+ self._Path = None
8356
+
8357
+ @property
8358
+ def Id(self):
8359
+ """goosefsx实例id
8360
+ :rtype: str
8361
+ """
8362
+ return self._Id
8363
+
8364
+ @Id.setter
8365
+ def Id(self, Id):
8366
+ self._Id = Id
8367
+
8368
+ @property
8369
+ def Path(self):
8370
+ """GooseFSx实例需要挂载的路径
8371
+ :rtype: str
8372
+ """
8373
+ return self._Path
8374
+
8375
+ @Path.setter
8376
+ def Path(self, Path):
8377
+ self._Path = Path
8378
+
8379
+
8380
+ def _deserialize(self, params):
8381
+ self._Id = params.get("Id")
8382
+ self._Path = params.get("Path")
8383
+ memeber_set = set(params.keys())
8384
+ for name, value in vars(self).items():
8385
+ property_name = name[1:]
8386
+ if property_name in memeber_set:
8387
+ memeber_set.remove(property_name)
8388
+ if len(memeber_set) > 0:
8389
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
8390
+
8391
+
8392
+
8342
8393
  class GpuDetail(AbstractModel):
8343
8394
  """gpu 详情
8344
8395
 
@@ -11043,6 +11094,8 @@ class ModelInfo(AbstractModel):
11043
11094
  :type ModelSource: str
11044
11095
  :param _CosPathInfo: cos路径信息
11045
11096
  :type CosPathInfo: :class:`tencentcloud.tione.v20211111.models.CosPathInfo`
11097
+ :param _GooseFSx: GooseFSx的配置,ModelSource为GooseFSx时有效
11098
+ :type GooseFSx: :class:`tencentcloud.tione.v20211111.models.GooseFSx`
11046
11099
  :param _AlgorithmFramework: 模型对应的算法框架,预留
11047
11100
  注意:此字段可能返回 null,表示取不到有效值。
11048
11101
  :type AlgorithmFramework: str
@@ -11064,6 +11117,7 @@ class ModelInfo(AbstractModel):
11064
11117
  self._ModelVersion = None
11065
11118
  self._ModelSource = None
11066
11119
  self._CosPathInfo = None
11120
+ self._GooseFSx = None
11067
11121
  self._AlgorithmFramework = None
11068
11122
  self._ModelType = None
11069
11123
  self._ModelFormat = None
@@ -11137,6 +11191,17 @@ class ModelInfo(AbstractModel):
11137
11191
  def CosPathInfo(self, CosPathInfo):
11138
11192
  self._CosPathInfo = CosPathInfo
11139
11193
 
11194
+ @property
11195
+ def GooseFSx(self):
11196
+ """GooseFSx的配置,ModelSource为GooseFSx时有效
11197
+ :rtype: :class:`tencentcloud.tione.v20211111.models.GooseFSx`
11198
+ """
11199
+ return self._GooseFSx
11200
+
11201
+ @GooseFSx.setter
11202
+ def GooseFSx(self, GooseFSx):
11203
+ self._GooseFSx = GooseFSx
11204
+
11140
11205
  @property
11141
11206
  def AlgorithmFramework(self):
11142
11207
  """模型对应的算法框架,预留
@@ -11206,6 +11271,9 @@ class ModelInfo(AbstractModel):
11206
11271
  if params.get("CosPathInfo") is not None:
11207
11272
  self._CosPathInfo = CosPathInfo()
11208
11273
  self._CosPathInfo._deserialize(params.get("CosPathInfo"))
11274
+ if params.get("GooseFSx") is not None:
11275
+ self._GooseFSx = GooseFSx()
11276
+ self._GooseFSx._deserialize(params.get("GooseFSx"))
11209
11277
  self._AlgorithmFramework = params.get("AlgorithmFramework")
11210
11278
  self._ModelType = params.get("ModelType")
11211
11279
  self._ModelFormat = params.get("ModelFormat")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-tione
3
- Version: 3.0.1346
3
+ Version: 3.0.1348
4
4
  Summary: Tencent Cloud Tione 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.1348
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1346