tencentcloud-sdk-python-hai 3.1.93__tar.gz → 3.1.104__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.
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/setup.py +1 -1
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/hai/v20230812/models.py +70 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud_sdk_python_hai.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_hai-3.1.104/tencentcloud_sdk_python_hai.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_hai-3.1.93/tencentcloud_sdk_python_hai.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/README.rst +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/setup.cfg +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/hai/__init__.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/hai/v20230812/__init__.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/hai/v20230812/errorcodes.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/hai/v20230812/hai_client.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud/hai/v20230812/hai_client_async.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud_sdk_python_hai.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud_sdk_python_hai.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_hai-3.1.93 → tencentcloud_sdk_python_hai-3.1.104}/tencentcloud_sdk_python_hai.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-hai
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.104
|
|
4
4
|
Summary: Tencent Cloud Hai 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.104
|
|
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-hai',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.104,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Hai SDK for Python',
|
|
@@ -5215,6 +5215,12 @@ class ServiceDetail(AbstractModel):
|
|
|
5215
5215
|
:type DeploymentConfigs: list of DeploymentConfig
|
|
5216
5216
|
:param _HyperParam: 服务超参数配置
|
|
5217
5217
|
:type HyperParam: :class:`tencentcloud.hai.v20230812.models.HyperParam`
|
|
5218
|
+
:param _SecurityType:
|
|
5219
|
+
:type SecurityType: str
|
|
5220
|
+
:param _RoleComputeSet:
|
|
5221
|
+
:type RoleComputeSet: list of ComputeDetail
|
|
5222
|
+
:param _TargetReplicas:
|
|
5223
|
+
:type TargetReplicas: int
|
|
5218
5224
|
"""
|
|
5219
5225
|
self._ServiceId = None
|
|
5220
5226
|
self._ServiceName = None
|
|
@@ -5226,6 +5232,9 @@ class ServiceDetail(AbstractModel):
|
|
|
5226
5232
|
self._ModelName = None
|
|
5227
5233
|
self._DeploymentConfigs = None
|
|
5228
5234
|
self._HyperParam = None
|
|
5235
|
+
self._SecurityType = None
|
|
5236
|
+
self._RoleComputeSet = None
|
|
5237
|
+
self._TargetReplicas = None
|
|
5229
5238
|
|
|
5230
5239
|
@property
|
|
5231
5240
|
def ServiceId(self):
|
|
@@ -5337,6 +5346,39 @@ class ServiceDetail(AbstractModel):
|
|
|
5337
5346
|
def HyperParam(self, HyperParam):
|
|
5338
5347
|
self._HyperParam = HyperParam
|
|
5339
5348
|
|
|
5349
|
+
@property
|
|
5350
|
+
def SecurityType(self):
|
|
5351
|
+
r"""
|
|
5352
|
+
:rtype: str
|
|
5353
|
+
"""
|
|
5354
|
+
return self._SecurityType
|
|
5355
|
+
|
|
5356
|
+
@SecurityType.setter
|
|
5357
|
+
def SecurityType(self, SecurityType):
|
|
5358
|
+
self._SecurityType = SecurityType
|
|
5359
|
+
|
|
5360
|
+
@property
|
|
5361
|
+
def RoleComputeSet(self):
|
|
5362
|
+
r"""
|
|
5363
|
+
:rtype: list of ComputeDetail
|
|
5364
|
+
"""
|
|
5365
|
+
return self._RoleComputeSet
|
|
5366
|
+
|
|
5367
|
+
@RoleComputeSet.setter
|
|
5368
|
+
def RoleComputeSet(self, RoleComputeSet):
|
|
5369
|
+
self._RoleComputeSet = RoleComputeSet
|
|
5370
|
+
|
|
5371
|
+
@property
|
|
5372
|
+
def TargetReplicas(self):
|
|
5373
|
+
r"""
|
|
5374
|
+
:rtype: int
|
|
5375
|
+
"""
|
|
5376
|
+
return self._TargetReplicas
|
|
5377
|
+
|
|
5378
|
+
@TargetReplicas.setter
|
|
5379
|
+
def TargetReplicas(self, TargetReplicas):
|
|
5380
|
+
self._TargetReplicas = TargetReplicas
|
|
5381
|
+
|
|
5340
5382
|
|
|
5341
5383
|
def _deserialize(self, params):
|
|
5342
5384
|
self._ServiceId = params.get("ServiceId")
|
|
@@ -5361,6 +5403,14 @@ class ServiceDetail(AbstractModel):
|
|
|
5361
5403
|
if params.get("HyperParam") is not None:
|
|
5362
5404
|
self._HyperParam = HyperParam()
|
|
5363
5405
|
self._HyperParam._deserialize(params.get("HyperParam"))
|
|
5406
|
+
self._SecurityType = params.get("SecurityType")
|
|
5407
|
+
if params.get("RoleComputeSet") is not None:
|
|
5408
|
+
self._RoleComputeSet = []
|
|
5409
|
+
for item in params.get("RoleComputeSet"):
|
|
5410
|
+
obj = ComputeDetail()
|
|
5411
|
+
obj._deserialize(item)
|
|
5412
|
+
self._RoleComputeSet.append(obj)
|
|
5413
|
+
self._TargetReplicas = params.get("TargetReplicas")
|
|
5364
5414
|
memeber_set = set(params.keys())
|
|
5365
5415
|
for name, value in vars(self).items():
|
|
5366
5416
|
property_name = name[1:]
|
|
@@ -5803,12 +5853,15 @@ class TemplateDetail(AbstractModel):
|
|
|
5803
5853
|
:type ComputeSet: list of ComputeDetail
|
|
5804
5854
|
:param _SupportFunc: 当前部署模板所支持的增强功能
|
|
5805
5855
|
:type SupportFunc: list of str
|
|
5856
|
+
:param _RoleComputeSet:
|
|
5857
|
+
:type RoleComputeSet: list of ComputeDetail
|
|
5806
5858
|
"""
|
|
5807
5859
|
self._TemplateId = None
|
|
5808
5860
|
self._DeployMode = None
|
|
5809
5861
|
self._EngineType = None
|
|
5810
5862
|
self._ComputeSet = None
|
|
5811
5863
|
self._SupportFunc = None
|
|
5864
|
+
self._RoleComputeSet = None
|
|
5812
5865
|
|
|
5813
5866
|
@property
|
|
5814
5867
|
def TemplateId(self):
|
|
@@ -5865,6 +5918,17 @@ class TemplateDetail(AbstractModel):
|
|
|
5865
5918
|
def SupportFunc(self, SupportFunc):
|
|
5866
5919
|
self._SupportFunc = SupportFunc
|
|
5867
5920
|
|
|
5921
|
+
@property
|
|
5922
|
+
def RoleComputeSet(self):
|
|
5923
|
+
r"""
|
|
5924
|
+
:rtype: list of ComputeDetail
|
|
5925
|
+
"""
|
|
5926
|
+
return self._RoleComputeSet
|
|
5927
|
+
|
|
5928
|
+
@RoleComputeSet.setter
|
|
5929
|
+
def RoleComputeSet(self, RoleComputeSet):
|
|
5930
|
+
self._RoleComputeSet = RoleComputeSet
|
|
5931
|
+
|
|
5868
5932
|
|
|
5869
5933
|
def _deserialize(self, params):
|
|
5870
5934
|
self._TemplateId = params.get("TemplateId")
|
|
@@ -5877,6 +5941,12 @@ class TemplateDetail(AbstractModel):
|
|
|
5877
5941
|
obj._deserialize(item)
|
|
5878
5942
|
self._ComputeSet.append(obj)
|
|
5879
5943
|
self._SupportFunc = params.get("SupportFunc")
|
|
5944
|
+
if params.get("RoleComputeSet") is not None:
|
|
5945
|
+
self._RoleComputeSet = []
|
|
5946
|
+
for item in params.get("RoleComputeSet"):
|
|
5947
|
+
obj = ComputeDetail()
|
|
5948
|
+
obj._deserialize(item)
|
|
5949
|
+
self._RoleComputeSet.append(obj)
|
|
5880
5950
|
memeber_set = set(params.keys())
|
|
5881
5951
|
for name, value in vars(self).items():
|
|
5882
5952
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-hai
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.104
|
|
4
4
|
Summary: Tencent Cloud Hai 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.104
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.104
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.93
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|