tencentcloud-sdk-python-dbdc 3.0.1459__tar.gz → 3.1.7__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 (19) hide show
  1. tencentcloud_sdk_python_dbdc-3.1.7/PKG-INFO +46 -0
  2. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/setup.py +2 -1
  3. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud/__init__.py +1 -1
  4. tencentcloud_sdk_python_dbdc-3.1.7/tencentcloud/dbdc/v20201029/dbdc_client_async.py +134 -0
  5. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud/dbdc/v20201029/models.py +122 -1
  6. tencentcloud_sdk_python_dbdc-3.1.7/tencentcloud_sdk_python_dbdc.egg-info/PKG-INFO +46 -0
  7. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud_sdk_python_dbdc.egg-info/SOURCES.txt +1 -0
  8. tencentcloud_sdk_python_dbdc-3.1.7/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-dbdc-3.0.1459/PKG-INFO +0 -45
  10. tencentcloud-sdk-python-dbdc-3.0.1459/tencentcloud_sdk_python_dbdc.egg-info/PKG-INFO +0 -45
  11. tencentcloud-sdk-python-dbdc-3.0.1459/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +0 -1
  12. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/README.rst +0 -0
  13. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/setup.cfg +0 -0
  14. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud/dbdc/__init__.py +0 -0
  15. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud/dbdc/v20201029/__init__.py +0 -0
  16. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud/dbdc/v20201029/dbdc_client.py +0 -0
  17. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud/dbdc/v20201029/errorcodes.py +0 -0
  18. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud_sdk_python_dbdc.egg-info/dependency_links.txt +0 -0
  19. {tencentcloud-sdk-python-dbdc-3.0.1459 → tencentcloud_sdk_python_dbdc-3.1.7}/tencentcloud_sdk_python_dbdc.egg-info/top_level.txt +0 -0
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: tencentcloud-sdk-python-dbdc
3
+ Version: 3.1.7
4
+ Summary: Tencent Cloud Dbdc SDK for Python
5
+ Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
+ Author: Tencent Cloud
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
+ License: Apache License 2.0
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.6
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.7
19
+
20
+ ============================
21
+ Tencent Cloud SDK for Python
22
+ ============================
23
+
24
+ Tencent Cloud Python Dbdc SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
25
+ The SDK works on Python versions:
26
+
27
+ * 2.7 and greater, including 3.x
28
+
29
+ Quick Start
30
+ -----------
31
+
32
+ First, install the library:
33
+
34
+ .. code-block:: sh
35
+
36
+ $ pip install tencentcloud-sdk-python-common
37
+ $ pip install tencentcloud-sdk-python-dbdc
38
+
39
+ or download source code from github and install:
40
+
41
+ .. code-block:: sh
42
+
43
+ $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
44
+ $ cd tencentcloud-sdk-python
45
+ $ python package.py --components common dbdc
46
+
@@ -8,7 +8,8 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-dbdc',
11
- install_requires=["tencentcloud-sdk-python-common>=3.0.1459,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.7,<4.0.0"],
12
+
12
13
  version=tencentcloud.__version__,
13
14
  description='Tencent Cloud Dbdc SDK for Python',
