tencentcloud-sdk-python-redis 3.0.935__tar.gz → 3.0.956__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-redis might be problematic. Click here for more details.
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/setup.py +1 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud/redis/v20180412/models.py +6 -6
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud/redis/v20180412/redis_client.py +93 -93
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud_sdk_python_redis.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +1 -0
- tencentcloud-sdk-python-redis-3.0.956/tencentcloud_sdk_python_redis.egg-info/requires.txt +1 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/README.rst +0 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/setup.cfg +0 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud/redis/__init__.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud/redis/v20180412/__init__.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud_sdk_python_redis.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-redis-3.0.935 → tencentcloud-sdk-python-redis-3.0.956}/tencentcloud_sdk_python_redis.egg-info/top_level.txt +0 -0
|
@@ -8,6 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-redis',
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.956"],
|
|
11
12
|
version=tencentcloud.__version__,
|
|
12
13
|
description='Tencent Cloud Redis SDK for Python',
|
|
13
14
|
long_description=open('README.rst').read(),
|
|
@@ -472,13 +472,13 @@ class BackupDownloadInfo(AbstractModel):
|
|
|
472
472
|
|
|
473
473
|
def __init__(self):
|
|
474
474
|
r"""
|
|
475
|
-
:param _FileName:
|
|
475
|
+
:param _FileName: 备份文件名称。
|
|
476
476
|
:type FileName: str
|
|
477
|
-
:param _FileSize: 备份文件大小,单位B,如果为0
|
|
477
|
+
:param _FileSize: 备份文件大小,单位B,如果为0,表示无效。
|
|
478
478
|
:type FileSize: int
|
|
479
|
-
:param _DownloadUrl:
|
|
479
|
+
:param _DownloadUrl: 备份文件外网下载地址。下载地址的有效时长为6小时,过期后请重新获取。
|
|
480
480
|
:type DownloadUrl: str
|
|
481
|
-
:param _InnerDownloadUrl:
|
|
481
|
+
:param _InnerDownloadUrl: 备份文件内网下载地址。下载地址的有效时长为6小时,过期后请重新获取。
|
|
482
482
|
:type InnerDownloadUrl: str
|
|
483
483
|
"""
|
|
484
484
|
self._FileName = None
|
|
@@ -14885,9 +14885,9 @@ class SourceInfo(AbstractModel):
|
|
|
14885
14885
|
|
|
14886
14886
|
def __init__(self):
|
|
14887
14887
|
r"""
|
|
14888
|
-
:param _Ip: 来源IP
|
|
14888
|
+
:param _Ip: 来源 IP 地址。
|
|
14889
14889
|
:type Ip: str
|
|
14890
|
-
:param _Conn:
|
|
14890
|
+
:param _Conn: 客户端连接数量。
|
|
14891
14891
|
:type Conn: int
|
|
14892
14892
|
:param _Cmd: 命令
|
|
14893
14893
|
:type Cmd: int
|
|
@@ -46,7 +46,7 @@ class RedisClient(AbstractClient):
|
|
|
46
46
|
if isinstance(e, TencentCloudSDKException):
|
|
47
47
|
raise
|
|
48
48
|
else:
|
|
49
|
-
raise TencentCloudSDKException(e.
|
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
def AllocateWanAddress(self, request):
|
|
@@ -69,7 +69,7 @@ class RedisClient(AbstractClient):
|
|
|
69
69
|
if isinstance(e, TencentCloudSDKException):
|
|
70
70
|
raise
|
|
71
71
|
else:
|
|
72
|
-
raise TencentCloudSDKException(e.
|
|
72
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
def ApplyParamsTemplate(self, request):
|
|
@@ -92,7 +92,7 @@ class RedisClient(AbstractClient):
|
|
|
92
92
|
if isinstance(e, TencentCloudSDKException):
|
|
93
93
|
raise
|
|
94
94
|
else:
|
|
95
|
-
raise TencentCloudSDKException(e.
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
def AssociateSecurityGroups(self, request):
|
|
@@ -115,7 +115,7 @@ class RedisClient(AbstractClient):
|
|
|
115
115
|
if isinstance(e, TencentCloudSDKException):
|
|
116
116
|
raise
|
|
117
117
|
else:
|
|
118
|
-
raise TencentCloudSDKException(e.
|
|
118
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
119
119
|
|
|
120
120
|
|
|
121
121
|
def ChangeInstanceRole(self, request):
|
|
@@ -138,7 +138,7 @@ class RedisClient(AbstractClient):
|
|
|
138
138
|
if isinstance(e, TencentCloudSDKException):
|
|
139
139
|
raise
|
|
140
140
|
else:
|
|
141
|
-
raise TencentCloudSDKException(e.
|
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
142
|
|
|
143
143
|
|
|
144
144
|
def ChangeMasterInstance(self, request):
|
|
@@ -161,7 +161,7 @@ class RedisClient(AbstractClient):
|
|
|
161
161
|
if isinstance(e, TencentCloudSDKException):
|
|
162
162
|
raise
|
|
163
163
|
else:
|
|
164
|
-
raise TencentCloudSDKException(e.
|
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
def ChangeReplicaToMaster(self, request):
|
|
@@ -184,7 +184,7 @@ class RedisClient(AbstractClient):
|
|
|
184
184
|
if isinstance(e, TencentCloudSDKException):
|
|
185
185
|
raise
|
|
186
186
|
else:
|
|
187
|
-
raise TencentCloudSDKException(e.
|
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
188
188
|
|
|
189
189
|
|
|
190
190
|
def CleanUpInstance(self, request):
|
|
@@ -207,7 +207,7 @@ class RedisClient(AbstractClient):
|
|
|
207
207
|
if isinstance(e, TencentCloudSDKException):
|
|
208
208
|
raise
|
|
209
209
|
else:
|
|
210
|
-
raise TencentCloudSDKException(e.
|
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
def ClearInstance(self, request):
|
|
@@ -230,7 +230,7 @@ class RedisClient(AbstractClient):
|
|
|
230
230
|
if isinstance(e, TencentCloudSDKException):
|
|
231
231
|
raise
|
|
232
232
|
else:
|
|
233
|
-
raise TencentCloudSDKException(e.
|
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
def CloneInstances(self, request):
|
|
@@ -253,7 +253,7 @@ class RedisClient(AbstractClient):
|
|
|
253
253
|
if isinstance(e, TencentCloudSDKException):
|
|
254
254
|
raise
|
|
255
255
|
else:
|
|
256
|
-
raise TencentCloudSDKException(e.
|
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
257
257
|
|
|
258
258
|
|
|
259
259
|
def CloseSSL(self, request):
|
|
@@ -276,7 +276,7 @@ class RedisClient(AbstractClient):
|
|
|
276
276
|
if isinstance(e, TencentCloudSDKException):
|
|
277
277
|
raise
|
|
278
278
|
else:
|
|
279
|
-
raise TencentCloudSDKException(e.
|
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
def CreateInstanceAccount(self, request):
|
|
@@ -299,7 +299,7 @@ class RedisClient(AbstractClient):
|
|
|
299
299
|
if isinstance(e, TencentCloudSDKException):
|
|
300
300
|
raise
|
|
301
301
|
else:
|
|
302
|
-
raise TencentCloudSDKException(e.
|
|
302
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
def CreateInstances(self, request):
|
|
@@ -322,7 +322,7 @@ class RedisClient(AbstractClient):
|
|
|
322
322
|
if isinstance(e, TencentCloudSDKException):
|
|
323
323
|
raise
|
|
324
324
|
else:
|
|
325
|
-
raise TencentCloudSDKException(e.
|
|
325
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
326
326
|
|
|
327
327
|
|
|
328
328
|
def CreateParamTemplate(self, request):
|
|
@@ -345,7 +345,7 @@ class RedisClient(AbstractClient):
|
|
|
345
345
|
if isinstance(e, TencentCloudSDKException):
|
|
346
346
|
raise
|
|
347
347
|
else:
|
|
348
|
-
raise TencentCloudSDKException(e.
|
|
348
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
349
349
|
|
|
350
350
|
|
|
351
351
|
def CreateReplicationGroup(self, request):
|
|
@@ -368,7 +368,7 @@ class RedisClient(AbstractClient):
|
|
|
368
368
|
if isinstance(e, TencentCloudSDKException):
|
|
369
369
|
raise
|
|
370
370
|
else:
|
|
371
|
-
raise TencentCloudSDKException(e.
|
|
371
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
372
372
|
|
|
373
373
|
|
|
374
374
|
def DeleteInstanceAccount(self, request):
|
|
@@ -391,7 +391,7 @@ class RedisClient(AbstractClient):
|
|
|
391
391
|
if isinstance(e, TencentCloudSDKException):
|
|
392
392
|
raise
|
|
393
393
|
else:
|
|
394
|
-
raise TencentCloudSDKException(e.
|
|
394
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
395
395
|
|
|
396
396
|
|
|
397
397
|
def DeleteParamTemplate(self, request):
|
|
@@ -414,7 +414,7 @@ class RedisClient(AbstractClient):
|
|
|
414
414
|
if isinstance(e, TencentCloudSDKException):
|
|
415
415
|
raise
|
|
416
416
|
else:
|
|
417
|
-
raise TencentCloudSDKException(e.
|
|
417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
418
418
|
|
|
419
419
|
|
|
420
420
|
def DeleteReplicationInstance(self, request):
|
|
@@ -437,7 +437,7 @@ class RedisClient(AbstractClient):
|
|
|
437
437
|
if isinstance(e, TencentCloudSDKException):
|
|
438
438
|
raise
|
|
439
439
|
else:
|
|
440
|
-
raise TencentCloudSDKException(e.
|
|
440
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
441
441
|
|
|
442
442
|
|
|
443
443
|
def DescribeAutoBackupConfig(self, request):
|
|
@@ -460,7 +460,7 @@ class RedisClient(AbstractClient):
|
|
|
460
460
|
if isinstance(e, TencentCloudSDKException):
|
|
461
461
|
raise
|
|
462
462
|
else:
|
|
463
|
-
raise TencentCloudSDKException(e.
|
|
463
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
def DescribeBackupDownloadRestriction(self, request):
|
|
@@ -483,7 +483,7 @@ class RedisClient(AbstractClient):
|
|
|
483
483
|
if isinstance(e, TencentCloudSDKException):
|
|
484
484
|
raise
|
|
485
485
|
else:
|
|
486
|
-
raise TencentCloudSDKException(e.
|
|
486
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
487
487
|
|
|
488
488
|
|
|
489
489
|
def DescribeBackupUrl(self, request):
|
|
@@ -506,7 +506,7 @@ class RedisClient(AbstractClient):
|
|
|
506
506
|
if isinstance(e, TencentCloudSDKException):
|
|
507
507
|
raise
|
|
508
508
|
else:
|
|
509
|
-
raise TencentCloudSDKException(e.
|
|
509
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
510
510
|
|
|
511
511
|
|
|
512
512
|
def DescribeBandwidthRange(self, request):
|
|
@@ -529,7 +529,7 @@ class RedisClient(AbstractClient):
|
|
|
529
529
|
if isinstance(e, TencentCloudSDKException):
|
|
530
530
|
raise
|
|
531
531
|
else:
|
|
532
|
-
raise TencentCloudSDKException(e.
|
|
532
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
533
533
|
|
|
534
534
|
|
|
535
535
|
def DescribeCommonDBInstances(self, request):
|
|
@@ -552,7 +552,7 @@ class RedisClient(AbstractClient):
|
|
|
552
552
|
if isinstance(e, TencentCloudSDKException):
|
|
553
553
|
raise
|
|
554
554
|
else:
|
|
555
|
-
raise TencentCloudSDKException(e.
|
|
555
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
556
556
|
|
|
557
557
|
|
|
558
558
|
def DescribeDBSecurityGroups(self, request):
|
|
@@ -575,7 +575,7 @@ class RedisClient(AbstractClient):
|
|
|
575
575
|
if isinstance(e, TencentCloudSDKException):
|
|
576
576
|
raise
|
|
577
577
|
else:
|
|
578
|
-
raise TencentCloudSDKException(e.
|
|
578
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
579
579
|
|
|
580
580
|
|
|
581
581
|
def DescribeInstanceAccount(self, request):
|
|
@@ -598,7 +598,7 @@ class RedisClient(AbstractClient):
|
|
|
598
598
|
if isinstance(e, TencentCloudSDKException):
|
|
599
599
|
raise
|
|
600
600
|
else:
|
|
601
|
-
raise TencentCloudSDKException(e.
|
|
601
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
def DescribeInstanceBackups(self, request):
|
|
@@ -621,7 +621,7 @@ class RedisClient(AbstractClient):
|
|
|
621
621
|
if isinstance(e, TencentCloudSDKException):
|
|
622
622
|
raise
|
|
623
623
|
else:
|
|
624
|
-
raise TencentCloudSDKException(e.
|
|
624
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
625
625
|
|
|
626
626
|
|
|
627
627
|
def DescribeInstanceDTSInfo(self, request):
|
|
@@ -644,7 +644,7 @@ class RedisClient(AbstractClient):
|
|
|
644
644
|
if isinstance(e, TencentCloudSDKException):
|
|
645
645
|
raise
|
|
646
646
|
else:
|
|
647
|
-
raise TencentCloudSDKException(e.
|
|
647
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
648
648
|
|
|
649
649
|
|
|
650
650
|
def DescribeInstanceDealDetail(self, request):
|
|
@@ -667,7 +667,7 @@ class RedisClient(AbstractClient):
|
|
|
667
667
|
if isinstance(e, TencentCloudSDKException):
|
|
668
668
|
raise
|
|
669
669
|
else:
|
|
670
|
-
raise TencentCloudSDKException(e.
|
|
670
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
671
671
|
|
|
672
672
|
|
|
673
673
|
def DescribeInstanceMonitorBigKey(self, request):
|
|
@@ -690,7 +690,7 @@ class RedisClient(AbstractClient):
|
|
|
690
690
|
if isinstance(e, TencentCloudSDKException):
|
|
691
691
|
raise
|
|
692
692
|
else:
|
|
693
|
-
raise TencentCloudSDKException(e.
|
|
693
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
694
694
|
|
|
695
695
|
|
|
696
696
|
def DescribeInstanceMonitorBigKeySizeDist(self, request):
|
|
@@ -713,7 +713,7 @@ class RedisClient(AbstractClient):
|
|
|
713
713
|
if isinstance(e, TencentCloudSDKException):
|
|
714
714
|
raise
|
|
715
715
|
else:
|
|
716
|
-
raise TencentCloudSDKException(e.
|
|
716
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
717
717
|
|
|
718
718
|
|
|
719
719
|
def DescribeInstanceMonitorBigKeyTypeDist(self, request):
|
|
@@ -736,7 +736,7 @@ class RedisClient(AbstractClient):
|
|
|
736
736
|
if isinstance(e, TencentCloudSDKException):
|
|
737
737
|
raise
|
|
738
738
|
else:
|
|
739
|
-
raise TencentCloudSDKException(e.
|
|
739
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
740
740
|
|
|
741
741
|
|
|
742
742
|
def DescribeInstanceMonitorHotKey(self, request):
|
|
@@ -759,11 +759,11 @@ class RedisClient(AbstractClient):
|
|
|
759
759
|
if isinstance(e, TencentCloudSDKException):
|
|
760
760
|
raise
|
|
761
761
|
else:
|
|
762
|
-
raise TencentCloudSDKException(e.
|
|
762
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
763
763
|
|
|
764
764
|
|
|
765
765
|
def DescribeInstanceMonitorSIP(self, request):
|
|
766
|
-
"""
|
|
766
|
+
"""该接口已下线,请使用数据库智能管家 DBbrain 接口 [DescribeProxyProcessStatistics] (https://cloud.tencent.com/document/product/1130/84544) 获取实例访问来源。
|
|
767
767
|
|
|
768
768
|
:param request: Request instance for DescribeInstanceMonitorSIP.
|
|
769
769
|
:type request: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceMonitorSIPRequest`
|
|
@@ -782,7 +782,7 @@ class RedisClient(AbstractClient):
|
|
|
782
782
|
if isinstance(e, TencentCloudSDKException):
|
|
783
783
|
raise
|
|
784
784
|
else:
|
|
785
|
-
raise TencentCloudSDKException(e.
|
|
785
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
786
786
|
|
|
787
787
|
|
|
788
788
|
def DescribeInstanceMonitorTookDist(self, request):
|
|
@@ -805,7 +805,7 @@ class RedisClient(AbstractClient):
|
|
|
805
805
|
if isinstance(e, TencentCloudSDKException):
|
|
806
806
|
raise
|
|
807
807
|
else:
|
|
808
|
-
raise TencentCloudSDKException(e.
|
|
808
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
809
809
|
|
|
810
810
|
|
|
811
811
|
def DescribeInstanceMonitorTopNCmd(self, request):
|
|
@@ -828,7 +828,7 @@ class RedisClient(AbstractClient):
|
|
|
828
828
|
if isinstance(e, TencentCloudSDKException):
|
|
829
829
|
raise
|
|
830
830
|
else:
|
|
831
|
-
raise TencentCloudSDKException(e.
|
|
831
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
832
832
|
|
|
833
833
|
|
|
834
834
|
def DescribeInstanceMonitorTopNCmdTook(self, request):
|
|
@@ -851,7 +851,7 @@ class RedisClient(AbstractClient):
|
|
|
851
851
|
if isinstance(e, TencentCloudSDKException):
|
|
852
852
|
raise
|
|
853
853
|
else:
|
|
854
|
-
raise TencentCloudSDKException(e.
|
|
854
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
855
855
|
|
|
856
856
|
|
|
857
857
|
def DescribeInstanceNodeInfo(self, request):
|
|
@@ -874,7 +874,7 @@ class RedisClient(AbstractClient):
|
|
|
874
874
|
if isinstance(e, TencentCloudSDKException):
|
|
875
875
|
raise
|
|
876
876
|
else:
|
|
877
|
-
raise TencentCloudSDKException(e.
|
|
877
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
878
878
|
|
|
879
879
|
|
|
880
880
|
def DescribeInstanceParamRecords(self, request):
|
|
@@ -897,7 +897,7 @@ class RedisClient(AbstractClient):
|
|
|
897
897
|
if isinstance(e, TencentCloudSDKException):
|
|
898
898
|
raise
|
|
899
899
|
else:
|
|
900
|
-
raise TencentCloudSDKException(e.
|
|
900
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
901
901
|
|
|
902
902
|
|
|
903
903
|
def DescribeInstanceParams(self, request):
|
|
@@ -920,7 +920,7 @@ class RedisClient(AbstractClient):
|
|
|
920
920
|
if isinstance(e, TencentCloudSDKException):
|
|
921
921
|
raise
|
|
922
922
|
else:
|
|
923
|
-
raise TencentCloudSDKException(e.
|
|
923
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
924
924
|
|
|
925
925
|
|
|
926
926
|
def DescribeInstanceSecurityGroup(self, request):
|
|
@@ -943,7 +943,7 @@ class RedisClient(AbstractClient):
|
|
|
943
943
|
if isinstance(e, TencentCloudSDKException):
|
|
944
944
|
raise
|
|
945
945
|
else:
|
|
946
|
-
raise TencentCloudSDKException(e.
|
|
946
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
947
947
|
|
|
948
948
|
|
|
949
949
|
def DescribeInstanceShards(self, request):
|
|
@@ -966,7 +966,7 @@ class RedisClient(AbstractClient):
|
|
|
966
966
|
if isinstance(e, TencentCloudSDKException):
|
|
967
967
|
raise
|
|
968
968
|
else:
|
|
969
|
-
raise TencentCloudSDKException(e.
|
|
969
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
970
970
|
|
|
971
971
|
|
|
972
972
|
def DescribeInstanceZoneInfo(self, request):
|
|
@@ -989,7 +989,7 @@ class RedisClient(AbstractClient):
|
|
|
989
989
|
if isinstance(e, TencentCloudSDKException):
|
|
990
990
|
raise
|
|
991
991
|
else:
|
|
992
|
-
raise TencentCloudSDKException(e.
|
|
992
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
993
993
|
|
|
994
994
|
|
|
995
995
|
def DescribeInstances(self, request):
|
|
@@ -1012,7 +1012,7 @@ class RedisClient(AbstractClient):
|
|
|
1012
1012
|
if isinstance(e, TencentCloudSDKException):
|
|
1013
1013
|
raise
|
|
1014
1014
|
else:
|
|
1015
|
-
raise TencentCloudSDKException(e.
|
|
1015
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1016
1016
|
|
|
1017
1017
|
|
|
1018
1018
|
def DescribeMaintenanceWindow(self, request):
|
|
@@ -1035,7 +1035,7 @@ class RedisClient(AbstractClient):
|
|
|
1035
1035
|
if isinstance(e, TencentCloudSDKException):
|
|
1036
1036
|
raise
|
|
1037
1037
|
else:
|
|
1038
|
-
raise TencentCloudSDKException(e.
|
|
1038
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1039
1039
|
|
|
1040
1040
|
|
|
1041
1041
|
def DescribeParamTemplateInfo(self, request):
|
|
@@ -1058,7 +1058,7 @@ class RedisClient(AbstractClient):
|
|
|
1058
1058
|
if isinstance(e, TencentCloudSDKException):
|
|
1059
1059
|
raise
|
|
1060
1060
|
else:
|
|
1061
|
-
raise TencentCloudSDKException(e.
|
|
1061
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1062
1062
|
|
|
1063
1063
|
|
|
1064
1064
|
def DescribeParamTemplates(self, request):
|
|
@@ -1081,7 +1081,7 @@ class RedisClient(AbstractClient):
|
|
|
1081
1081
|
if isinstance(e, TencentCloudSDKException):
|
|
1082
1082
|
raise
|
|
1083
1083
|
else:
|
|
1084
|
-
raise TencentCloudSDKException(e.
|
|
1084
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1085
1085
|
|
|
1086
1086
|
|
|
1087
1087
|
def DescribeProductInfo(self, request):
|
|
@@ -1104,7 +1104,7 @@ class RedisClient(AbstractClient):
|
|
|
1104
1104
|
if isinstance(e, TencentCloudSDKException):
|
|
1105
1105
|
raise
|
|
1106
1106
|
else:
|
|
1107
|
-
raise TencentCloudSDKException(e.
|
|
1107
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1108
1108
|
|
|
1109
1109
|
|
|
1110
1110
|
def DescribeProjectSecurityGroup(self, request):
|
|
@@ -1127,7 +1127,7 @@ class RedisClient(AbstractClient):
|
|
|
1127
1127
|
if isinstance(e, TencentCloudSDKException):
|
|
1128
1128
|
raise
|
|
1129
1129
|
else:
|
|
1130
|
-
raise TencentCloudSDKException(e.
|
|
1130
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1131
1131
|
|
|
1132
1132
|
|
|
1133
1133
|
def DescribeProjectSecurityGroups(self, request):
|
|
@@ -1150,7 +1150,7 @@ class RedisClient(AbstractClient):
|
|
|
1150
1150
|
if isinstance(e, TencentCloudSDKException):
|
|
1151
1151
|
raise
|
|
1152
1152
|
else:
|
|
1153
|
-
raise TencentCloudSDKException(e.
|
|
1153
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1154
1154
|
|
|
1155
1155
|
|
|
1156
1156
|
def DescribeProxySlowLog(self, request):
|
|
@@ -1173,7 +1173,7 @@ class RedisClient(AbstractClient):
|
|
|
1173
1173
|
if isinstance(e, TencentCloudSDKException):
|
|
1174
1174
|
raise
|
|
1175
1175
|
else:
|
|
1176
|
-
raise TencentCloudSDKException(e.
|
|
1176
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1177
1177
|
|
|
1178
1178
|
|
|
1179
1179
|
def DescribeReplicationGroup(self, request):
|
|
@@ -1196,7 +1196,7 @@ class RedisClient(AbstractClient):
|
|
|
1196
1196
|
if isinstance(e, TencentCloudSDKException):
|
|
1197
1197
|
raise
|
|
1198
1198
|
else:
|
|
1199
|
-
raise TencentCloudSDKException(e.
|
|
1199
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1200
1200
|
|
|
1201
1201
|
|
|
1202
1202
|
def DescribeSSLStatus(self, request):
|
|
@@ -1219,7 +1219,7 @@ class RedisClient(AbstractClient):
|
|
|
1219
1219
|
if isinstance(e, TencentCloudSDKException):
|
|
1220
1220
|
raise
|
|
1221
1221
|
else:
|
|
1222
|
-
raise TencentCloudSDKException(e.
|
|
1222
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1223
1223
|
|
|
1224
1224
|
|
|
1225
1225
|
def DescribeSlowLog(self, request):
|
|
@@ -1242,7 +1242,7 @@ class RedisClient(AbstractClient):
|
|
|
1242
1242
|
if isinstance(e, TencentCloudSDKException):
|
|
1243
1243
|
raise
|
|
1244
1244
|
else:
|
|
1245
|
-
raise TencentCloudSDKException(e.
|
|
1245
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1246
1246
|
|
|
1247
1247
|
|
|
1248
1248
|
def DescribeTaskInfo(self, request):
|
|
@@ -1265,7 +1265,7 @@ class RedisClient(AbstractClient):
|
|
|
1265
1265
|
if isinstance(e, TencentCloudSDKException):
|
|
1266
1266
|
raise
|
|
1267
1267
|
else:
|
|
1268
|
-
raise TencentCloudSDKException(e.
|
|
1268
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1269
1269
|
|
|
1270
1270
|
|
|
1271
1271
|
def DescribeTaskList(self, request):
|
|
@@ -1288,7 +1288,7 @@ class RedisClient(AbstractClient):
|
|
|
1288
1288
|
if isinstance(e, TencentCloudSDKException):
|
|
1289
1289
|
raise
|
|
1290
1290
|
else:
|
|
1291
|
-
raise TencentCloudSDKException(e.
|
|
1291
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1292
1292
|
|
|
1293
1293
|
|
|
1294
1294
|
def DescribeTendisSlowLog(self, request):
|
|
@@ -1311,7 +1311,7 @@ class RedisClient(AbstractClient):
|
|
|
1311
1311
|
if isinstance(e, TencentCloudSDKException):
|
|
1312
1312
|
raise
|
|
1313
1313
|
else:
|
|
1314
|
-
raise TencentCloudSDKException(e.
|
|
1314
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1315
1315
|
|
|
1316
1316
|
|
|
1317
1317
|
def DestroyPostpaidInstance(self, request):
|
|
@@ -1334,7 +1334,7 @@ class RedisClient(AbstractClient):
|
|
|
1334
1334
|
if isinstance(e, TencentCloudSDKException):
|
|
1335
1335
|
raise
|
|
1336
1336
|
else:
|
|
1337
|
-
raise TencentCloudSDKException(e.
|
|
1337
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1338
1338
|
|
|
1339
1339
|
|
|
1340
1340
|
def DestroyPrepaidInstance(self, request):
|
|
@@ -1357,7 +1357,7 @@ class RedisClient(AbstractClient):
|
|
|
1357
1357
|
if isinstance(e, TencentCloudSDKException):
|
|
1358
1358
|
raise
|
|
1359
1359
|
else:
|
|
1360
|
-
raise TencentCloudSDKException(e.
|
|
1360
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1361
1361
|
|
|
1362
1362
|
|
|
1363
1363
|
def DisableReplicaReadonly(self, request):
|
|
@@ -1380,7 +1380,7 @@ class RedisClient(AbstractClient):
|
|
|
1380
1380
|
if isinstance(e, TencentCloudSDKException):
|
|
1381
1381
|
raise
|
|
1382
1382
|
else:
|
|
1383
|
-
raise TencentCloudSDKException(e.
|
|
1383
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1384
1384
|
|
|
1385
1385
|
|
|
1386
1386
|
def DisassociateSecurityGroups(self, request):
|
|
@@ -1403,7 +1403,7 @@ class RedisClient(AbstractClient):
|
|
|
1403
1403
|
if isinstance(e, TencentCloudSDKException):
|
|
1404
1404
|
raise
|
|
1405
1405
|
else:
|
|
1406
|
-
raise TencentCloudSDKException(e.
|
|
1406
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1407
1407
|
|
|
1408
1408
|
|
|
1409
1409
|
def EnableReplicaReadonly(self, request):
|
|
@@ -1426,7 +1426,7 @@ class RedisClient(AbstractClient):
|
|
|
1426
1426
|
if isinstance(e, TencentCloudSDKException):
|
|
1427
1427
|
raise
|
|
1428
1428
|
else:
|
|
1429
|
-
raise TencentCloudSDKException(e.
|
|
1429
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1430
1430
|
|
|
1431
1431
|
|
|
1432
1432
|
def InquiryPriceCreateInstance(self, request):
|
|
@@ -1449,7 +1449,7 @@ class RedisClient(AbstractClient):
|
|
|
1449
1449
|
if isinstance(e, TencentCloudSDKException):
|
|
1450
1450
|
raise
|
|
1451
1451
|
else:
|
|
1452
|
-
raise TencentCloudSDKException(e.
|
|
1452
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1453
1453
|
|
|
1454
1454
|
|
|
1455
1455
|
def InquiryPriceRenewInstance(self, request):
|
|
@@ -1472,7 +1472,7 @@ class RedisClient(AbstractClient):
|
|
|
1472
1472
|
if isinstance(e, TencentCloudSDKException):
|
|
1473
1473
|
raise
|
|
1474
1474
|
else:
|
|
1475
|
-
raise TencentCloudSDKException(e.
|
|
1475
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1476
1476
|
|
|
1477
1477
|
|
|
1478
1478
|
def InquiryPriceUpgradeInstance(self, request):
|
|
@@ -1495,7 +1495,7 @@ class RedisClient(AbstractClient):
|
|
|
1495
1495
|
if isinstance(e, TencentCloudSDKException):
|
|
1496
1496
|
raise
|
|
1497
1497
|
else:
|
|
1498
|
-
raise TencentCloudSDKException(e.
|
|
1498
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1499
1499
|
|
|
1500
1500
|
|
|
1501
1501
|
def KillMasterGroup(self, request):
|
|
@@ -1518,7 +1518,7 @@ class RedisClient(AbstractClient):
|
|
|
1518
1518
|
if isinstance(e, TencentCloudSDKException):
|
|
1519
1519
|
raise
|
|
1520
1520
|
else:
|
|
1521
|
-
raise TencentCloudSDKException(e.
|
|
1521
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1522
1522
|
|
|
1523
1523
|
|
|
1524
1524
|
def ManualBackupInstance(self, request):
|
|
@@ -1541,7 +1541,7 @@ class RedisClient(AbstractClient):
|
|
|
1541
1541
|
if isinstance(e, TencentCloudSDKException):
|
|
1542
1542
|
raise
|
|
1543
1543
|
else:
|
|
1544
|
-
raise TencentCloudSDKException(e.
|
|
1544
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1545
1545
|
|
|
1546
1546
|
|
|
1547
1547
|
def ModfiyInstancePassword(self, request):
|
|
@@ -1564,7 +1564,7 @@ class RedisClient(AbstractClient):
|
|
|
1564
1564
|
if isinstance(e, TencentCloudSDKException):
|
|
1565
1565
|
raise
|
|
1566
1566
|
else:
|
|
1567
|
-
raise TencentCloudSDKException(e.
|
|
1567
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1568
1568
|
|
|
1569
1569
|
|
|
1570
1570
|
def ModifyAutoBackupConfig(self, request):
|
|
@@ -1587,7 +1587,7 @@ class RedisClient(AbstractClient):
|
|
|
1587
1587
|
if isinstance(e, TencentCloudSDKException):
|
|
1588
1588
|
raise
|
|
1589
1589
|
else:
|
|
1590
|
-
raise TencentCloudSDKException(e.
|
|
1590
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1591
1591
|
|
|
1592
1592
|
|
|
1593
1593
|
def ModifyBackupDownloadRestriction(self, request):
|
|
@@ -1610,7 +1610,7 @@ class RedisClient(AbstractClient):
|
|
|
1610
1610
|
if isinstance(e, TencentCloudSDKException):
|
|
1611
1611
|
raise
|
|
1612
1612
|
else:
|
|
1613
|
-
raise TencentCloudSDKException(e.
|
|
1613
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1614
1614
|
|
|
1615
1615
|
|
|
1616
1616
|
def ModifyConnectionConfig(self, request):
|
|
@@ -1633,7 +1633,7 @@ class RedisClient(AbstractClient):
|
|
|
1633
1633
|
if isinstance(e, TencentCloudSDKException):
|
|
1634
1634
|
raise
|
|
1635
1635
|
else:
|
|
1636
|
-
raise TencentCloudSDKException(e.
|
|
1636
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1637
1637
|
|
|
1638
1638
|
|
|
1639
1639
|
def ModifyDBInstanceSecurityGroups(self, request):
|
|
@@ -1656,7 +1656,7 @@ class RedisClient(AbstractClient):
|
|
|
1656
1656
|
if isinstance(e, TencentCloudSDKException):
|
|
1657
1657
|
raise
|
|
1658
1658
|
else:
|
|
1659
|
-
raise TencentCloudSDKException(e.
|
|
1659
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1660
1660
|
|
|
1661
1661
|
|
|
1662
1662
|
def ModifyInstance(self, request):
|
|
@@ -1679,7 +1679,7 @@ class RedisClient(AbstractClient):
|
|
|
1679
1679
|
if isinstance(e, TencentCloudSDKException):
|
|
1680
1680
|
raise
|
|
1681
1681
|
else:
|
|
1682
|
-
raise TencentCloudSDKException(e.
|
|
1682
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1683
1683
|
|
|
1684
1684
|
|
|
1685
1685
|
def ModifyInstanceAccount(self, request):
|
|
@@ -1702,7 +1702,7 @@ class RedisClient(AbstractClient):
|
|
|
1702
1702
|
if isinstance(e, TencentCloudSDKException):
|
|
1703
1703
|
raise
|
|
1704
1704
|
else:
|
|
1705
|
-
raise TencentCloudSDKException(e.
|
|
1705
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1706
1706
|
|
|
1707
1707
|
|
|
1708
1708
|
def ModifyInstanceParams(self, request):
|
|
@@ -1725,7 +1725,7 @@ class RedisClient(AbstractClient):
|
|
|
1725
1725
|
if isinstance(e, TencentCloudSDKException):
|
|
1726
1726
|
raise
|
|
1727
1727
|
else:
|
|
1728
|
-
raise TencentCloudSDKException(e.
|
|
1728
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1729
1729
|
|
|
1730
1730
|
|
|
1731
1731
|
def ModifyInstanceReadOnly(self, request):
|
|
@@ -1748,7 +1748,7 @@ class RedisClient(AbstractClient):
|
|
|
1748
1748
|
if isinstance(e, TencentCloudSDKException):
|
|
1749
1749
|
raise
|
|
1750
1750
|
else:
|
|
1751
|
-
raise TencentCloudSDKException(e.
|
|
1751
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1752
1752
|
|
|
1753
1753
|
|
|
1754
1754
|
def ModifyMaintenanceWindow(self, request):
|
|
@@ -1771,7 +1771,7 @@ class RedisClient(AbstractClient):
|
|
|
1771
1771
|
if isinstance(e, TencentCloudSDKException):
|
|
1772
1772
|
raise
|
|
1773
1773
|
else:
|
|
1774
|
-
raise TencentCloudSDKException(e.
|
|
1774
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1775
1775
|
|
|
1776
1776
|
|
|
1777
1777
|
def ModifyNetworkConfig(self, request):
|
|
@@ -1794,7 +1794,7 @@ class RedisClient(AbstractClient):
|
|
|
1794
1794
|
if isinstance(e, TencentCloudSDKException):
|
|
1795
1795
|
raise
|
|
1796
1796
|
else:
|
|
1797
|
-
raise TencentCloudSDKException(e.
|
|
1797
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1798
1798
|
|
|
1799
1799
|
|
|
1800
1800
|
def ModifyParamTemplate(self, request):
|
|
@@ -1817,7 +1817,7 @@ class RedisClient(AbstractClient):
|
|
|
1817
1817
|
if isinstance(e, TencentCloudSDKException):
|
|
1818
1818
|
raise
|
|
1819
1819
|
else:
|
|
1820
|
-
raise TencentCloudSDKException(e.
|
|
1820
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1821
1821
|
|
|
1822
1822
|
|
|
1823
1823
|
def OpenSSL(self, request):
|
|
@@ -1840,7 +1840,7 @@ class RedisClient(AbstractClient):
|
|
|
1840
1840
|
if isinstance(e, TencentCloudSDKException):
|
|
1841
1841
|
raise
|
|
1842
1842
|
else:
|
|
1843
|
-
raise TencentCloudSDKException(e.
|
|
1843
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1844
1844
|
|
|
1845
1845
|
|
|
1846
1846
|
def ReleaseWanAddress(self, request):
|
|
@@ -1863,7 +1863,7 @@ class RedisClient(AbstractClient):
|
|
|
1863
1863
|
if isinstance(e, TencentCloudSDKException):
|
|
1864
1864
|
raise
|
|
1865
1865
|
else:
|
|
1866
|
-
raise TencentCloudSDKException(e.
|
|
1866
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1867
1867
|
|
|
1868
1868
|
|
|
1869
1869
|
def RemoveReplicationInstance(self, request):
|
|
@@ -1886,7 +1886,7 @@ class RedisClient(AbstractClient):
|
|
|
1886
1886
|
if isinstance(e, TencentCloudSDKException):
|
|
1887
1887
|
raise
|
|
1888
1888
|
else:
|
|
1889
|
-
raise TencentCloudSDKException(e.
|
|
1889
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1890
1890
|
|
|
1891
1891
|
|
|
1892
1892
|
def RenewInstance(self, request):
|
|
@@ -1909,7 +1909,7 @@ class RedisClient(AbstractClient):
|
|
|
1909
1909
|
if isinstance(e, TencentCloudSDKException):
|
|
1910
1910
|
raise
|
|
1911
1911
|
else:
|
|
1912
|
-
raise TencentCloudSDKException(e.
|
|
1912
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1913
1913
|
|
|
1914
1914
|
|
|
1915
1915
|
def ResetPassword(self, request):
|
|
@@ -1932,7 +1932,7 @@ class RedisClient(AbstractClient):
|
|
|
1932
1932
|
if isinstance(e, TencentCloudSDKException):
|
|
1933
1933
|
raise
|
|
1934
1934
|
else:
|
|
1935
|
-
raise TencentCloudSDKException(e.
|
|
1935
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1936
1936
|
|
|
1937
1937
|
|
|
1938
1938
|
def RestoreInstance(self, request):
|
|
@@ -1955,7 +1955,7 @@ class RedisClient(AbstractClient):
|
|
|
1955
1955
|
if isinstance(e, TencentCloudSDKException):
|
|
1956
1956
|
raise
|
|
1957
1957
|
else:
|
|
1958
|
-
raise TencentCloudSDKException(e.
|
|
1958
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1959
1959
|
|
|
1960
1960
|
|
|
1961
1961
|
def StartupInstance(self, request):
|
|
@@ -1978,7 +1978,7 @@ class RedisClient(AbstractClient):
|
|
|
1978
1978
|
if isinstance(e, TencentCloudSDKException):
|
|
1979
1979
|
raise
|
|
1980
1980
|
else:
|
|
1981
|
-
raise TencentCloudSDKException(e.
|
|
1981
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1982
1982
|
|
|
1983
1983
|
|
|
1984
1984
|
def SwitchInstanceVip(self, request):
|
|
@@ -2001,7 +2001,7 @@ class RedisClient(AbstractClient):
|
|
|
2001
2001
|
if isinstance(e, TencentCloudSDKException):
|
|
2002
2002
|
raise
|
|
2003
2003
|
else:
|
|
2004
|
-
raise TencentCloudSDKException(e.
|
|
2004
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2005
2005
|
|
|
2006
2006
|
|
|
2007
2007
|
def SwitchProxy(self, request):
|
|
@@ -2024,7 +2024,7 @@ class RedisClient(AbstractClient):
|
|
|
2024
2024
|
if isinstance(e, TencentCloudSDKException):
|
|
2025
2025
|
raise
|
|
2026
2026
|
else:
|
|
2027
|
-
raise TencentCloudSDKException(e.
|
|
2027
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2028
2028
|
|
|
2029
2029
|
|
|
2030
2030
|
def UpgradeInstance(self, request):
|
|
@@ -2047,7 +2047,7 @@ class RedisClient(AbstractClient):
|
|
|
2047
2047
|
if isinstance(e, TencentCloudSDKException):
|
|
2048
2048
|
raise
|
|
2049
2049
|
else:
|
|
2050
|
-
raise TencentCloudSDKException(e.
|
|
2050
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2051
2051
|
|
|
2052
2052
|
|
|
2053
2053
|
def UpgradeInstanceVersion(self, request):
|
|
@@ -2070,7 +2070,7 @@ class RedisClient(AbstractClient):
|
|
|
2070
2070
|
if isinstance(e, TencentCloudSDKException):
|
|
2071
2071
|
raise
|
|
2072
2072
|
else:
|
|
2073
|
-
raise TencentCloudSDKException(e.
|
|
2073
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2074
2074
|
|
|
2075
2075
|
|
|
2076
2076
|
def UpgradeProxyVersion(self, request):
|
|
@@ -2093,7 +2093,7 @@ class RedisClient(AbstractClient):
|
|
|
2093
2093
|
if isinstance(e, TencentCloudSDKException):
|
|
2094
2094
|
raise
|
|
2095
2095
|
else:
|
|
2096
|
-
raise TencentCloudSDKException(e.
|
|
2096
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2097
2097
|
|
|
2098
2098
|
|
|
2099
2099
|
def UpgradeSmallVersion(self, request):
|
|
@@ -2116,7 +2116,7 @@ class RedisClient(AbstractClient):
|
|
|
2116
2116
|
if isinstance(e, TencentCloudSDKException):
|
|
2117
2117
|
raise
|
|
2118
2118
|
else:
|
|
2119
|
-
raise TencentCloudSDKException(e.
|
|
2119
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2120
2120
|
|
|
2121
2121
|
|
|
2122
2122
|
def UpgradeVersionToMultiAvailabilityZones(self, request):
|
|
@@ -2139,4 +2139,4 @@ class RedisClient(AbstractClient):
|
|
|
2139
2139
|
if isinstance(e, TencentCloudSDKException):
|
|
2140
2140
|
raise
|
|
2141
2141
|
else:
|
|
2142
|
-
raise TencentCloudSDKException(e.
|
|
2142
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
@@ -10,4 +10,5 @@ tencentcloud/redis/v20180412/redis_client.py
|
|
|
10
10
|
tencentcloud_sdk_python_redis.egg-info/PKG-INFO
|
|
11
11
|
tencentcloud_sdk_python_redis.egg-info/SOURCES.txt
|
|
12
12
|
tencentcloud_sdk_python_redis.egg-info/dependency_links.txt
|
|
13
|
+
tencentcloud_sdk_python_redis.egg-info/requires.txt
|
|
13
14
|
tencentcloud_sdk_python_redis.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.956
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|