tencentcloud-sdk-python-cls 3.1.93__tar.gz → 3.1.95__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_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/setup.py +1 -1
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/cls/v20201016/models.py +30 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cls-3.1.95/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cls-3.1.93/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/README.rst +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/cls/v20201016/cls_client_async.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.95}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.95
|
|
4
4
|
Summary: Tencent Cloud Cls 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.95
|
|
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-cls',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.95,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cls SDK for Python',
|
|
@@ -4904,6 +4904,10 @@ class Console(AbstractModel):
|
|
|
4904
4904
|
:param _Menus: <p>自定义显示菜单</p>
|
|
4905
4905
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4906
4906
|
:type Menus: list of str
|
|
4907
|
+
:param _Domain: <p>公网访问域名</p>
|
|
4908
|
+
:type Domain: str
|
|
4909
|
+
:param _IntranetDomain: <p>内网访问域名</p>
|
|
4910
|
+
:type IntranetDomain: str
|
|
4907
4911
|
"""
|
|
4908
4912
|
self._ConsoleId = None
|
|
4909
4913
|
self._AccessMode = None
|
|
@@ -4921,6 +4925,8 @@ class Console(AbstractModel):
|
|
|
4921
4925
|
self._AccessControlRules = None
|
|
4922
4926
|
self._Remarks = None
|
|
4923
4927
|
self._Menus = None
|
|
4928
|
+
self._Domain = None
|
|
4929
|
+
self._IntranetDomain = None
|
|
4924
4930
|
|
|
4925
4931
|
@property
|
|
4926
4932
|
def ConsoleId(self):
|
|
@@ -5110,6 +5116,28 @@ class Console(AbstractModel):
|
|
|
5110
5116
|
def Menus(self, Menus):
|
|
5111
5117
|
self._Menus = Menus
|
|
5112
5118
|
|
|
5119
|
+
@property
|
|
5120
|
+
def Domain(self):
|
|
5121
|
+
r"""<p>公网访问域名</p>
|
|
5122
|
+
:rtype: str
|
|
5123
|
+
"""
|
|
5124
|
+
return self._Domain
|
|
5125
|
+
|
|
5126
|
+
@Domain.setter
|
|
5127
|
+
def Domain(self, Domain):
|
|
5128
|
+
self._Domain = Domain
|
|
5129
|
+
|
|
5130
|
+
@property
|
|
5131
|
+
def IntranetDomain(self):
|
|
5132
|
+
r"""<p>内网访问域名</p>
|
|
5133
|
+
:rtype: str
|
|
5134
|
+
"""
|
|
5135
|
+
return self._IntranetDomain
|
|
5136
|
+
|
|
5137
|
+
@IntranetDomain.setter
|
|
5138
|
+
def IntranetDomain(self, IntranetDomain):
|
|
5139
|
+
self._IntranetDomain = IntranetDomain
|
|
5140
|
+
|
|
5113
5141
|
|
|
5114
5142
|
def _deserialize(self, params):
|
|
5115
5143
|
self._ConsoleId = params.get("ConsoleId")
|
|
@@ -5150,6 +5178,8 @@ class Console(AbstractModel):
|
|
|
5150
5178
|
self._AccessControlRules.append(obj)
|
|
5151
5179
|
self._Remarks = params.get("Remarks")
|
|
5152
5180
|
self._Menus = params.get("Menus")
|
|
5181
|
+
self._Domain = params.get("Domain")
|
|
5182
|
+
self._IntranetDomain = params.get("IntranetDomain")
|
|
5153
5183
|
memeber_set = set(params.keys())
|
|
5154
5184
|
for name, value in vars(self).items():
|
|
5155
5185
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.95
|
|
4
4
|
Summary: Tencent Cloud Cls 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.95
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.95
|
|
@@ -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
|