14
15
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1459'
17
+ __version__ = '3.1.7'
@@ -0,0 +1,134 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+
17
+
18
+ from tencentcloud.common.abstract_client_async import AbstractClient
19
+ from tencentcloud.dbdc.v20201029 import models
20
+ from typing import Dict
21
+
22
+
23
+ class DbdcClient(AbstractClient):
24
+ _apiVersion = '2020-10-29'
25
+ _endpoint = 'dbdc.tencentcloudapi.com'
26
+ _service = 'dbdc'
27
+
28
+ async def DescribeDBInstances(
29
+ self,
30
+ request: models.DescribeDBInstancesRequest,
31
+ opts: Dict = None,
32
+ ) -> models.DescribeDBInstancesResponse:
33
+ """
34
+ 本接口用于查询独享集群内的DB实例列表
35
+ """
36
+
37
+ kwargs = {}
38
+ kwargs["action"] = "DescribeDBInstances"
39
+ kwargs["params"] = request._serialize()
40
+ kwargs["resp_cls"] = models.DescribeDBInstancesResponse
41
+ kwargs["headers"] = request.headers
42
+ kwargs["opts"] = opts or {}
43
+
44
+ return await self.call_and_deserialize(**kwargs)
45
+
46
+ async def DescribeHostList(
47
+ self,
48
+ request: models.DescribeHostListRequest,
49
+ opts: Dict = None,
50
+ ) -> models.DescribeHostListResponse:
51
+ """
52
+ 本接口用于查询主机列表
53
+ """
54
+
55
+ kwargs = {}
56
+ kwargs["action"] = "DescribeHostList"
57
+ kwargs["params"] = request._serialize()
58
+ kwargs["resp_cls"] = models.DescribeHostListResponse
59
+ kwargs["headers"] = request.headers
60
+ kwargs["opts"] = opts or {}
61
+
62
+ return await self.call_and_deserialize(**kwargs)
63
+
64
+ async def DescribeInstanceDetail(
65
+ self,
66
+ request: models.DescribeInstanceDetailRequest,
67
+ opts: Dict = None,
68
+ ) -> models.DescribeInstanceDetailResponse:
69
+ """
70
+ 本接口用于查询独享集群详情
71
+ """
72
+
73
+ kwargs = {}
74
+ kwargs["action"] = "DescribeInstanceDetail"
75
+ kwargs["params"] = request._serialize()
76
+ kwargs["resp_cls"] = models.DescribeInstanceDetailResponse
77
+ kwargs["headers"] = request.headers
78
+ kwargs["opts"] = opts or {}
79
+
80
+ return await self.call_and_deserialize(**kwargs)
81
+
82
+ async def DescribeInstanceList(
83
+ self,
84
+ request: models.DescribeInstanceListRequest,
85
+ opts: Dict = None,
86
+ ) -> models.DescribeInstanceListResponse:
87
+ """
88
+ 本接口用于查询独享集群实例列表
89
+ """
90
+
91
+ kwargs = {}
92
+ kwargs["action"] = "DescribeInstanceList"
93
+ kwargs["params"] = request._serialize()
94
+ kwargs["resp_cls"] = models.DescribeInstanceListResponse
95
+ kwargs["headers"] = request.headers
96
+ kwargs["opts"] = opts or {}
97
+
98
+ return await self.call_and_deserialize(**kwargs)
99
+
100
+ async def DescribeInstances(
101
+ self,
102
+ request: models.DescribeInstancesRequest,
103
+ opts: Dict = None,
104
+ ) -> models.DescribeInstancesResponse:
105
+ """
106
+ 根据不同地域不同用户,获取集群列表信息
107
+ """
108
+
109
+ kwargs = {}
110
+ kwargs["action"] = "DescribeInstances"
111
+ kwargs["params"] = request._serialize()
112
+ kwargs["resp_cls"] = models.DescribeInstancesResponse
113
+ kwargs["headers"] = request.headers
114
+ kwargs["opts"] = opts or {}
115
+
116
+ return await self.call_and_deserialize(**kwargs)
117
+
118
+ async def ModifyInstanceName(
119
+ self,
120
+ request: models.ModifyInstanceNameRequest,
121
+ opts: Dict = None,
122
+ ) -> models.ModifyInstanceNameResponse:
123
+ """
124
+ 本接口用于修改集群名称
125
+ """
126
+
127
+ kwargs = {}
128
+ kwargs["action"] = "ModifyInstanceName"
129
+ kwargs["params"] = request._serialize()
130
+ kwargs["resp_cls"] = models.ModifyInstanceNameResponse
131
+ kwargs["headers"] = request.headers
132
+ kwargs["opts"] = opts or {}
133
+
134
+ return await self.call_and_deserialize(**kwargs)
@@ -716,6 +716,10 @@ class DescribeInstanceDetail(AbstractModel):
716
716
  :type FenceId: str
