tencentcloud-sdk-python-hai 3.1.78__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.78 → tencentcloud_sdk_python_hai-3.1.83}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/setup.py +1 -1
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/models.py +32 -2
- {tencentcloud_sdk_python_hai-3.1.78 → 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.78/tencentcloud_sdk_python_hai.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/README.rst +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/setup.cfg +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/__init__.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/__init__.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/errorcodes.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/hai_client.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud/hai/v20230812/hai_client_async.py +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud_sdk_python_hai.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → tencentcloud_sdk_python_hai-3.1.83}/tencentcloud_sdk_python_hai.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_hai-3.1.78 → 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:]
|
|
@@ -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.78
|
|
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
|