tencentcloud-sdk-python-cynosdb 3.0.1382__py2.py3-none-any.whl → 3.0.1383__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-cynosdb might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cynosdb/v20190107/models.py +252 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1382.dist-info → tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info}/METADATA +2 -2
- {tencentcloud_sdk_python_cynosdb-3.0.1382.dist-info → tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_cynosdb-3.0.1382.dist-info → tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1382.dist-info → tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -5029,6 +5029,8 @@ class CreateAuditLogFileRequest(AbstractModel):
|
|
|
5029
5029
|
|
|
5030
5030
|
@property
|
|
5031
5031
|
def Filter(self):
|
|
5032
|
+
warnings.warn("parameter `Filter` is deprecated", DeprecationWarning)
|
|
5033
|
+
|
|
5032
5034
|
"""已废弃。
|
|
5033
5035
|
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.AuditLogFilter`
|
|
5034
5036
|
"""
|
|
@@ -5036,6 +5038,8 @@ class CreateAuditLogFileRequest(AbstractModel):
|
|
|
5036
5038
|
|
|
5037
5039
|
@Filter.setter
|
|
5038
5040
|
def Filter(self, Filter):
|
|
5041
|
+
warnings.warn("parameter `Filter` is deprecated", DeprecationWarning)
|
|
5042
|
+
|
|
5039
5043
|
self._Filter = Filter
|
|
5040
5044
|
|
|
5041
5045
|
@property
|
|
@@ -5868,6 +5872,10 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
5868
5872
|
:type SlaveZone: str
|
|
5869
5873
|
:param _InstanceInitInfos: 实例初始化配置信息,主要用于购买集群时选不同规格实例
|
|
5870
5874
|
:type InstanceInitInfos: list of InstanceInitInfo
|
|
5875
|
+
:param _GdnId: 全球数据库唯一标识
|
|
5876
|
+
:type GdnId: str
|
|
5877
|
+
:param _ProxyConfig: 数据库代理配置
|
|
5878
|
+
:type ProxyConfig: :class:`tencentcloud.cynosdb.v20190107.models.ProxyConfig`
|
|
5871
5879
|
"""
|
|
5872
5880
|
self._Zone = None
|
|
5873
5881
|
self._VpcId = None
|
|
@@ -5910,6 +5918,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
5910
5918
|
self._ParamTemplateId = None
|
|
5911
5919
|
self._SlaveZone = None
|
|
5912
5920
|
self._InstanceInitInfos = None
|
|
5921
|
+
self._GdnId = None
|
|
5922
|
+
self._ProxyConfig = None
|
|
5913
5923
|
|
|
5914
5924
|
@property
|
|
5915
5925
|
def Zone(self):
|
|
@@ -6384,6 +6394,28 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
6384
6394
|
def InstanceInitInfos(self, InstanceInitInfos):
|
|
6385
6395
|
self._InstanceInitInfos = InstanceInitInfos
|
|
6386
6396
|
|
|
6397
|
+
@property
|
|
6398
|
+
def GdnId(self):
|
|
6399
|
+
"""全球数据库唯一标识
|
|
6400
|
+
:rtype: str
|
|
6401
|
+
"""
|
|
6402
|
+
return self._GdnId
|
|
6403
|
+
|
|
6404
|
+
@GdnId.setter
|
|
6405
|
+
def GdnId(self, GdnId):
|
|
6406
|
+
self._GdnId = GdnId
|
|
6407
|
+
|
|
6408
|
+
@property
|
|
6409
|
+
def ProxyConfig(self):
|
|
6410
|
+
"""数据库代理配置
|
|
6411
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.ProxyConfig`
|
|
6412
|
+
"""
|
|
6413
|
+
return self._ProxyConfig
|
|
6414
|
+
|
|
6415
|
+
@ProxyConfig.setter
|
|
6416
|
+
def ProxyConfig(self, ProxyConfig):
|
|
6417
|
+
self._ProxyConfig = ProxyConfig
|
|
6418
|
+
|
|
6387
6419
|
|
|
6388
6420
|
def _deserialize(self, params):
|
|
6389
6421
|
self._Zone = params.get("Zone")
|
|
@@ -6442,6 +6474,10 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
6442
6474
|
obj = InstanceInitInfo()
|
|
6443
6475
|
obj._deserialize(item)
|
|
6444
6476
|
self._InstanceInitInfos.append(obj)
|
|
6477
|
+
self._GdnId = params.get("GdnId")
|
|
6478
|
+
if params.get("ProxyConfig") is not None:
|
|
6479
|
+
self._ProxyConfig = ProxyConfig()
|
|
6480
|
+
self._ProxyConfig._deserialize(params.get("ProxyConfig"))
|
|
6445
6481
|
memeber_set = set(params.keys())
|
|
6446
6482
|
for name, value in vars(self).items():
|
|
6447
6483
|
property_name = name[1:]
|
|
@@ -7749,6 +7785,8 @@ pause
|
|
|
7749
7785
|
:type Ability: :class:`tencentcloud.cynosdb.v20190107.models.Ability`
|
|
7750
7786
|
:param _ResourcePackages: 实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK)
|
|
7751
7787
|
:type ResourcePackages: list of ResourcePackage
|
|
7788
|
+
:param _GdnId: 全球数据库唯一标识
|
|
7789
|
+
:type GdnId: str
|
|
7752
7790
|
"""
|
|
7753
7791
|
self._Status = None
|
|
7754
7792
|
self._UpdateTime = None
|
|
@@ -7793,6 +7831,7 @@ pause
|
|
|
7793
7831
|
self._OrderSource = None
|
|
7794
7832
|
self._Ability = None
|
|
7795
7833
|
self._ResourcePackages = None
|
|
7834
|
+
self._GdnId = None
|
|
7796
7835
|
|
|
7797
7836
|
@property
|
|
7798
7837
|
def Status(self):
|
|
@@ -8278,6 +8317,17 @@ pause
|
|
|
8278
8317
|
def ResourcePackages(self, ResourcePackages):
|
|
8279
8318
|
self._ResourcePackages = ResourcePackages
|
|
8280
8319
|
|
|
8320
|
+
@property
|
|
8321
|
+
def GdnId(self):
|
|
8322
|
+
"""全球数据库唯一标识
|
|
8323
|
+
:rtype: str
|
|
8324
|
+
"""
|
|
8325
|
+
return self._GdnId
|
|
8326
|
+
|
|
8327
|
+
@GdnId.setter
|
|
8328
|
+
def GdnId(self, GdnId):
|
|
8329
|
+
self._GdnId = GdnId
|
|
8330
|
+
|
|
8281
8331
|
|
|
8282
8332
|
def _deserialize(self, params):
|
|
8283
8333
|
self._Status = params.get("Status")
|
|
@@ -8345,6 +8395,7 @@ pause
|
|
|
8345
8395
|
obj = ResourcePackage()
|
|
8346
8396
|
obj._deserialize(item)
|
|
8347
8397
|
self._ResourcePackages.append(obj)
|
|
8398
|
+
self._GdnId = params.get("GdnId")
|
|
8348
8399
|
memeber_set = set(params.keys())
|
|
8349
8400
|
for name, value in vars(self).items():
|
|
8350
8401
|
property_name = name[1:]
|
|
@@ -8468,6 +8519,13 @@ pausing
|
|
|
8468
8519
|
:type SlaveZoneAttr: list of SlaveZoneAttrItem
|
|
8469
8520
|
:param _CynosVersionTag: 版本标签
|
|
8470
8521
|
:type CynosVersionTag: str
|
|
8522
|
+
:param _GdnId: 全球数据库网络唯一标识
|
|
8523
|
+
:type GdnId: str
|
|
8524
|
+
:param _GdnRole: 集群在全球数据网络中的角色。
|
|
8525
|
+
主集群- primary
|
|
8526
|
+
从集群 - standby
|
|
8527
|
+
如为空,该字段无效
|
|
8528
|
+
:type GdnRole: str
|
|
8471
8529
|
"""
|
|
8472
8530
|
self._ClusterId = None
|
|
8473
8531
|
self._ClusterName = None
|
|
@@ -8520,6 +8578,8 @@ pausing
|
|
|
8520
8578
|
self._NetworkType = None
|
|
8521
8579
|
self._SlaveZoneAttr = None
|
|
8522
8580
|
self._CynosVersionTag = None
|
|
8581
|
+
self._GdnId = None
|
|
8582
|
+
self._GdnRole = None
|
|
8523
8583
|
|
|
8524
8584
|
@property
|
|
8525
8585
|
def ClusterId(self):
|
|
@@ -9086,6 +9146,31 @@ pausing
|
|
|
9086
9146
|
def CynosVersionTag(self, CynosVersionTag):
|
|
9087
9147
|
self._CynosVersionTag = CynosVersionTag
|
|
9088
9148
|
|
|
9149
|
+
@property
|
|
9150
|
+
def GdnId(self):
|
|
9151
|
+
"""全球数据库网络唯一标识
|
|
9152
|
+
:rtype: str
|
|
9153
|
+
"""
|
|
9154
|
+
return self._GdnId
|
|
9155
|
+
|
|
9156
|
+
@GdnId.setter
|
|
9157
|
+
def GdnId(self, GdnId):
|
|
9158
|
+
self._GdnId = GdnId
|
|
9159
|
+
|
|
9160
|
+
@property
|
|
9161
|
+
def GdnRole(self):
|
|
9162
|
+
"""集群在全球数据网络中的角色。
|
|
9163
|
+
主集群- primary
|
|
9164
|
+
从集群 - standby
|
|
9165
|
+
如为空,该字段无效
|
|
9166
|
+
:rtype: str
|
|
9167
|
+
"""
|
|
9168
|
+
return self._GdnRole
|
|
9169
|
+
|
|
9170
|
+
@GdnRole.setter
|
|
9171
|
+
def GdnRole(self, GdnRole):
|
|
9172
|
+
self._GdnRole = GdnRole
|
|
9173
|
+
|
|
9089
9174
|
|
|
9090
9175
|
def _deserialize(self, params):
|
|
9091
9176
|
self._ClusterId = params.get("ClusterId")
|
|
@@ -9171,6 +9256,8 @@ pausing
|
|
|
9171
9256
|
obj._deserialize(item)
|
|
9172
9257
|
self._SlaveZoneAttr.append(obj)
|
|
9173
9258
|
self._CynosVersionTag = params.get("CynosVersionTag")
|
|
9259
|
+
self._GdnId = params.get("GdnId")
|
|
9260
|
+
self._GdnRole = params.get("GdnRole")
|
|
9174
9261
|
memeber_set = set(params.keys())
|
|
9175
9262
|
for name, value in vars(self).items():
|
|
9176
9263
|
property_name = name[1:]
|
|
@@ -9375,6 +9462,8 @@ pause
|
|
|
9375
9462
|
:type CynosVersionTag: str
|
|
9376
9463
|
:param _NodeList: libradb 节点信息
|
|
9377
9464
|
:type NodeList: list of str
|
|
9465
|
+
:param _GdnId: 全球数据库唯一标识
|
|
9466
|
+
:type GdnId: str
|
|
9378
9467
|
"""
|
|
9379
9468
|
self._Uin = None
|
|
9380
9469
|
self._AppId = None
|
|
@@ -9434,6 +9523,7 @@ pause
|
|
|
9434
9523
|
self._InstanceStorageType = None
|
|
9435
9524
|
self._CynosVersionTag = None
|
|
9436
9525
|
self._NodeList = None
|
|
9526
|
+
self._GdnId = None
|
|
9437
9527
|
|
|
9438
9528
|
@property
|
|
9439
9529
|
def Uin(self):
|
|
@@ -10078,6 +10168,17 @@ pause
|
|
|
10078
10168
|
def NodeList(self, NodeList):
|
|
10079
10169
|
self._NodeList = NodeList
|
|
10080
10170
|
|
|
10171
|
+
@property
|
|
10172
|
+
def GdnId(self):
|
|
10173
|
+
"""全球数据库唯一标识
|
|
10174
|
+
:rtype: str
|
|
10175
|
+
"""
|
|
10176
|
+
return self._GdnId
|
|
10177
|
+
|
|
10178
|
+
@GdnId.setter
|
|
10179
|
+
def GdnId(self, GdnId):
|
|
10180
|
+
self._GdnId = GdnId
|
|
10181
|
+
|
|
10081
10182
|
|
|
10082
10183
|
def _deserialize(self, params):
|
|
10083
10184
|
self._Uin = params.get("Uin")
|
|
@@ -10160,6 +10261,7 @@ pause
|
|
|
10160
10261
|
self._InstanceStorageType = params.get("InstanceStorageType")
|
|
10161
10262
|
self._CynosVersionTag = params.get("CynosVersionTag")
|
|
10162
10263
|
self._NodeList = params.get("NodeList")
|
|
10264
|
+
self._GdnId = params.get("GdnId")
|
|
10163
10265
|
memeber_set = set(params.keys())
|
|
10164
10266
|
for name, value in vars(self).items():
|
|
10165
10267
|
property_name = name[1:]
|
|
@@ -13360,6 +13462,8 @@ class DescribeAuditLogsRequest(AbstractModel):
|
|
|
13360
13462
|
|
|
13361
13463
|
@property
|
|
13362
13464
|
def Filter(self):
|
|
13465
|
+
warnings.warn("parameter `Filter` is deprecated", DeprecationWarning)
|
|
13466
|
+
|
|
13363
13467
|
"""已废弃。
|
|
13364
13468
|
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.AuditLogFilter`
|
|
13365
13469
|
"""
|
|
@@ -13367,6 +13471,8 @@ class DescribeAuditLogsRequest(AbstractModel):
|
|
|
13367
13471
|
|
|
13368
13472
|
@Filter.setter
|
|
13369
13473
|
def Filter(self, Filter):
|
|
13474
|
+
warnings.warn("parameter `Filter` is deprecated", DeprecationWarning)
|
|
13475
|
+
|
|
13370
13476
|
self._Filter = Filter
|
|
13371
13477
|
|
|
13372
13478
|
@property
|
|
@@ -31789,6 +31895,152 @@ class PolicyRule(AbstractModel):
|
|
|
31789
31895
|
|
|
31790
31896
|
|
|
31791
31897
|
|
|
31898
|
+
class ProxyConfig(AbstractModel):
|
|
31899
|
+
"""访问代理配置
|
|
31900
|
+
|
|
31901
|
+
"""
|
|
31902
|
+
|
|
31903
|
+
def __init__(self):
|
|
31904
|
+
r"""
|
|
31905
|
+
:param _ProxyCount: 数据库代理组节点个数(该参数不再建议使用,建议使用ProxyZones)
|
|
31906
|
+
:type ProxyCount: int
|
|
31907
|
+
:param _Cpu: cpu核数
|
|
31908
|
+
:type Cpu: int
|
|
31909
|
+
:param _Mem: 内存
|
|
31910
|
+
:type Mem: int
|
|
31911
|
+
:param _ConnectionPoolType: 连接池类型:SessionConnectionPool(会话级别连接池 )
|
|
31912
|
+
:type ConnectionPoolType: str
|
|
31913
|
+
:param _OpenConnectionPool: 是否开启连接池,yes-开启,no-不开启
|
|
31914
|
+
:type OpenConnectionPool: str
|
|
31915
|
+
:param _ConnectionPoolTimeOut: 连接池阈值:单位(秒)
|
|
31916
|
+
:type ConnectionPoolTimeOut: int
|
|
31917
|
+
:param _Description: 描述说明
|
|
31918
|
+
:type Description: str
|
|
31919
|
+
:param _ProxyZones: 数据库节点信息(该参数与ProxyCount需要任选一个输入)
|
|
31920
|
+
:type ProxyZones: list of ProxyZone
|
|
31921
|
+
"""
|
|
31922
|
+
self._ProxyCount = None
|
|
31923
|
+
self._Cpu = None
|
|
31924
|
+
self._Mem = None
|
|
31925
|
+
self._ConnectionPoolType = None
|
|
31926
|
+
self._OpenConnectionPool = None
|
|
31927
|
+
self._ConnectionPoolTimeOut = None
|
|
31928
|
+
self._Description = None
|
|
31929
|
+
self._ProxyZones = None
|
|
31930
|
+
|
|
31931
|
+
@property
|
|
31932
|
+
def ProxyCount(self):
|
|
31933
|
+
"""数据库代理组节点个数(该参数不再建议使用,建议使用ProxyZones)
|
|
31934
|
+
:rtype: int
|
|
31935
|
+
"""
|
|
31936
|
+
return self._ProxyCount
|
|
31937
|
+
|
|
31938
|
+
@ProxyCount.setter
|
|
31939
|
+
def ProxyCount(self, ProxyCount):
|
|
31940
|
+
self._ProxyCount = ProxyCount
|
|
31941
|
+
|
|
31942
|
+
@property
|
|
31943
|
+
def Cpu(self):
|
|
31944
|
+
"""cpu核数
|
|
31945
|
+
:rtype: int
|
|
31946
|
+
"""
|
|
31947
|
+
return self._Cpu
|
|
31948
|
+
|
|
31949
|
+
@Cpu.setter
|
|
31950
|
+
def Cpu(self, Cpu):
|
|
31951
|
+
self._Cpu = Cpu
|
|
31952
|
+
|
|
31953
|
+
@property
|
|
31954
|
+
def Mem(self):
|
|
31955
|
+
"""内存
|
|
31956
|
+
:rtype: int
|
|
31957
|
+
"""
|
|
31958
|
+
return self._Mem
|
|
31959
|
+
|
|
31960
|
+
@Mem.setter
|
|
31961
|
+
def Mem(self, Mem):
|
|
31962
|
+
self._Mem = Mem
|
|
31963
|
+
|
|
31964
|
+
@property
|
|
31965
|
+
def ConnectionPoolType(self):
|
|
31966
|
+
"""连接池类型:SessionConnectionPool(会话级别连接池 )
|
|
31967
|
+
:rtype: str
|
|
31968
|
+
"""
|
|
31969
|
+
return self._ConnectionPoolType
|
|
31970
|
+
|
|
31971
|
+
@ConnectionPoolType.setter
|
|
31972
|
+
def ConnectionPoolType(self, ConnectionPoolType):
|
|
31973
|
+
self._ConnectionPoolType = ConnectionPoolType
|
|
31974
|
+
|
|
31975
|
+
@property
|
|
31976
|
+
def OpenConnectionPool(self):
|
|
31977
|
+
"""是否开启连接池,yes-开启,no-不开启
|
|
31978
|
+
:rtype: str
|
|
31979
|
+
"""
|
|
31980
|
+
return self._OpenConnectionPool
|
|
31981
|
+
|
|
31982
|
+
@OpenConnectionPool.setter
|
|
31983
|
+
def OpenConnectionPool(self, OpenConnectionPool):
|
|
31984
|
+
self._OpenConnectionPool = OpenConnectionPool
|
|
31985
|
+
|
|
31986
|
+
@property
|
|
31987
|
+
def ConnectionPoolTimeOut(self):
|
|
31988
|
+
"""连接池阈值:单位(秒)
|
|
31989
|
+
:rtype: int
|
|
31990
|
+
"""
|
|
31991
|
+
return self._ConnectionPoolTimeOut
|
|
31992
|
+
|
|
31993
|
+
@ConnectionPoolTimeOut.setter
|
|
31994
|
+
def ConnectionPoolTimeOut(self, ConnectionPoolTimeOut):
|
|
31995
|
+
self._ConnectionPoolTimeOut = ConnectionPoolTimeOut
|
|
31996
|
+
|
|
31997
|
+
@property
|
|
31998
|
+
def Description(self):
|
|
31999
|
+
"""描述说明
|
|
32000
|
+
:rtype: str
|
|
32001
|
+
"""
|
|
32002
|
+
return self._Description
|
|
32003
|
+
|
|
32004
|
+
@Description.setter
|
|
32005
|
+
def Description(self, Description):
|
|
32006
|
+
self._Description = Description
|
|
32007
|
+
|
|
32008
|
+
@property
|
|
32009
|
+
def ProxyZones(self):
|
|
32010
|
+
"""数据库节点信息(该参数与ProxyCount需要任选一个输入)
|
|
32011
|
+
:rtype: list of ProxyZone
|
|
32012
|
+
"""
|
|
32013
|
+
return self._ProxyZones
|
|
32014
|
+
|
|
32015
|
+
@ProxyZones.setter
|
|
32016
|
+
def ProxyZones(self, ProxyZones):
|
|
32017
|
+
self._ProxyZones = ProxyZones
|
|
32018
|
+
|
|
32019
|
+
|
|
32020
|
+
def _deserialize(self, params):
|
|
32021
|
+
self._ProxyCount = params.get("ProxyCount")
|
|
32022
|
+
self._Cpu = params.get("Cpu")
|
|
32023
|
+
self._Mem = params.get("Mem")
|
|
32024
|
+
self._ConnectionPoolType = params.get("ConnectionPoolType")
|
|
32025
|
+
self._OpenConnectionPool = params.get("OpenConnectionPool")
|
|
32026
|
+
self._ConnectionPoolTimeOut = params.get("ConnectionPoolTimeOut")
|
|
32027
|
+
self._Description = params.get("Description")
|
|
32028
|
+
if params.get("ProxyZones") is not None:
|
|
32029
|
+
self._ProxyZones = []
|
|
32030
|
+
for item in params.get("ProxyZones"):
|
|
32031
|
+
obj = ProxyZone()
|
|
32032
|
+
obj._deserialize(item)
|
|
32033
|
+
self._ProxyZones.append(obj)
|
|
32034
|
+
memeber_set = set(params.keys())
|
|
32035
|
+
for name, value in vars(self).items():
|
|
32036
|
+
property_name = name[1:]
|
|
32037
|
+
if property_name in memeber_set:
|
|
32038
|
+
memeber_set.remove(property_name)
|
|
32039
|
+
if len(memeber_set) > 0:
|
|
32040
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
32041
|
+
|
|
32042
|
+
|
|
32043
|
+
|
|
31792
32044
|
class ProxyConnectionPoolInfo(AbstractModel):
|
|
31793
32045
|
"""数据库代理连接池信息
|
|
31794
32046
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cynosdb
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1383
|
|
4
4
|
Summary: Tencent Cloud Cynosdb 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 (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1383)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=8Xmub_b-Wd19tU1pj3io4MxpRhSK2A6ny0ZQ-yYZH9I,631
|
|
2
2
|
tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=mZ9T42T4R6oSf1EjGI_mXXDiXCVdWEid8QGwvWGLZVE,152285
|
|
5
5
|
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=6UGZqvybn7710_SxABzshE37vYfLw6ETSdZ6S_0IGes,13756
|
|
6
|
-
tencentcloud/cynosdb/v20190107/models.py,sha256=
|
|
7
|
-
tencentcloud_sdk_python_cynosdb-3.0.
|
|
8
|
-
tencentcloud_sdk_python_cynosdb-3.0.
|
|
9
|
-
tencentcloud_sdk_python_cynosdb-3.0.
|
|
10
|
-
tencentcloud_sdk_python_cynosdb-3.0.
|
|
6
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=_w0dwsYe2EctZpQ_YzX-bsGQCRIzlLYQ7vCz2YGIvlw,1148268
|
|
7
|
+
tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info/METADATA,sha256=K15PShNFfOj1egordGpr2-CFtLDXHiWpKNGDJS7VL8A,1516
|
|
8
|
+
tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_cynosdb-3.0.1383.dist-info/RECORD,,
|
|
File without changes
|