717
717
  :param _ClusterId: 所属集群ID(默认集群为空)
718
718
  :type ClusterId: str
719
+ :param _ResourceTags: 实例标签
720
+ :type ResourceTags: list of ResourceTag
721
+ :param _CpuType: CPU类型:Intel/AMD,Hygon
722
+ :type CpuType: str
719
723
  """
720
724
  self._InstanceId = None
721
725
  self._InstanceName = None
@@ -743,6 +747,8 @@ class DescribeInstanceDetail(AbstractModel):
743
747
  self._Zone = None
744
748
  self._FenceId = None
745
749
  self._ClusterId = None
750
+ self._ResourceTags = None
751
+ self._CpuType = None
746
752
 
747
753
  @property
748
754
  def InstanceId(self):
@@ -1030,6 +1036,28 @@ class DescribeInstanceDetail(AbstractModel):
1030
1036
  def ClusterId(self, ClusterId):
1031
1037
  self._ClusterId = ClusterId
1032
1038
 
1039
+ @property
1040
+ def ResourceTags(self):
1041
+ r"""实例标签
1042
+ :rtype: list of ResourceTag
1043
+ """
1044
+ return self._ResourceTags
1045
+
1046
+ @ResourceTags.setter
1047
+ def ResourceTags(self, ResourceTags):
1048
+ self._ResourceTags = ResourceTags
1049
+
1050
+ @property
1051
+ def CpuType(self):
1052
+ r"""CPU类型:Intel/AMD,Hygon
1053
+ :rtype: str
1054
+ """
1055
+ return self._CpuType
1056
+
1057
+ @CpuType.setter
1058
+ def CpuType(self, CpuType):
1059
+ self._CpuType = CpuType
1060
+
1033
1061
 
1034
1062
  def _deserialize(self, params):
1035
1063
  self._InstanceId = params.get("InstanceId")
@@ -1058,6 +1086,13 @@ class DescribeInstanceDetail(AbstractModel):
1058
1086
  self._Zone = params.get("Zone")
1059
1087
  self._FenceId = params.get("FenceId")
1060
1088
  self._ClusterId = params.get("ClusterId")
1089
+ if params.get("ResourceTags") is not None:
1090
+ self._ResourceTags = []
1091
+ for item in params.get("ResourceTags"):
1092
+ obj = ResourceTag()
1093
+ obj._deserialize(item)
1094
+ self._ResourceTags.append(obj)
1095
+ self._CpuType = params.get("CpuType")
1061
1096
  memeber_set = set(params.keys())
1062
1097
  for name, value in vars(self).items():
1063
1098
  property_name = name[1:]
@@ -1163,6 +1198,10 @@ class DescribeInstanceDetailResponse(AbstractModel):
1163
1198
  :type FenceId: str
1164
1199
  :param _ClusterId: 所属集群ID(默认集群为空)
1165
1200
  :type ClusterId: str
1201
+ :param _ResourceTags: 独享集群的标签信息
1202
+ :type ResourceTags: list of ResourceTag
1203
+ :param _CpuType: CPU类型,Intel/AMD,Hygon
1204
+ :type CpuType: str
1166
1205
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1167
1206
  :type RequestId: str
1168
1207
  """
@@ -1192,6 +1231,8 @@ class DescribeInstanceDetailResponse(AbstractModel):
1192
1231
  self._Zone = None
1193
1232
  self._FenceId = None
1194
1233
  self._ClusterId = None
1234
+ self._ResourceTags = None
1235
+ self._CpuType = None
1195
1236
  self._RequestId = None
1196
1237
 
1197
1238
  @property
@@ -1480,6 +1521,28 @@ class DescribeInstanceDetailResponse(AbstractModel):
1480
1521
  def ClusterId(self, ClusterId):
1481
1522
  self._ClusterId = ClusterId
1482
1523
 
