tencentcloud-sdk-python-hai 3.1.74__tar.gz → 3.1.83__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.74 → tencentcloud_sdk_python_hai-3.1.83}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/setup.py +1 -1
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/models.py +56 -6
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud_sdk_python_hai.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_hai-3.1.83/tencentcloud_sdk_python_hai.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_hai-3.1.74/tencentcloud_sdk_python_hai.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/README.rst +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/setup.cfg +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/__init__.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/__init__.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/errorcodes.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/hai_client.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/hai_client_async.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud_sdk_python_hai.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud_sdk_python_hai.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_hai-3.1.74 → tencentcloud_sdk_python_hai-3.1.83}/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.83
|
|
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.83
|
|
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.83,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Hai SDK for Python',
|
|
@@ -2860,14 +2860,20 @@ class ImageInfo(AbstractModel):
|
|
|
2860
2860
|
|
|
2861
2861
|
def __init__(self):
|
|
2862
2862
|
r"""
|
|
2863
|
-
:param _ImageRegistryUrl: tcr
|
|
2863
|
+
:param _ImageRegistryUrl: <p>tcr仓库地址</p>
|
|
2864
2864
|
:type ImageRegistryUrl: str
|
|
2865
|
+
:param _ImageRegistryUsername: <p>仓库用户名</p>
|
|
2866
|
+
:type ImageRegistryUsername: str
|
|
2867
|
+
:param _ImageRegistryPassword: <p>仓库密码</p>
|
|
2868
|
+
:type ImageRegistryPassword: str
|
|
2865
2869
|
"""
|
|
2866
2870
|
self._ImageRegistryUrl = None
|
|
2871
|
+
self._ImageRegistryUsername = None
|
|
2872
|
+
self._ImageRegistryPassword = None
|
|
2867
2873
|
|
|
2868
2874
|
@property
|
|
2869
2875
|
def ImageRegistryUrl(self):
|
|
2870
|
-
r"""tcr
|
|
2876
|
+
r"""<p>tcr仓库地址</p>
|
|
2871
2877
|
:rtype: str
|
|
2872
2878
|
"""
|
|
2873
2879
|
return self._ImageRegistryUrl
|
|
@@ -2876,9 +2882,33 @@ class ImageInfo(AbstractModel):
|
|
|
2876
2882
|
def ImageRegistryUrl(self, ImageRegistryUrl):
|
|
2877
2883
|
self._ImageRegistryUrl = ImageRegistryUrl
|
|
2878
2884
|
|
|
2885
|
+
@property
|
|
2886
|
+
def ImageRegistryUsername(self):
|
|
2887
|
+
r"""<p>仓库用户名</p>
|
|
2888
|
+
:rtype: str
|
|
2889
|
+
"""
|
|
2890
|
+
return self._ImageRegistryUsername
|
|
2891
|
+
|
|
2892
|
+
@ImageRegistryUsername.setter
|
|
2893
|
+
def ImageRegistryUsername(self, ImageRegistryUsername):
|
|
2894
|
+
self._ImageRegistryUsername = ImageRegistryUsername
|
|
2895
|
+
|
|
2896
|
+
@property
|
|
2897
|
+
def ImageRegistryPassword(self):
|
|
2898
|
+
r"""<p>仓库密码</p>
|
|
2899
|
+
:rtype: str
|
|
2900
|
+
"""
|
|
2901
|
+
return self._ImageRegistryPassword
|
|
2902
|
+
|
|
2903
|
+
@ImageRegistryPassword.setter
|
|
2904
|
+
def ImageRegistryPassword(self, ImageRegistryPassword):
|
|
2905
|
+
self._ImageRegistryPassword = ImageRegistryPassword
|
|
2906
|
+
|
|
2879
2907
|
|
|
2880
2908
|
def _deserialize(self, params):
|
|
2881
2909
|
self._ImageRegistryUrl = params.get("ImageRegistryUrl")
|
|
2910
|
+
self._ImageRegistryUsername = params.get("ImageRegistryUsername")
|
|
2911
|
+
self._ImageRegistryPassword = params.get("ImageRegistryPassword")
|
|
2882
2912
|
memeber_set = set(params.keys())
|
|
2883
2913
|
for name, value in vars(self).items():
|
|
2884
2914
|
property_name = name[1:]
|
|
@@ -5943,17 +5973,20 @@ class UpdateServiceConfigsRequest(AbstractModel):
|
|
|
5943
5973
|
|
|
5944
5974
|
def __init__(self):
|
|
5945
5975
|
r"""
|
|
5946
|
-
:param _ServiceId:
|
|
5976
|
+
:param _ServiceId: <p>服务ID</p>
|
|
5947
5977
|
:type ServiceId: str
|
|
5948
|
-
:param _TargetReplicas:
|
|
5978
|
+
:param _TargetReplicas: <p>期望副本数</p>
|
|
5949
5979
|
:type TargetReplicas: int
|
|
5980
|
+
:param _DeploymentConfigs: <p>启动参数、环境变量等参数</p>
|
|
5981
|
+
:type DeploymentConfigs: list of DeploymentConfig
|
|
5950
5982
|
"""
|
|
5951
5983
|
self._ServiceId = None
|
|
5952
5984
|
self._TargetReplicas = None
|
|
5985
|
+
self._DeploymentConfigs = None
|
|
5953
5986
|
|
|
5954
5987
|
@property
|
|
5955
5988
|
def ServiceId(self):
|
|
5956
|
-
r"""
|
|
5989
|
+
r"""<p>服务ID</p>
|
|
5957
5990
|
:rtype: str
|
|
5958
5991
|
"""
|
|
5959
5992
|
return self._ServiceId
|
|
@@ -5964,7 +5997,7 @@ class UpdateServiceConfigsRequest(AbstractModel):
|
|
|
5964
5997
|
|
|
5965
5998
|
@property
|
|
5966
5999
|
def TargetReplicas(self):
|
|
5967
|
-
r"""
|
|
6000
|
+
r"""<p>期望副本数</p>
|
|
5968
6001
|
:rtype: int
|
|
5969
6002
|
"""
|
|
5970
6003
|
return self._TargetReplicas
|
|
@@ -5973,10 +6006,27 @@ class UpdateServiceConfigsRequest(AbstractModel):
|
|
|
5973
6006
|
def TargetReplicas(self, TargetReplicas):
|
|
5974
6007
|
self._TargetReplicas = TargetReplicas
|
|
5975
6008
|
|
|
6009
|
+
@property
|
|
6010
|
+
def DeploymentConfigs(self):
|
|
6011
|
+
r"""<p>启动参数、环境变量等参数</p>
|
|
6012
|
+
:rtype: list of DeploymentConfig
|
|
6013
|
+
"""
|
|
6014
|
+
return self._DeploymentConfigs
|
|
6015
|
+
|
|
6016
|
+
@DeploymentConfigs.setter
|
|
6017
|
+
def DeploymentConfigs(self, DeploymentConfigs):
|
|
6018
|
+
self._DeploymentConfigs = DeploymentConfigs
|
|
6019
|
+
|
|
5976
6020
|
|
|
5977
6021
|
def _deserialize(self, params):
|
|
5978
6022
|
self._ServiceId = params.get("ServiceId")
|
|
5979
6023
|
self._TargetReplicas = params.get("TargetReplicas")
|
|
6024
|
+
if params.get("DeploymentConfigs") is not None:
|
|
6025
|
+
self._DeploymentConfigs = []
|
|
6026
|
+
for item in params.get("DeploymentConfigs"):
|
|
6027
|
+
obj = DeploymentConfig()
|
|
6028
|
+
obj._deserialize(item)
|
|
6029
|
+
self._DeploymentConfigs.append(obj)
|
|
5980
6030
|
memeber_set = set(params.keys())
|
|
5981
6031
|
for name, value in vars(self).items():
|
|
5982
6032
|
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.83
|
|
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.83
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.83
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.74
|
|
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
|