tencentcloud-sdk-python-hai 3.1.87__tar.gz → 3.1.93__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_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/setup.py +1 -1
  3. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/hai/v20230812/hai_client.py +1 -1
  5. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/hai/v20230812/hai_client_async.py +1 -1
  6. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/hai/v20230812/models.py +8 -8
  7. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud_sdk_python_hai.egg-info/PKG-INFO +2 -2
  8. tencentcloud_sdk_python_hai-3.1.93/tencentcloud_sdk_python_hai.egg-info/requires.txt +1 -0
  9. tencentcloud_sdk_python_hai-3.1.87/tencentcloud_sdk_python_hai.egg-info/requires.txt +0 -1
  10. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/README.rst +0 -0
  11. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/setup.cfg +0 -0
  12. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/hai/__init__.py +0 -0
  13. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/hai/v20230812/__init__.py +0 -0
  14. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud/hai/v20230812/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud_sdk_python_hai.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/tencentcloud_sdk_python_hai.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_hai-3.1.87 → tencentcloud_sdk_python_hai-3.1.93}/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.87
3
+ Version: 3.1.93
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.87
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.93
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.87,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.93,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Hai SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.87'
17
+ __version__ = '3.1.93'
@@ -581,7 +581,7 @@ class HaiClient(AbstractClient):
581
581
 
582
582
 
583
583
  def UpdateServiceConfigs(self, request):
584
- r"""本接口(UpdateServiceConfigs)用于更新服务配置
584
+ r"""本接口(UpdateServiceConfigs)用于更新服务配置。
585
585
 
586
586
  :param request: Request instance for UpdateServiceConfigs.
587
587
  :type request: :class:`tencentcloud.hai.v20230812.models.UpdateServiceConfigsRequest`
@@ -465,7 +465,7 @@ class HaiClient(AbstractClient):
465
465
  opts: Dict = None,
466
466
  ) -> models.UpdateServiceConfigsResponse:
467
467
  """
468
- 本接口(UpdateServiceConfigs)用于更新服务配置
468
+ 本接口(UpdateServiceConfigs)用于更新服务配置。
469
469
  """
470
470
 
471
471
  kwargs = {}
@@ -430,9 +430,9 @@ class ComputeInfo(AbstractModel):
430
430
 
431
431
  def __init__(self):
432
432
  r"""
433
- :param _ComputeResources: 资源类型及数量
433
+ :param _ComputeResources: <p>资源类型及数量</p>
434
434
  :type ComputeResources: list of ComputeResource
435
- :param _Replicas: 副本数
435
+ :param _Replicas: <p>副本数</p>
436
436
  :type Replicas: int
437
437
  """
438
438
  self._ComputeResources = None
@@ -440,7 +440,7 @@ class ComputeInfo(AbstractModel):
440
440
 
441
441
  @property
442
442
  def ComputeResources(self):
443
- r"""资源类型及数量
443
+ r"""<p>资源类型及数量</p>
444
444
  :rtype: list of ComputeResource
445
445
  """
446
446
  return self._ComputeResources
@@ -451,7 +451,7 @@ class ComputeInfo(AbstractModel):
451
451
 
452
452
  @property
453
453
  def Replicas(self):
454
- r"""副本数
454
+ r"""<p>副本数</p>
455
455
  :rtype: int
456
456
  """
457
457
  return self._Replicas
@@ -1254,9 +1254,9 @@ class DeploymentConfig(AbstractModel):
1254
1254
 
1255
1255
  def __init__(self):
1256
1256
  r"""
1257
- :param _Container: 容器配置
1257
+ :param _Container: <p>容器配置</p>
1258
1258
  :type Container: :class:`tencentcloud.hai.v20230812.models.ContainerInfo`
1259
- :param _ContainerCount: 容器数量
1259
+ :param _ContainerCount: <p>容器数量</p>
1260
1260
  :type ContainerCount: int
1261
1261
  """
1262
1262
  self._Container = None
@@ -1264,7 +1264,7 @@ class DeploymentConfig(AbstractModel):
1264
1264
 
1265
1265
  @property
1266
1266
  def Container(self):
1267
- r"""容器配置
1267
+ r"""<p>容器配置</p>
1268
1268
  :rtype: :class:`tencentcloud.hai.v20230812.models.ContainerInfo`
1269
1269
  """
1270
1270
  return self._Container
@@ -1275,7 +1275,7 @@ class DeploymentConfig(AbstractModel):
1275
1275
 
1276
1276
  @property
1277
1277
  def ContainerCount(self):
1278
- r"""容器数量
1278
+ r"""<p>容器数量</p>
1279
1279
  :rtype: int
1280
1280
  """
1281
1281
  return self._ContainerCount
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-hai
3
- Version: 3.1.87
3
+ Version: 3.1.93
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.87
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.93
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.93
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.87