1524
+ @property
1525
+ def ResourceTags(self):
1526
+ r"""独享集群的标签信息
1527
+ :rtype: list of ResourceTag
1528
+ """
1529
+ return self._ResourceTags
1530
+
1531
+ @ResourceTags.setter
1532
+ def ResourceTags(self, ResourceTags):
1533
+ self._ResourceTags = ResourceTags
1534
+
1535
+ @property
1536
+ def CpuType(self):
1537
+ r"""CPU类型,Intel/AMD,Hygon
1538
+ :rtype: str
1539
+ """
1540
+ return self._CpuType
1541
+
1542
+ @CpuType.setter
1543
+ def CpuType(self, CpuType):
1544
+ self._CpuType = CpuType
1545
+
1483
1546
  @property
1484
1547
  def RequestId(self):
1485
1548
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -1519,6 +1582,13 @@ class DescribeInstanceDetailResponse(AbstractModel):
1519
1582
  self._Zone = params.get("Zone")
1520
1583
  self._FenceId = params.get("FenceId")
1521
1584
  self._ClusterId = params.get("ClusterId")
1585
+ if params.get("ResourceTags") is not None:
1586
+ self._ResourceTags = []
1587
+ for item in params.get("ResourceTags"):
1588
+ obj = ResourceTag()
1589
+ obj._deserialize(item)
1590
+ self._ResourceTags.append(obj)
1591
+ self._CpuType = params.get("CpuType")
1522
1592
  self._RequestId = params.get("RequestId")
1523
1593
 
1524
1594
 
@@ -3093,4 +3163,55 @@ class ModifyInstanceNameResponse(AbstractModel):
3093
3163
 
3094
3164
 
3095
3165
  def _deserialize(self, params):
3096
- self._RequestId = params.get("RequestId")
3166
+ self._RequestId = params.get("RequestId")
3167
+
3168
+
3169
+ class ResourceTag(AbstractModel):
3170
+ r"""标签对象,包含tagKey & tagValue
3171
+
3172
+ """
3173
+
3174
+ def __init__(self):
3175
+ r"""
3176
+ :param _TagKey: 标签键
3177
+ :type TagKey: str
3178
+ :param _TagValue: 标签值
3179
+ :type TagValue: str
3180
+ """
3181
+ self._TagKey = None
3182
+ self._TagValue = None
3183
+
3184
+ @property
3185
+ def TagKey(self):
3186
+ r"""标签键
3187
+ :rtype: str
3188
+ """
3189
+ return self._TagKey
3190
+
3191
+ @TagKey.setter
3192
+ def TagKey(self, TagKey):
3193
+ self._TagKey = TagKey
3194
+
3195
+ @property
3196
+ def TagValue(self):
3197
+ r"""标签值
3198
+ :rtype: str
3199
+ """
3200
+ return self._TagValue
3201
+
3202
+ @TagValue.setter
3203
+ def TagValue(self, TagValue):
3204
+ self._TagValue = TagValue
3205
+
3206
+
3207
+ def _deserialize(self, params):
3208
+ self._TagKey = params.get("TagKey")
3209
+ self._TagValue = params.get("TagValue")
3210
+ memeber_set = set(params.keys())
3211
+ for name, value in vars(self).items():
3212
+ property_name = name[1:]
3213
+ if property_name in memeber_set:
3214
+ memeber_set.remove(property_name)
3215
+ if len(memeber_set) > 0:
3216
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3217
+
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: tencentcloud-sdk-python-dbdc
3
+ Version: 3.1.7
4
+ Summary: Tencent Cloud Dbdc SDK for Python
5
+ Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
+ Author: Tencent Cloud
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
+ License: Apache License 2.0
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.6
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.7
19
+
20
+ ============================
21
+ Tencent Cloud SDK for Python
22
+ ============================
23
+
24
+ Tencent Cloud Python Dbdc SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
25
+ The SDK works on Python versions:
26
+
27
+ * 2.7 and greater, including 3.x
28
+
29
+ Quick Start
30
+ -----------
31
+
32
+ First, install the library:
33
+
34
+ .. code-block:: sh
35
+
36
+ $ pip install tencentcloud-sdk-python-common
37
+ $ pip install tencentcloud-sdk-python-dbdc
38
+
39
+ or download source code from github and install:
40
+
41
+ .. code-block:: sh
42
+
43
+ $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
44
+ $ cd tencentcloud-sdk-python
45
+ $ python package.py --components common dbdc
46
+
@@ -5,6 +5,7 @@ tencentcloud/__init__.py
5
5
  tencentcloud/dbdc/__init__.py
