tencentcloud-sdk-python 3.0.1352__py2.py3-none-any.whl → 3.0.1353__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/batch_client.py +0 -46
- tencentcloud/batch/v20170312/errorcodes.py +0 -9
- tencentcloud/batch/v20170312/models.py +21 -962
- tencentcloud/bi/v20220105/models.py +145 -0
- tencentcloud/cam/v20190116/errorcodes.py +3 -0
- tencentcloud/cam/v20190116/models.py +0 -82
- tencentcloud/cbs/v20170312/models.py +6 -14
- tencentcloud/cdn/v20180606/models.py +0 -46
- tencentcloud/chdfs/v20201112/models.py +2 -2
- tencentcloud/controlcenter/v20230110/models.py +0 -58
- tencentcloud/dbbrain/v20191016/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20191016/models.py +375 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +701 -26
- tencentcloud/dcdb/v20180411/models.py +175 -2
- tencentcloud/dnspod/v20210323/models.py +0 -70
- tencentcloud/facefusion/v20220927/models.py +4 -2
- tencentcloud/gs/v20191118/models.py +16 -4
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +49 -412
- tencentcloud/lkeap/v20240522/models.py +12 -6
- tencentcloud/mariadb/v20170312/models.py +151 -2
- tencentcloud/mps/v20190612/models.py +2 -2
- tencentcloud/mqtt/v20240516/models.py +8 -2
- tencentcloud/ocr/v20181119/errorcodes.py +0 -3
- tencentcloud/ocr/v20181119/models.py +0 -558
- tencentcloud/ocr/v20181119/ocr_client.py +0 -23
- tencentcloud/organization/v20210331/models.py +15 -0
- tencentcloud/sqlserver/v20180328/models.py +15 -0
- tencentcloud/tcb/v20180608/models.py +20 -0
- tencentcloud/teo/v20220106/teo_client.py +6 -2
- tencentcloud/tione/v20211111/models.py +35 -3
- tencentcloud/tse/v20201207/models.py +0 -34
- tencentcloud/vod/v20240718/models.py +0 -2
- tencentcloud/vpc/v20170312/models.py +300 -0
- tencentcloud/vpc/v20170312/vpc_client.py +26 -0
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/RECORD +43 -43
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/top_level.txt +0 -0
@@ -394,6 +394,29 @@ class DbbrainClient(AbstractClient):
|
|
394
394
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
395
395
|
|
396
396
|
|
397
|
+
def DescribeMySqlProcessList(self, request):
|
398
|
+
"""查询关系型数据库的实时线程列表。
|
399
|
+
|
400
|
+
:param request: Request instance for DescribeMySqlProcessList.
|
401
|
+
:type request: :class:`tencentcloud.dbbrain.v20191016.models.DescribeMySqlProcessListRequest`
|
402
|
+
:rtype: :class:`tencentcloud.dbbrain.v20191016.models.DescribeMySqlProcessListResponse`
|
403
|
+
|
404
|
+
"""
|
405
|
+
try:
|
406
|
+
params = request._serialize()
|
407
|
+
headers = request.headers
|
408
|
+
body = self.call("DescribeMySqlProcessList", params, headers=headers)
|
409
|
+
response = json.loads(body)
|
410
|
+
model = models.DescribeMySqlProcessListResponse()
|
411
|
+
model._deserialize(response["Response"])
|
412
|
+
return model
|
413
|
+
except Exception as e:
|
414
|
+
if isinstance(e, TencentCloudSDKException):
|
415
|
+
raise
|
416
|
+
else:
|
417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
418
|
+
|
419
|
+
|
397
420
|
def DescribeSecurityAuditLogDownloadUrls(self, request):
|
398
421
|
"""查询安全审计日志导出文件下载链接。目前日志文件下载仅提供腾讯云内网地址,请通过广州地域的腾讯云服务器进行下载。
|
399
422
|
|
@@ -2449,6 +2449,240 @@ class DescribeMailProfileResponse(AbstractModel):
|
|
2449
2449
|
self._RequestId = params.get("RequestId")
|
2450
2450
|
|
2451
2451
|
|
2452
|
+
class DescribeMySqlProcessListRequest(AbstractModel):
|
2453
|
+
"""DescribeMySqlProcessList请求参数结构体
|
2454
|
+
|
2455
|
+
"""
|
2456
|
+
|
2457
|
+
def __init__(self):
|
2458
|
+
r"""
|
2459
|
+
:param _InstanceId: 实例ID。
|
2460
|
+
:type InstanceId: str
|
2461
|
+
:param _ID: 线程的ID,用于筛选线程列表。
|
2462
|
+
:type ID: int
|
2463
|
+
:param _User: 线程的操作账号名,用于筛选线程列表。
|
2464
|
+
:type User: str
|
2465
|
+
:param _Host: 线程的操作主机地址,用于筛选线程列表。
|
2466
|
+
:type Host: str
|
2467
|
+
:param _DB: 线程的操作数据库,用于筛选线程列表。
|
2468
|
+
:type DB: str
|
2469
|
+
:param _State: 线程的操作状态,用于筛选线程列表。
|
2470
|
+
:type State: str
|
2471
|
+
:param _Command: 线程的执行类型,用于筛选线程列表。
|
2472
|
+
:type Command: str
|
2473
|
+
:param _Time: 线程的操作时长最小值,单位秒,用于筛选操作时长大于该值的线程列表。
|
2474
|
+
:type Time: int
|
2475
|
+
:param _Info: 线程的操作语句,用于筛选线程列表。
|
2476
|
+
:type Info: str
|
2477
|
+
:param _Limit: 返回数量,默认20。
|
2478
|
+
:type Limit: int
|
2479
|
+
:param _Product: 服务产品类型,支持值:"mysql" - 云数据库 MySQL;"cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
|
2480
|
+
:type Product: str
|
2481
|
+
"""
|
2482
|
+
self._InstanceId = None
|
2483
|
+
self._ID = None
|
2484
|
+
self._User = None
|
2485
|
+
self._Host = None
|
2486
|
+
self._DB = None
|
2487
|
+
self._State = None
|
2488
|
+
self._Command = None
|
2489
|
+
self._Time = None
|
2490
|
+
self._Info = None
|
2491
|
+
self._Limit = None
|
2492
|
+
self._Product = None
|
2493
|
+
|
2494
|
+
@property
|
2495
|
+
def InstanceId(self):
|
2496
|
+
"""实例ID。
|
2497
|
+
:rtype: str
|
2498
|
+
"""
|
2499
|
+
return self._InstanceId
|
2500
|
+
|
2501
|
+
@InstanceId.setter
|
2502
|
+
def InstanceId(self, InstanceId):
|
2503
|
+
self._InstanceId = InstanceId
|
2504
|
+
|
2505
|
+
@property
|
2506
|
+
def ID(self):
|
2507
|
+
"""线程的ID,用于筛选线程列表。
|
2508
|
+
:rtype: int
|
2509
|
+
"""
|
2510
|
+
return self._ID
|
2511
|
+
|
2512
|
+
@ID.setter
|
2513
|
+
def ID(self, ID):
|
2514
|
+
self._ID = ID
|
2515
|
+
|
2516
|
+
@property
|
2517
|
+
def User(self):
|
2518
|
+
"""线程的操作账号名,用于筛选线程列表。
|
2519
|
+
:rtype: str
|
2520
|
+
"""
|
2521
|
+
return self._User
|
2522
|
+
|
2523
|
+
@User.setter
|
2524
|
+
def User(self, User):
|
2525
|
+
self._User = User
|
2526
|
+
|
2527
|
+
@property
|
2528
|
+
def Host(self):
|
2529
|
+
"""线程的操作主机地址,用于筛选线程列表。
|
2530
|
+
:rtype: str
|
2531
|
+
"""
|
2532
|
+
return self._Host
|
2533
|
+
|
2534
|
+
@Host.setter
|
2535
|
+
def Host(self, Host):
|
2536
|
+
self._Host = Host
|
2537
|
+
|
2538
|
+
@property
|
2539
|
+
def DB(self):
|
2540
|
+
"""线程的操作数据库,用于筛选线程列表。
|
2541
|
+
:rtype: str
|
2542
|
+
"""
|
2543
|
+
return self._DB
|
2544
|
+
|
2545
|
+
@DB.setter
|
2546
|
+
def DB(self, DB):
|
2547
|
+
self._DB = DB
|
2548
|
+
|
2549
|
+
@property
|
2550
|
+
def State(self):
|
2551
|
+
"""线程的操作状态,用于筛选线程列表。
|
2552
|
+
:rtype: str
|
2553
|
+
"""
|
2554
|
+
return self._State
|
2555
|
+
|
2556
|
+
@State.setter
|
2557
|
+
def State(self, State):
|
2558
|
+
self._State = State
|
2559
|
+
|
2560
|
+
@property
|
2561
|
+
def Command(self):
|
2562
|
+
"""线程的执行类型,用于筛选线程列表。
|
2563
|
+
:rtype: str
|
2564
|
+
"""
|
2565
|
+
return self._Command
|
2566
|
+
|
2567
|
+
@Command.setter
|
2568
|
+
def Command(self, Command):
|
2569
|
+
self._Command = Command
|
2570
|
+
|
2571
|
+
@property
|
2572
|
+
def Time(self):
|
2573
|
+
"""线程的操作时长最小值,单位秒,用于筛选操作时长大于该值的线程列表。
|
2574
|
+
:rtype: int
|
2575
|
+
"""
|
2576
|
+
return self._Time
|
2577
|
+
|
2578
|
+
@Time.setter
|
2579
|
+
def Time(self, Time):
|
2580
|
+
self._Time = Time
|
2581
|
+
|
2582
|
+
@property
|
2583
|
+
def Info(self):
|
2584
|
+
"""线程的操作语句,用于筛选线程列表。
|
2585
|
+
:rtype: str
|
2586
|
+
"""
|
2587
|
+
return self._Info
|
2588
|
+
|
2589
|
+
@Info.setter
|
2590
|
+
def Info(self, Info):
|
2591
|
+
self._Info = Info
|
2592
|
+
|
2593
|
+
@property
|
2594
|
+
def Limit(self):
|
2595
|
+
"""返回数量,默认20。
|
2596
|
+
:rtype: int
|
2597
|
+
"""
|
2598
|
+
return self._Limit
|
2599
|
+
|
2600
|
+
@Limit.setter
|
2601
|
+
def Limit(self, Limit):
|
2602
|
+
self._Limit = Limit
|
2603
|
+
|
2604
|
+
@property
|
2605
|
+
def Product(self):
|
2606
|
+
"""服务产品类型,支持值:"mysql" - 云数据库 MySQL;"cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
|
2607
|
+
:rtype: str
|
2608
|
+
"""
|
2609
|
+
return self._Product
|
2610
|
+
|
2611
|
+
@Product.setter
|
2612
|
+
def Product(self, Product):
|
2613
|
+
self._Product = Product
|
2614
|
+
|
2615
|
+
|
2616
|
+
def _deserialize(self, params):
|
2617
|
+
self._InstanceId = params.get("InstanceId")
|
2618
|
+
self._ID = params.get("ID")
|
2619
|
+
self._User = params.get("User")
|
2620
|
+
self._Host = params.get("Host")
|
2621
|
+
self._DB = params.get("DB")
|
2622
|
+
self._State = params.get("State")
|
2623
|
+
self._Command = params.get("Command")
|
2624
|
+
self._Time = params.get("Time")
|
2625
|
+
self._Info = params.get("Info")
|
2626
|
+
self._Limit = params.get("Limit")
|
2627
|
+
self._Product = params.get("Product")
|
2628
|
+
memeber_set = set(params.keys())
|
2629
|
+
for name, value in vars(self).items():
|
2630
|
+
property_name = name[1:]
|
2631
|
+
if property_name in memeber_set:
|
2632
|
+
memeber_set.remove(property_name)
|
2633
|
+
if len(memeber_set) > 0:
|
2634
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2635
|
+
|
2636
|
+
|
2637
|
+
|
2638
|
+
class DescribeMySqlProcessListResponse(AbstractModel):
|
2639
|
+
"""DescribeMySqlProcessList返回参数结构体
|
2640
|
+
|
2641
|
+
"""
|
2642
|
+
|
2643
|
+
def __init__(self):
|
2644
|
+
r"""
|
2645
|
+
:param _ProcessList: 实时线程列表。
|
2646
|
+
:type ProcessList: list of MySqlProcess
|
2647
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2648
|
+
:type RequestId: str
|
2649
|
+
"""
|
2650
|
+
self._ProcessList = None
|
2651
|
+
self._RequestId = None
|
2652
|
+
|
2653
|
+
@property
|
2654
|
+
def ProcessList(self):
|
2655
|
+
"""实时线程列表。
|
2656
|
+
:rtype: list of MySqlProcess
|
2657
|
+
"""
|
2658
|
+
return self._ProcessList
|
2659
|
+
|
2660
|
+
@ProcessList.setter
|
2661
|
+
def ProcessList(self, ProcessList):
|
2662
|
+
self._ProcessList = ProcessList
|
2663
|
+
|
2664
|
+
@property
|
2665
|
+
def RequestId(self):
|
2666
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2667
|
+
:rtype: str
|
2668
|
+
"""
|
2669
|
+
return self._RequestId
|
2670
|
+
|
2671
|
+
@RequestId.setter
|
2672
|
+
def RequestId(self, RequestId):
|
2673
|
+
self._RequestId = RequestId
|
2674
|
+
|
2675
|
+
|
2676
|
+
def _deserialize(self, params):
|
2677
|
+
if params.get("ProcessList") is not None:
|
2678
|
+
self._ProcessList = []
|
2679
|
+
for item in params.get("ProcessList"):
|
2680
|
+
obj = MySqlProcess()
|
2681
|
+
obj._deserialize(item)
|
2682
|
+
self._ProcessList.append(obj)
|
2683
|
+
self._RequestId = params.get("RequestId")
|
2684
|
+
|
2685
|
+
|
2452
2686
|
class DescribeSecurityAuditLogDownloadUrlsRequest(AbstractModel):
|
2453
2687
|
"""DescribeSecurityAuditLogDownloadUrls请求参数结构体
|
2454
2688
|
|
@@ -6165,6 +6399,147 @@ class MonitorMetricSeriesData(AbstractModel):
|
|
6165
6399
|
|
6166
6400
|
|
6167
6401
|
|
6402
|
+
class MySqlProcess(AbstractModel):
|
6403
|
+
"""关系型数据库线程
|
6404
|
+
|
6405
|
+
"""
|
6406
|
+
|
6407
|
+
def __init__(self):
|
6408
|
+
r"""
|
6409
|
+
:param _ID: 线程ID。
|
6410
|
+
:type ID: str
|
6411
|
+
:param _User: 线程的操作账号名。
|
6412
|
+
:type User: str
|
6413
|
+
:param _Host: 线程的操作主机地址。
|
6414
|
+
:type Host: str
|
6415
|
+
:param _DB: 线程的操作数据库。
|
6416
|
+
:type DB: str
|
6417
|
+
:param _State: 线程的操作状态。
|
6418
|
+
:type State: str
|
6419
|
+
:param _Command: 线程的执行类型。
|
6420
|
+
:type Command: str
|
6421
|
+
:param _Time: 线程的操作时长,单位秒。
|
6422
|
+
:type Time: str
|
6423
|
+
:param _Info: 线程的操作语句。
|
6424
|
+
:type Info: str
|
6425
|
+
"""
|
6426
|
+
self._ID = None
|
6427
|
+
self._User = None
|
6428
|
+
self._Host = None
|
6429
|
+
self._DB = None
|
6430
|
+
self._State = None
|
6431
|
+
self._Command = None
|
6432
|
+
self._Time = None
|
6433
|
+
self._Info = None
|
6434
|
+
|
6435
|
+
@property
|
6436
|
+
def ID(self):
|
6437
|
+
"""线程ID。
|
6438
|
+
:rtype: str
|
6439
|
+
"""
|
6440
|
+
return self._ID
|
6441
|
+
|
6442
|
+
@ID.setter
|
6443
|
+
def ID(self, ID):
|
6444
|
+
self._ID = ID
|
6445
|
+
|
6446
|
+
@property
|
6447
|
+
def User(self):
|
6448
|
+
"""线程的操作账号名。
|
6449
|
+
:rtype: str
|
6450
|
+
"""
|
6451
|
+
return self._User
|
6452
|
+
|
6453
|
+
@User.setter
|
6454
|
+
def User(self, User):
|
6455
|
+
self._User = User
|
6456
|
+
|
6457
|
+
@property
|
6458
|
+
def Host(self):
|
6459
|
+
"""线程的操作主机地址。
|
6460
|
+
:rtype: str
|
6461
|
+
"""
|
6462
|
+
return self._Host
|
6463
|
+
|
6464
|
+
@Host.setter
|
6465
|
+
def Host(self, Host):
|
6466
|
+
self._Host = Host
|
6467
|
+
|
6468
|
+
@property
|
6469
|
+
def DB(self):
|
6470
|
+
"""线程的操作数据库。
|
6471
|
+
:rtype: str
|
6472
|
+
"""
|
6473
|
+
return self._DB
|
6474
|
+
|
6475
|
+
@DB.setter
|
6476
|
+
def DB(self, DB):
|
6477
|
+
self._DB = DB
|
6478
|
+
|
6479
|
+
@property
|
6480
|
+
def State(self):
|
6481
|
+
"""线程的操作状态。
|
6482
|
+
:rtype: str
|
6483
|
+
"""
|
6484
|
+
return self._State
|
6485
|
+
|
6486
|
+
@State.setter
|
6487
|
+
def State(self, State):
|
6488
|
+
self._State = State
|
6489
|
+
|
6490
|
+
@property
|
6491
|
+
def Command(self):
|
6492
|
+
"""线程的执行类型。
|
6493
|
+
:rtype: str
|
6494
|
+
"""
|
6495
|
+
return self._Command
|
6496
|
+
|
6497
|
+
@Command.setter
|
6498
|
+
def Command(self, Command):
|
6499
|
+
self._Command = Command
|
6500
|
+
|
6501
|
+
@property
|
6502
|
+
def Time(self):
|
6503
|
+
"""线程的操作时长,单位秒。
|
6504
|
+
:rtype: str
|
6505
|
+
"""
|
6506
|
+
return self._Time
|
6507
|
+
|
6508
|
+
@Time.setter
|
6509
|
+
def Time(self, Time):
|
6510
|
+
self._Time = Time
|
6511
|
+
|
6512
|
+
@property
|
6513
|
+
def Info(self):
|
6514
|
+
"""线程的操作语句。
|
6515
|
+
:rtype: str
|
6516
|
+
"""
|
6517
|
+
return self._Info
|
6518
|
+
|
6519
|
+
@Info.setter
|
6520
|
+
def Info(self, Info):
|
6521
|
+
self._Info = Info
|
6522
|
+
|
6523
|
+
|
6524
|
+
def _deserialize(self, params):
|
6525
|
+
self._ID = params.get("ID")
|
6526
|
+
self._User = params.get("User")
|
6527
|
+
self._Host = params.get("Host")
|
6528
|
+
self._DB = params.get("DB")
|
6529
|
+
self._State = params.get("State")
|
6530
|
+
self._Command = params.get("Command")
|
6531
|
+
self._Time = params.get("Time")
|
6532
|
+
self._Info = params.get("Info")
|
6533
|
+
memeber_set = set(params.keys())
|
6534
|
+
for name, value in vars(self).items():
|
6535
|
+
property_name = name[1:]
|
6536
|
+
if property_name in memeber_set:
|
6537
|
+
memeber_set.remove(property_name)
|
6538
|
+
if len(memeber_set) > 0:
|
6539
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6540
|
+
|
6541
|
+
|
6542
|
+
|
6168
6543
|
class ProfileInfo(AbstractModel):
|
6169
6544
|
"""用户配置的信息
|
6170
6545
|
|
@@ -1130,6 +1130,29 @@ class DbbrainClient(AbstractClient):
|
|
1130
1130
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1131
1131
|
|
1132
1132
|
|
1133
|
+
def DescribeRedisSlowLogTopSqls(self, request):
|
1134
|
+
"""统计排序指定时间段内的top慢sql。
|
1135
|
+
|
1136
|
+
:param request: Request instance for DescribeRedisSlowLogTopSqls.
|
1137
|
+
:type request: :class:`tencentcloud.dbbrain.v20210527.models.DescribeRedisSlowLogTopSqlsRequest`
|
1138
|
+
:rtype: :class:`tencentcloud.dbbrain.v20210527.models.DescribeRedisSlowLogTopSqlsResponse`
|
1139
|
+
|
1140
|
+
"""
|
1141
|
+
try:
|
1142
|
+
params = request._serialize()
|
1143
|
+
headers = request.headers
|
1144
|
+
body = self.call("DescribeRedisSlowLogTopSqls", params, headers=headers)
|
1145
|
+
response = json.loads(body)
|
1146
|
+
model = models.DescribeRedisSlowLogTopSqlsResponse()
|
1147
|
+
model._deserialize(response["Response"])
|
1148
|
+
return model
|
1149
|
+
except Exception as e:
|
1150
|
+
if isinstance(e, TencentCloudSDKException):
|
1151
|
+
raise
|
1152
|
+
else:
|
1153
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1154
|
+
|
1155
|
+
|
1133
1156
|
def DescribeRedisTopBigKeys(self, request):
|
1134
1157
|
"""查询redis实例大key列表。
|
1135
1158
|
|
@@ -1245,6 +1268,29 @@ class DbbrainClient(AbstractClient):
|
|
1245
1268
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1246
1269
|
|
1247
1270
|
|
1271
|
+
def DescribeSlowLogQueryTimeStats(self, request):
|
1272
|
+
"""统计排序指定时间段内的top慢sql。
|
1273
|
+
|
1274
|
+
:param request: Request instance for DescribeSlowLogQueryTimeStats.
|
1275
|
+
:type request: :class:`tencentcloud.dbbrain.v20210527.models.DescribeSlowLogQueryTimeStatsRequest`
|
1276
|
+
:rtype: :class:`tencentcloud.dbbrain.v20210527.models.DescribeSlowLogQueryTimeStatsResponse`
|
1277
|
+
|
1278
|
+
"""
|
1279
|
+
try:
|
1280
|
+
params = request._serialize()
|
1281
|
+
headers = request.headers
|
1282
|
+
body = self.call("DescribeSlowLogQueryTimeStats", params, headers=headers)
|
1283
|
+
response = json.loads(body)
|
1284
|
+
model = models.DescribeSlowLogQueryTimeStatsResponse()
|
1285
|
+
model._deserialize(response["Response"])
|
1286
|
+
return model
|
1287
|
+
except Exception as e:
|
1288
|
+
if isinstance(e, TencentCloudSDKException):
|
1289
|
+
raise
|
1290
|
+
else:
|
1291
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1292
|
+
|
1293
|
+
|
1248
1294
|
def DescribeSlowLogTimeSeriesStats(self, request):
|
1249
1295
|
"""获取慢日志统计柱状图。
|
1250
1296
|
|