tencentcloud-sdk-python-dbdc 3.1.7__tar.gz → 3.1.35__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_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/setup.py +1 -1
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/dbdc/v20201029/models.py +60 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud_sdk_python_dbdc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_dbdc-3.1.35/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_dbdc-3.1.7/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/README.rst +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/setup.cfg +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/dbdc/__init__.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/dbdc/v20201029/__init__.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/dbdc/v20201029/dbdc_client.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/dbdc/v20201029/dbdc_client_async.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud/dbdc/v20201029/errorcodes.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud_sdk_python_dbdc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud_sdk_python_dbdc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.7 → tencentcloud_sdk_python_dbdc-3.1.35}/tencentcloud_sdk_python_dbdc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dbdc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.35
|
|
4
4
|
Summary: Tencent Cloud Dbdc 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.35
|
|
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-dbdc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.35,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Dbdc SDK for Python',
|
|
@@ -67,6 +67,8 @@ class DBInstanceDetail(AbstractModel):
|
|
|
67
67
|
:type DbEngine: str
|
|
68
68
|
:param _CreateTime: 创建时间
|
|
69
69
|
:type CreateTime: str
|
|
70
|
+
:param _Zones: 可用区列表
|
|
71
|
+
:type Zones: list of str
|
|
70
72
|
"""
|
|
71
73
|
self._InstanceId = None
|
|
72
74
|
self._InstanceName = None
|
|
@@ -89,6 +91,7 @@ class DBInstanceDetail(AbstractModel):
|
|
|
89
91
|
self._HostRole = None
|
|
90
92
|
self._DbEngine = None
|
|
91
93
|
self._CreateTime = None
|
|
94
|
+
self._Zones = None
|
|
92
95
|
|
|
93
96
|
@property
|
|
94
97
|
def InstanceId(self):
|
|
@@ -321,6 +324,17 @@ class DBInstanceDetail(AbstractModel):
|
|
|
321
324
|
def CreateTime(self, CreateTime):
|
|
322
325
|
self._CreateTime = CreateTime
|
|
323
326
|
|
|
327
|
+
@property
|
|
328
|
+
def Zones(self):
|
|
329
|
+
r"""可用区列表
|
|
330
|
+
:rtype: list of str
|
|
331
|
+
"""
|
|
332
|
+
return self._Zones
|
|
333
|
+
|
|
334
|
+
@Zones.setter
|
|
335
|
+
def Zones(self, Zones):
|
|
336
|
+
self._Zones = Zones
|
|
337
|
+
|
|
324
338
|
|
|
325
339
|
def _deserialize(self, params):
|
|
326
340
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -344,6 +358,7 @@ class DBInstanceDetail(AbstractModel):
|
|
|
344
358
|
self._HostRole = params.get("HostRole")
|
|
345
359
|
self._DbEngine = params.get("DbEngine")
|
|
346
360
|
self._CreateTime = params.get("CreateTime")
|
|
361
|
+
self._Zones = params.get("Zones")
|
|
347
362
|
memeber_set = set(params.keys())
|
|
348
363
|
for name, value in vars(self).items():
|
|
349
364
|
property_name = name[1:]
|
|
@@ -720,6 +735,8 @@ class DescribeInstanceDetail(AbstractModel):
|
|
|
720
735
|
:type ResourceTags: list of ResourceTag
|
|
721
736
|
:param _CpuType: CPU类型:Intel/AMD,Hygon
|
|
722
737
|
:type CpuType: str
|
|
738
|
+
:param _Zones: 可用区列表
|
|
739
|
+
:type Zones: list of str
|
|
723
740
|
"""
|
|
724
741
|
self._InstanceId = None
|
|
725
742
|
self._InstanceName = None
|
|
@@ -749,6 +766,7 @@ class DescribeInstanceDetail(AbstractModel):
|
|
|
749
766
|
self._ClusterId = None
|
|
750
767
|
self._ResourceTags = None
|
|
751
768
|
self._CpuType = None
|
|
769
|
+
self._Zones = None
|
|
752
770
|
|
|
753
771
|
@property
|
|
754
772
|
def InstanceId(self):
|
|
@@ -1058,6 +1076,17 @@ class DescribeInstanceDetail(AbstractModel):
|
|
|
1058
1076
|
def CpuType(self, CpuType):
|
|
1059
1077
|
self._CpuType = CpuType
|
|
1060
1078
|
|
|
1079
|
+
@property
|
|
1080
|
+
def Zones(self):
|
|
1081
|
+
r"""可用区列表
|
|
1082
|
+
:rtype: list of str
|
|
1083
|
+
"""
|
|
1084
|
+
return self._Zones
|
|
1085
|
+
|
|
1086
|
+
@Zones.setter
|
|
1087
|
+
def Zones(self, Zones):
|
|
1088
|
+
self._Zones = Zones
|
|
1089
|
+
|
|
1061
1090
|
|
|
1062
1091
|
def _deserialize(self, params):
|
|
1063
1092
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1093,6 +1122,7 @@ class DescribeInstanceDetail(AbstractModel):
|
|
|
1093
1122
|
obj._deserialize(item)
|
|
1094
1123
|
self._ResourceTags.append(obj)
|
|
1095
1124
|
self._CpuType = params.get("CpuType")
|
|
1125
|
+
self._Zones = params.get("Zones")
|
|
1096
1126
|
memeber_set = set(params.keys())
|
|
1097
1127
|
for name, value in vars(self).items():
|
|
1098
1128
|
property_name = name[1:]
|
|
@@ -1202,6 +1232,8 @@ class DescribeInstanceDetailResponse(AbstractModel):
|
|
|
1202
1232
|
:type ResourceTags: list of ResourceTag
|
|
1203
1233
|
:param _CpuType: CPU类型,Intel/AMD,Hygon
|
|
1204
1234
|
:type CpuType: str
|
|
1235
|
+
:param _Zones: 可用区列表
|
|
1236
|
+
:type Zones: list of str
|
|
1205
1237
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1206
1238
|
:type RequestId: str
|
|
1207
1239
|
"""
|
|
@@ -1233,6 +1265,7 @@ class DescribeInstanceDetailResponse(AbstractModel):
|
|
|
1233
1265
|
self._ClusterId = None
|
|
1234
1266
|
self._ResourceTags = None
|
|
1235
1267
|
self._CpuType = None
|
|
1268
|
+
self._Zones = None
|
|
1236
1269
|
self._RequestId = None
|
|
1237
1270
|
|
|
1238
1271
|
@property
|
|
@@ -1543,6 +1576,17 @@ class DescribeInstanceDetailResponse(AbstractModel):
|
|
|
1543
1576
|
def CpuType(self, CpuType):
|
|
1544
1577
|
self._CpuType = CpuType
|
|
1545
1578
|
|
|
1579
|
+
@property
|
|
1580
|
+
def Zones(self):
|
|
1581
|
+
r"""可用区列表
|
|
1582
|
+
:rtype: list of str
|
|
1583
|
+
"""
|
|
1584
|
+
return self._Zones
|
|
1585
|
+
|
|
1586
|
+
@Zones.setter
|
|
1587
|
+
def Zones(self, Zones):
|
|
1588
|
+
self._Zones = Zones
|
|
1589
|
+
|
|
1546
1590
|
@property
|
|
1547
1591
|
def RequestId(self):
|
|
1548
1592
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1589,6 +1633,7 @@ class DescribeInstanceDetailResponse(AbstractModel):
|
|
|
1589
1633
|
obj._deserialize(item)
|
|
1590
1634
|
self._ResourceTags.append(obj)
|
|
1591
1635
|
self._CpuType = params.get("CpuType")
|
|
1636
|
+
self._Zones = params.get("Zones")
|
|
1592
1637
|
self._RequestId = params.get("RequestId")
|
|
1593
1638
|
|
|
1594
1639
|
|
|
@@ -2271,6 +2316,8 @@ class HostDetail(AbstractModel):
|
|
|
2271
2316
|
:type Pid: int
|
|
2272
2317
|
:param _InstanceId: 独享集群实例Id
|
|
2273
2318
|
:type InstanceId: str
|
|
2319
|
+
:param _Zones: 可用区列表
|
|
2320
|
+
:type Zones: list of str
|
|
2274
2321
|
"""
|
|
2275
2322
|
self._HostId = None
|
|
2276
2323
|
self._HostName = None
|
|
@@ -2296,6 +2343,7 @@ class HostDetail(AbstractModel):
|
|
|
2296
2343
|
self._PidTag = None
|
|
2297
2344
|
self._Pid = None
|
|
2298
2345
|
self._InstanceId = None
|
|
2346
|
+
self._Zones = None
|
|
2299
2347
|
|
|
2300
2348
|
@property
|
|
2301
2349
|
def HostId(self):
|
|
@@ -2561,6 +2609,17 @@ class HostDetail(AbstractModel):
|
|
|
2561
2609
|
def InstanceId(self, InstanceId):
|
|
2562
2610
|
self._InstanceId = InstanceId
|
|
2563
2611
|
|
|
2612
|
+
@property
|
|
2613
|
+
def Zones(self):
|
|
2614
|
+
r"""可用区列表
|
|
2615
|
+
:rtype: list of str
|
|
2616
|
+
"""
|
|
2617
|
+
return self._Zones
|
|
2618
|
+
|
|
2619
|
+
@Zones.setter
|
|
2620
|
+
def Zones(self, Zones):
|
|
2621
|
+
self._Zones = Zones
|
|
2622
|
+
|
|
2564
2623
|
|
|
2565
2624
|
def _deserialize(self, params):
|
|
2566
2625
|
self._HostId = params.get("HostId")
|
|
@@ -2587,6 +2646,7 @@ class HostDetail(AbstractModel):
|
|
|
2587
2646
|
self._PidTag = params.get("PidTag")
|
|
2588
2647
|
self._Pid = params.get("Pid")
|
|
2589
2648
|
self._InstanceId = params.get("InstanceId")
|
|
2649
|
+
self._Zones = params.get("Zones")
|
|
2590
2650
|
memeber_set = set(params.keys())
|
|
2591
2651
|
for name, value in vars(self).items():
|
|
2592
2652
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dbdc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.35
|
|
4
4
|
Summary: Tencent Cloud Dbdc 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.35
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.35
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.7
|
|
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
|