6
6
  tencentcloud/dbdc/v20201029/__init__.py
7
7
  tencentcloud/dbdc/v20201029/dbdc_client.py
8
+ tencentcloud/dbdc/v20201029/dbdc_client_async.py
8
9
  tencentcloud/dbdc/v20201029/errorcodes.py
9
10
  tencentcloud/dbdc/v20201029/models.py
10
11
  tencentcloud_sdk_python_dbdc.egg-info/PKG-INFO
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.7
@@ -1,45 +0,0 @@
1
- Metadata-Version: 1.2
2
- Name: tencentcloud-sdk-python-dbdc
3
- Version: 3.0.1459
4
- Summary: Tencent Cloud Dbdc SDK for Python
5
- Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
- Author: Tencent Cloud
7
- Maintainer-email: tencentcloudapi@tencent.com
8
- License: Apache License 2.0
9
- Description: ============================
10
- Tencent Cloud SDK for Python
11
- ============================
12
-
13
- Tencent Cloud Python Dbdc SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
14
- The SDK works on Python versions:
15
-
16
- * 2.7 and greater, including 3.x
17
-
18
- Quick Start
19
- -----------
20
-
21
- First, install the library:
22
-
23
- .. code-block:: sh
24
-
25
- $ pip install tencentcloud-sdk-python-common
26
- $ pip install tencentcloud-sdk-python-dbdc
27
-
28
- or download source code from github and install:
29
-
30
- .. code-block:: sh
31
-
32
- $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
33
- $ cd tencentcloud-sdk-python
34
- $ python package.py --components common dbdc
35
-
36
-
37
- Platform: any
38
- Classifier: Development Status :: 5 - Production/Stable
39
- Classifier: Intended Audience :: Developers
40
- Classifier: License :: OSI Approved :: Apache Software License
41
- Classifier: Programming Language :: Python
42
- Classifier: Programming Language :: Python :: 2.7
43
- Classifier: Programming Language :: Python :: 3
44
- Classifier: Programming Language :: Python :: 3.6
45
- Classifier: Programming Language :: Python :: 3.7
@@ -1,45 +0,0 @@
1
- Metadata-Version: 1.2
2
- Name: tencentcloud-sdk-python-dbdc
3
- Version: 3.0.1459
4
- Summary: Tencent Cloud Dbdc SDK for Python
5
- Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
- Author: Tencent Cloud
7
- Maintainer-email: tencentcloudapi@tencent.com
8
- License: Apache License 2.0
9
- Description: ============================
10
- Tencent Cloud SDK for Python
11
- ============================
12
-
13
- Tencent Cloud Python Dbdc SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
14
- The SDK works on Python versions:
15
-
16
- * 2.7 and greater, including 3.x
17
-
18
- Quick Start
19
- -----------
20
-
21
- First, install the library:
22
-
23
- .. code-block:: sh
24
-
25
- $ pip install tencentcloud-sdk-python-common
26
- $ pip install tencentcloud-sdk-python-dbdc
27
-
28
- or download source code from github and install:
29
-
30
- .. code-block:: sh
31
-
32
- $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
33
- $ cd tencentcloud-sdk-python
34
- $ python package.py --components common dbdc
35
-
36
-
37
- Platform: any
38
- Classifier: Development Status :: 5 - Production/Stable
39
- Classifier: Intended Audience :: Developers
40
- Classifier: License :: OSI Approved :: Apache Software License
41
- Classifier: Programming Language :: Python
42
- Classifier: Programming Language :: Python :: 2.7
43
- Classifier: Programming Language :: Python :: 3
44
- Classifier: Programming Language :: Python :: 3.6
45
- Classifier: Programming Language :: Python :: 3.7
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1459