tencentcloud-sdk-python-dlc 3.0.1179__tar.gz → 3.0.1187__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-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud/dlc/v20210125/models.py +78 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1187/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1179/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1179 → tencentcloud-sdk-python-dlc-3.0.1187}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-dlc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1187"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -18,6 +18,53 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AccessInfo(AbstractModel):
|
|
22
|
+
"""引擎的访问信息
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _AccessType: 访问引擎的方法
|
|
29
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30
|
+
:type AccessType: str
|
|
31
|
+
:param _AccessConnectionInfos: 访问引擎的url,内部的部分参数需要根据实际情况替换
|
|
32
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
33
|
+
:type AccessConnectionInfos: list of str
|
|
34
|
+
"""
|
|
35
|
+
self._AccessType = None
|
|
36
|
+
self._AccessConnectionInfos = None
|
|
37
|
+
|
|
38
|
+
@property
|
|
39
|
+
def AccessType(self):
|
|
40
|
+
return self._AccessType
|
|
41
|
+
|
|
42
|
+
@AccessType.setter
|
|
43
|
+
def AccessType(self, AccessType):
|
|
44
|
+
self._AccessType = AccessType
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
def AccessConnectionInfos(self):
|
|
48
|
+
return self._AccessConnectionInfos
|
|
49
|
+
|
|
50
|
+
@AccessConnectionInfos.setter
|
|
51
|
+
def AccessConnectionInfos(self, AccessConnectionInfos):
|
|
52
|
+
self._AccessConnectionInfos = AccessConnectionInfos
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def _deserialize(self, params):
|
|
56
|
+
self._AccessType = params.get("AccessType")
|
|
57
|
+
self._AccessConnectionInfos = params.get("AccessConnectionInfos")
|
|
58
|
+
memeber_set = set(params.keys())
|
|
59
|
+
for name, value in vars(self).items():
|
|
60
|
+
property_name = name[1:]
|
|
61
|
+
if property_name in memeber_set:
|
|
62
|
+
memeber_set.remove(property_name)
|
|
63
|
+
if len(memeber_set) > 0:
|
|
64
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
21
68
|
class AddDMSPartitionsRequest(AbstractModel):
|
|
22
69
|
"""AddDMSPartitions请求参数结构体
|
|
23
70
|
|
|
@@ -7697,6 +7744,12 @@ class DataEngineInfo(AbstractModel):
|
|
|
7697
7744
|
:param _EngineResourceUsedCU: 引擎当前使用量(Cu)
|
|
7698
7745
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7699
7746
|
:type EngineResourceUsedCU: int
|
|
7747
|
+
:param _AccessInfos: 引擎的访问信息
|
|
7748
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7749
|
+
:type AccessInfos: list of AccessInfo
|
|
7750
|
+
:param _EngineNetworkName: 引擎所在网络名称
|
|
7751
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7752
|
+
:type EngineNetworkName: str
|
|
7700
7753
|
"""
|
|
7701
7754
|
self._DataEngineName = None
|
|
7702
7755
|
self._EngineType = None
|
|
@@ -7749,6 +7802,8 @@ class DataEngineInfo(AbstractModel):
|
|
|
7749
7802
|
self._EngineNetworkId = None
|
|
7750
7803
|
self._EngineResourceGroupCount = None
|
|
7751
7804
|
self._EngineResourceUsedCU = None
|
|
7805
|
+
self._AccessInfos = None
|
|
7806
|
+
self._EngineNetworkName = None
|
|
7752
7807
|
|
|
7753
7808
|
@property
|
|
7754
7809
|
def DataEngineName(self):
|
|
@@ -8158,6 +8213,22 @@ class DataEngineInfo(AbstractModel):
|
|
|
8158
8213
|
def EngineResourceUsedCU(self, EngineResourceUsedCU):
|
|
8159
8214
|
self._EngineResourceUsedCU = EngineResourceUsedCU
|
|
8160
8215
|
|
|
8216
|
+
@property
|
|
8217
|
+
def AccessInfos(self):
|
|
8218
|
+
return self._AccessInfos
|
|
8219
|
+
|
|
8220
|
+
@AccessInfos.setter
|
|
8221
|
+
def AccessInfos(self, AccessInfos):
|
|
8222
|
+
self._AccessInfos = AccessInfos
|
|
8223
|
+
|
|
8224
|
+
@property
|
|
8225
|
+
def EngineNetworkName(self):
|
|
8226
|
+
return self._EngineNetworkName
|
|
8227
|
+
|
|
8228
|
+
@EngineNetworkName.setter
|
|
8229
|
+
def EngineNetworkName(self, EngineNetworkName):
|
|
8230
|
+
self._EngineNetworkName = EngineNetworkName
|
|
8231
|
+
|
|
8161
8232
|
|
|
8162
8233
|
def _deserialize(self, params):
|
|
8163
8234
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -8225,6 +8296,13 @@ class DataEngineInfo(AbstractModel):
|
|
|
8225
8296
|
self._EngineNetworkId = params.get("EngineNetworkId")
|
|
8226
8297
|
self._EngineResourceGroupCount = params.get("EngineResourceGroupCount")
|
|
8227
8298
|
self._EngineResourceUsedCU = params.get("EngineResourceUsedCU")
|
|
8299
|
+
if params.get("AccessInfos") is not None:
|
|
8300
|
+
self._AccessInfos = []
|
|
8301
|
+
for item in params.get("AccessInfos"):
|
|
8302
|
+
obj = AccessInfo()
|
|
8303
|
+
obj._deserialize(item)
|
|
8304
|
+
self._AccessInfos.append(obj)
|
|
8305
|
+
self._EngineNetworkName = params.get("EngineNetworkName")
|
|
8228
8306
|
memeber_set = set(params.keys())
|
|
8229
8307
|
for name, value in vars(self).items():
|
|
8230
8308
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1187
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1179
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|