tencentcloud-sdk-python-dbbrain 3.1.112__py2.py3-none-any.whl → 3.1.122__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.112'
17
+ __version__ = '3.1.122'
@@ -670,6 +670,29 @@ class DbbrainClient(AbstractClient):
670
670
  raise TencentCloudSDKException(type(e).__name__, str(e))
671
671
 
672
672
 
673
+ def DescribeDBAuditLogTopSqls(self, request):
674
+ r"""按照Sql模板+schema的聚合方式,统计排序指定时间段内的top慢sql。
675
+
676
+ :param request: Request instance for DescribeDBAuditLogTopSqls.
677
+ :type request: :class:`tencentcloud.dbbrain.v20210527.models.DescribeDBAuditLogTopSqlsRequest`
678
+ :rtype: :class:`tencentcloud.dbbrain.v20210527.models.DescribeDBAuditLogTopSqlsResponse`
679
+
680
+ """
681
+ try:
682
+ params = request._serialize()
683
+ headers = request.headers
684
+ body = self.call("DescribeDBAuditLogTopSqls", params, headers=headers)
685
+ response = json.loads(body)
686
+ model = models.DescribeDBAuditLogTopSqlsResponse()
687
+ model._deserialize(response["Response"])
688
+ return model
689
+ except Exception as e:
690
+ if isinstance(e, TencentCloudSDKException):
691
+ raise
692
+ else:
693
+ raise TencentCloudSDKException(type(e).__name__, str(e))
694
+
695
+
673
696
  def DescribeDBAutonomyAction(self, request):
674
697
  r"""自治中心-查询自治事件任务详情。
675
698
 
@@ -529,6 +529,24 @@ class DbbrainClient(AbstractClient):
529
529
 
530
530
  return await self.call_and_deserialize(**kwargs)
531
531
 
532
+ async def DescribeDBAuditLogTopSqls(
533
+ self,
534
+ request: models.DescribeDBAuditLogTopSqlsRequest,
535
+ opts: Dict = None,
536
+ ) -> models.DescribeDBAuditLogTopSqlsResponse:
537
+ """
538
+ 按照Sql模板+schema的聚合方式,统计排序指定时间段内的top慢sql。
539
+ """
540
+
541
+ kwargs = {}
542
+ kwargs["action"] = "DescribeDBAuditLogTopSqls"
543
+ kwargs["params"] = request._serialize()
544
+ kwargs["resp_cls"] = models.DescribeDBAuditLogTopSqlsResponse
545
+ kwargs["headers"] = request.headers
546
+ kwargs["opts"] = opts or {}
547
+
548
+ return await self.call_and_deserialize(**kwargs)
549
+
532
550
  async def DescribeDBAutonomyAction(
533
551
  self,
534
552
  request: models.DescribeDBAutonomyActionRequest,
@@ -5383,6 +5383,285 @@ class DescribeAuditLogFilesResponse(AbstractModel):
5383
5383
  self._RequestId = params.get("RequestId")
5384
5384
 
5385
5385
 
5386
+ class DescribeDBAuditLogTopSqlsRequest(AbstractModel):
5387
+ r"""DescribeDBAuditLogTopSqls请求参数结构体
5388
+
5389
+ """
5390
+
5391
+ def __init__(self):
5392
+ r"""
5393
+ :param _StartTime: <p>开始时间,如“2019-09-10 12:13:14”。</p>
5394
+ :type StartTime: str
5395
+ :param _EndTime: <p>截止时间,如“2019-09-11 10:13:14”,截止时间与开始时间的间隔小于7天。</p>
5396
+ :type EndTime: str
5397
+ :param _Product: <p>服务产品类型,支持值包括: &quot;mysql&quot; - 云数据库 MySQL, &quot;cynosdb&quot; - 云数据库 CynosDB for MySQL,默认为&quot;mysql&quot;。</p>
5398
+ :type Product: str
5399
+ :param _InstanceId: <p>实例 ID 。</p>
5400
+ :type InstanceId: str
5401
+ :param _OrderBy: <p>排序键,目前支持 QueryTime,ExecTimes,RowsSent,LockTime以及RowsExamined 等排序键,默认为QueryTime。</p>
5402
+ :type OrderBy: str
5403
+ :param _OrderByDirection: <p>排序方式,支持ASC(升序)以及DESC(降序),默认为DESC。</p>
5404
+ :type OrderByDirection: str
5405
+ :param _Limit: <p>返回数量,默认为20,最大值为100。</p>
5406
+ :type Limit: int
5407
+ :param _Offset: <p>偏移量,默认为0。</p>
5408
+ :type Offset: int
5409
+ :param _TableName: <p>表名</p>
5410
+ :type TableName: str
5411
+ :param _Hosts: <p>Hosts名</p>
5412
+ :type Hosts: list of str
5413
+ :param _SqlCodes: <p>sql codes</p>
5414
+ :type SqlCodes: list of str
5415
+ :param _SqlSample: <p>sql语句</p>
5416
+ :type SqlSample: str
5417
+ :param _Users: <p>用户名列表</p>
5418
+ :type Users: list of str
5419
+ """
5420
+ self._StartTime = None
5421
+ self._EndTime = None
5422
+ self._Product = None
5423
+ self._InstanceId = None
5424
+ self._OrderBy = None
5425
+ self._OrderByDirection = None
5426
+ self._Limit = None
5427
+ self._Offset = None
5428
+ self._TableName = None
5429
+ self._Hosts = None
5430
+ self._SqlCodes = None
5431
+ self._SqlSample = None
5432
+ self._Users = None
5433
+
5434
+ @property
5435
+ def StartTime(self):
5436
+ r"""<p>开始时间,如“2019-09-10 12:13:14”。</p>
5437
+ :rtype: str
5438
+ """
5439
+ return self._StartTime
5440
+
5441
+ @StartTime.setter
5442
+ def StartTime(self, StartTime):
5443
+ self._StartTime = StartTime
5444
+
5445
+ @property
5446
+ def EndTime(self):
5447
+ r"""<p>截止时间,如“2019-09-11 10:13:14”,截止时间与开始时间的间隔小于7天。</p>
5448
+ :rtype: str
5449
+ """
5450
+ return self._EndTime
5451
+
5452
+ @EndTime.setter
5453
+ def EndTime(self, EndTime):
5454
+ self._EndTime = EndTime
5455
+
5456
+ @property
5457
+ def Product(self):
5458
+ r"""<p>服务产品类型,支持值包括: &quot;mysql&quot; - 云数据库 MySQL, &quot;cynosdb&quot; - 云数据库 CynosDB for MySQL,默认为&quot;mysql&quot;。</p>
5459
+ :rtype: str
5460
+ """
5461
+ return self._Product
5462
+
5463
+ @Product.setter
5464
+ def Product(self, Product):
5465
+ self._Product = Product
5466
+
5467
+ @property
5468
+ def InstanceId(self):
5469
+ r"""<p>实例 ID 。</p>
5470
+ :rtype: str
5471
+ """
5472
+ return self._InstanceId
5473
+
5474
+ @InstanceId.setter
5475
+ def InstanceId(self, InstanceId):
5476
+ self._InstanceId = InstanceId
5477
+
5478
+ @property
5479
+ def OrderBy(self):
5480
+ r"""<p>排序键,目前支持 QueryTime,ExecTimes,RowsSent,LockTime以及RowsExamined 等排序键,默认为QueryTime。</p>
5481
+ :rtype: str
5482
+ """
5483
+ return self._OrderBy
5484
+
5485
+ @OrderBy.setter
5486
+ def OrderBy(self, OrderBy):
5487
+ self._OrderBy = OrderBy
5488
+
5489
+ @property
5490
+ def OrderByDirection(self):
5491
+ r"""<p>排序方式,支持ASC(升序)以及DESC(降序),默认为DESC。</p>
5492
+ :rtype: str
5493
+ """
5494
+ return self._OrderByDirection
5495
+
5496
+ @OrderByDirection.setter
5497
+ def OrderByDirection(self, OrderByDirection):
5498
+ self._OrderByDirection = OrderByDirection
5499
+
5500
+ @property
5501
+ def Limit(self):
5502
+ r"""<p>返回数量,默认为20,最大值为100。</p>
5503
+ :rtype: int
5504
+ """
5505
+ return self._Limit
5506
+
5507
+ @Limit.setter
5508
+ def Limit(self, Limit):
5509
+ self._Limit = Limit
5510
+
5511
+ @property
5512
+ def Offset(self):
5513
+ r"""<p>偏移量,默认为0。</p>
5514
+ :rtype: int
5515
+ """
5516
+ return self._Offset
5517
+
5518
+ @Offset.setter
5519
+ def Offset(self, Offset):
5520
+ self._Offset = Offset
5521
+
5522
+ @property
5523
+ def TableName(self):
5524
+ r"""<p>表名</p>
5525
+ :rtype: str
5526
+ """
5527
+ return self._TableName
5528
+
5529
+ @TableName.setter
5530
+ def TableName(self, TableName):
5531
+ self._TableName = TableName
5532
+
5533
+ @property
5534
+ def Hosts(self):
5535
+ r"""<p>Hosts名</p>
5536
+ :rtype: list of str
5537
+ """
5538
+ return self._Hosts
5539
+
5540
+ @Hosts.setter
5541
+ def Hosts(self, Hosts):
5542
+ self._Hosts = Hosts
5543
+
5544
+ @property
5545
+ def SqlCodes(self):
5546
+ r"""<p>sql codes</p>
5547
+ :rtype: list of str
5548
+ """
5549
+ return self._SqlCodes
5550
+
5551
+ @SqlCodes.setter
5552
+ def SqlCodes(self, SqlCodes):
5553
+ self._SqlCodes = SqlCodes
5554
+
5555
+ @property
5556
+ def SqlSample(self):
5557
+ r"""<p>sql语句</p>
5558
+ :rtype: str
5559
+ """
5560
+ return self._SqlSample
5561
+
5562
+ @SqlSample.setter
5563
+ def SqlSample(self, SqlSample):
5564
+ self._SqlSample = SqlSample
5565
+
5566
+ @property
5567
+ def Users(self):
5568
+ r"""<p>用户名列表</p>
5569
+ :rtype: list of str
5570
+ """
5571
+ return self._Users
5572
+
5573
+ @Users.setter
5574
+ def Users(self, Users):
5575
+ self._Users = Users
5576
+
5577
+
5578
+ def _deserialize(self, params):
5579
+ self._StartTime = params.get("StartTime")
5580
+ self._EndTime = params.get("EndTime")
5581
+ self._Product = params.get("Product")
5582
+ self._InstanceId = params.get("InstanceId")
5583
+ self._OrderBy = params.get("OrderBy")
5584
+ self._OrderByDirection = params.get("OrderByDirection")
5585
+ self._Limit = params.get("Limit")
5586
+ self._Offset = params.get("Offset")
5587
+ self._TableName = params.get("TableName")
5588
+ self._Hosts = params.get("Hosts")
5589
+ self._SqlCodes = params.get("SqlCodes")
5590
+ self._SqlSample = params.get("SqlSample")
5591
+ self._Users = params.get("Users")
5592
+ memeber_set = set(params.keys())
5593
+ for name, value in vars(self).items():
5594
+ property_name = name[1:]
5595
+ if property_name in memeber_set:
5596
+ memeber_set.remove(property_name)
5597
+ if len(memeber_set) > 0:
5598
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5599
+
5600
+
5601
+
5602
+ class DescribeDBAuditLogTopSqlsResponse(AbstractModel):
5603
+ r"""DescribeDBAuditLogTopSqls返回参数结构体
5604
+
5605
+ """
5606
+
5607
+ def __init__(self):
5608
+ r"""
5609
+ :param _TotalCount: <p>符合条件的记录总数。</p>
5610
+ :type TotalCount: int
5611
+ :param _TopSqls: <p>top sql 列表</p>
5612
+ :type TopSqls: list of TopSqlTpl
5613
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5614
+ :type RequestId: str
5615
+ """
5616
+ self._TotalCount = None
5617
+ self._TopSqls = None
5618
+ self._RequestId = None
5619
+
5620
+ @property
5621
+ def TotalCount(self):
5622
+ r"""<p>符合条件的记录总数。</p>
5623
+ :rtype: int
5624
+ """
5625
+ return self._TotalCount
5626
+
5627
+ @TotalCount.setter
5628
+ def TotalCount(self, TotalCount):
5629
+ self._TotalCount = TotalCount
5630
+
5631
+ @property
5632
+ def TopSqls(self):
5633
+ r"""<p>top sql 列表</p>
5634
+ :rtype: list of TopSqlTpl
5635
+ """
5636
+ return self._TopSqls
5637
+
5638
+ @TopSqls.setter
5639
+ def TopSqls(self, TopSqls):
5640
+ self._TopSqls = TopSqls
5641
+
5642
+ @property
5643
+ def RequestId(self):
5644
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5645
+ :rtype: str
5646
+ """
5647
+ return self._RequestId
5648
+
5649
+ @RequestId.setter
5650
+ def RequestId(self, RequestId):
5651
+ self._RequestId = RequestId
5652
+
5653
+
5654
+ def _deserialize(self, params):
5655
+ self._TotalCount = params.get("TotalCount")
5656
+ if params.get("TopSqls") is not None:
5657
+ self._TopSqls = []
5658
+ for item in params.get("TopSqls"):
5659
+ obj = TopSqlTpl()
5660
+ obj._deserialize(item)
5661
+ self._TopSqls.append(obj)
5662
+ self._RequestId = params.get("RequestId")
5663
+
5664
+
5386
5665
  class DescribeDBAutonomyActionRequest(AbstractModel):
5387
5666
  r"""DescribeDBAutonomyAction请求参数结构体
5388
5667
 
@@ -7108,11 +7387,11 @@ class DescribeDBSpaceStatusRequest(AbstractModel):
7108
7387
 
7109
7388
  def __init__(self):
7110
7389
  r"""
7111
- :param _InstanceId: 实例 ID
7390
+ :param _InstanceId: <p>实例 ID。可通过 <a href="https://cloud.tencent.com/document/api/1130/57798">DescribeDiagDBInstances</a> 接口获取。(备注,dcdb的InstanceId 要求使用 <code>ClusterId&amp;InstanceId</code>代替)</p>
7112
7391
  :type InstanceId: str
7113
- :param _RangeDays: 时间段天数,截止日期为当日,默认为7天。
7392
+ :param _RangeDays: <p>时间段天数,截止日期为当日,默认为7天。</p>
7114
7393
  :type RangeDays: int
7115
- :param _Product: 服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 CynosDB for MySQL,"mongodb" - 云数据库 MongoDB,默认为"mysql"。
7394
+ :param _Product: <p>服务产品类型,支持值包括: &quot;mysql&quot; - 云数据库 MySQL, &quot;cynosdb&quot; - 云数据库 CynosDB for MySQL,&quot;mongodb&quot; - 云数据库 MongoDB,&quot;dcdb&quot; -(TDSQL MySQL 版)、&quot;mariadb&quot; -(TDSQL MariaDB 版)默认为&quot;mysql&quot;。</p>
7116
7395
  :type Product: str
7117
7396
  """
7118
7397
  self._InstanceId = None
@@ -7121,7 +7400,7 @@ class DescribeDBSpaceStatusRequest(AbstractModel):
7121
7400
 
7122
7401
  @property
7123
7402
  def InstanceId(self):
7124
- r"""实例 ID
7403
+ r"""<p>实例 ID。可通过 <a href="https://cloud.tencent.com/document/api/1130/57798">DescribeDiagDBInstances</a> 接口获取。(备注,dcdb的InstanceId 要求使用 <code>ClusterId&amp;InstanceId</code>代替)</p>
7125
7404
  :rtype: str
7126
7405
  """
7127
7406
  return self._InstanceId
@@ -7132,7 +7411,7 @@ class DescribeDBSpaceStatusRequest(AbstractModel):
7132
7411
 
7133
7412
  @property
7134
7413
  def RangeDays(self):
7135
- r"""时间段天数,截止日期为当日,默认为7天。
7414
+ r"""<p>时间段天数,截止日期为当日,默认为7天。</p>
7136
7415
  :rtype: int
7137
7416
  """
7138
7417
  return self._RangeDays
@@ -7143,7 +7422,7 @@ class DescribeDBSpaceStatusRequest(AbstractModel):
7143
7422
 
7144
7423
  @property
7145
7424
  def Product(self):
7146
- r"""服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 CynosDB for MySQL,"mongodb" - 云数据库 MongoDB,默认为"mysql"。
7425
+ r"""<p>服务产品类型,支持值包括: &quot;mysql&quot; - 云数据库 MySQL, &quot;cynosdb&quot; - 云数据库 CynosDB for MySQL,&quot;mongodb&quot; - 云数据库 MongoDB,&quot;dcdb&quot; -(TDSQL MySQL 版)、&quot;mariadb&quot; -(TDSQL MariaDB 版)默认为&quot;mysql&quot;。</p>
7147
7426
  :rtype: str
7148
7427
  """
7149
7428
  return self._Product
@@ -7174,13 +7453,13 @@ class DescribeDBSpaceStatusResponse(AbstractModel):
7174
7453
 
7175
7454
  def __init__(self):
7176
7455
  r"""
7177
- :param _Growth: 磁盘增长量(MB)
7456
+ :param _Growth: <p>磁盘增长量(MB)。</p>
7178
7457
  :type Growth: int
7179
- :param _Remain: 磁盘剩余(MB)
7458
+ :param _Remain: <p>磁盘剩余(MB)。</p>
7180
7459
  :type Remain: int
7181
- :param _Total: 磁盘总量(MB)
7460
+ :param _Total: <p>磁盘总量(MB)。</p>
7182
7461
  :type Total: int
7183
- :param _AvailableDays: 预计可用天数。
7462
+ :param _AvailableDays: <p>预计可用天数。</p>
7184
7463
  :type AvailableDays: int
7185
7464
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7186
7465
  :type RequestId: str
@@ -7193,7 +7472,7 @@ class DescribeDBSpaceStatusResponse(AbstractModel):
7193
7472
 
7194
7473
  @property
7195
7474
  def Growth(self):
7196
- r"""磁盘增长量(MB)
7475
+ r"""<p>磁盘增长量(MB)。</p>
7197
7476
  :rtype: int
7198
7477
  """
7199
7478
  return self._Growth
@@ -7204,7 +7483,7 @@ class DescribeDBSpaceStatusResponse(AbstractModel):
7204
7483
 
7205
7484
  @property
7206
7485
  def Remain(self):
7207
- r"""磁盘剩余(MB)
7486
+ r"""<p>磁盘剩余(MB)。</p>
7208
7487
  :rtype: int
7209
7488
  """
7210
7489
  return self._Remain
@@ -7215,7 +7494,7 @@ class DescribeDBSpaceStatusResponse(AbstractModel):
7215
7494
 
7216
7495
  @property
7217
7496
  def Total(self):
7218
- r"""磁盘总量(MB)
7497
+ r"""<p>磁盘总量(MB)。</p>
7219
7498
  :rtype: int
7220
7499
  """
7221
7500
  return self._Total
@@ -7226,7 +7505,7 @@ class DescribeDBSpaceStatusResponse(AbstractModel):
7226
7505
 
7227
7506
  @property
7228
7507
  def AvailableDays(self):
7229
- r"""预计可用天数。
7508
+ r"""<p>预计可用天数。</p>
7230
7509
  :rtype: int
7231
7510
  """
7232
7511
  return self._AvailableDays
@@ -21975,6 +22254,589 @@ class TopHotKeys(AbstractModel):
21975
22254
 
21976
22255
 
21977
22256
 
22257
+ class TopSqlTpl(AbstractModel):
22258
+ r"""审计日志TopSql
22259
+
22260
+ """
22261
+
22262
+ def __init__(self):
22263
+ r"""
22264
+ :param _ExecTimes: <p>执行次数</p>
22265
+ 注意:此字段可能返回 null,表示取不到有效值。
22266
+ :type ExecTimes: int
22267
+ :param _SqlTemplateId: <p>SQL模板Id,数据类型Long。</p>
22268
+ 注意:此字段可能返回 null,表示取不到有效值。
22269
+ :type SqlTemplateId: str
22270
+ :param _AffectRowsMin: <p>最小影响行数</p>
22271
+ 注意:此字段可能返回 null,表示取不到有效值。
22272
+ :type AffectRowsMin: int
22273
+ :param _SqlTemplate: <p>sql模板</p>
22274
+ 注意:此字段可能返回 null,表示取不到有效值。
22275
+ :type SqlTemplate: str
22276
+ :param _TableName: <p>表名</p>
22277
+ 注意:此字段可能返回 null,表示取不到有效值。
22278
+ :type TableName: str
22279
+ :param _AffectRowsMax: <p>最大影响行数</p>
22280
+ 注意:此字段可能返回 null,表示取不到有效值。
22281
+ :type AffectRowsMax: int
22282
+ :param _SqlType: <p>sql类型</p>
22283
+ 注意:此字段可能返回 null,表示取不到有效值。
22284
+ :type SqlType: str
22285
+ :param _AffectRows: <p>影响行数</p>
22286
+ 注意:此字段可能返回 null,表示取不到有效值。
22287
+ :type AffectRows: int
22288
+ :param _DB: <p>DB名</p>
22289
+ 注意:此字段可能返回 null,表示取不到有效值。
22290
+ :type DB: str
22291
+ :param _LockWaitTimeMin: <p>最小锁等待时间</p>
22292
+ 注意:此字段可能返回 null,表示取不到有效值。
22293
+ :type LockWaitTimeMin: float
22294
+ :param _CpuTime: <p>cpu时间</p>
22295
+ 注意:此字段可能返回 null,表示取不到有效值。
22296
+ :type CpuTime: float
22297
+ :param _IoWaitTimeMax: <p>最大io等待时间,单位秒</p>
22298
+ 注意:此字段可能返回 null,表示取不到有效值。
22299
+ :type IoWaitTimeMax: float
22300
+ :param _LockWaitTimeMax: <p>最大锁等待时间,单位秒</p>
22301
+ 注意:此字段可能返回 null,表示取不到有效值。
22302
+ :type LockWaitTimeMax: float
22303
+ :param _CheckRowsMin: <p>最小检查行数</p>
22304
+ 注意:此字段可能返回 null,表示取不到有效值。
22305
+ :type CheckRowsMin: int
22306
+ :param _CheckRows: <p>检查行数</p>
22307
+ 注意:此字段可能返回 null,表示取不到有效值。
22308
+ :type CheckRows: int
22309
+ :param _CpuTimeMax: <p>最大cpu时间,单位秒</p>
22310
+ 注意:此字段可能返回 null,表示取不到有效值。
22311
+ :type CpuTimeMax: float
22312
+ :param _IoWaitTimeMin: <p>最小io等待时间,单位秒</p>
22313
+ 注意:此字段可能返回 null,表示取不到有效值。
22314
+ :type IoWaitTimeMin: int
22315
+ :param _LatencyMax: <p>最大执行时间,单位秒</p>
22316
+ 注意:此字段可能返回 null,表示取不到有效值。
22317
+ :type LatencyMax: float
22318
+ :param _IoWaitTime: <p>io等待时间,单位秒</p>
22319
+ 注意:此字段可能返回 null,表示取不到有效值。
22320
+ :type IoWaitTime: float
22321
+ :param _CheckRowsMax: <p>最大检查行数</p>
22322
+ 注意:此字段可能返回 null,表示取不到有效值。
22323
+ :type CheckRowsMax: int
22324
+ :param _CpuTimeMin: <p>最小cpu时间,单位秒</p>
22325
+ 注意:此字段可能返回 null,表示取不到有效值。
22326
+ :type CpuTimeMin: float
22327
+ :param _SqlText: <p>sql详情</p>
22328
+ 注意:此字段可能返回 null,表示取不到有效值。
22329
+ :type SqlText: str
22330
+ :param _LockWaitTime: <p>锁等待时间,单位秒</p>
22331
+ 注意:此字段可能返回 null,表示取不到有效值。
22332
+ :type LockWaitTime: float
22333
+ :param _LatencyMin: <p>最小执行时间,单位秒</p>
22334
+ 注意:此字段可能返回 null,表示取不到有效值。
22335
+ :type LatencyMin: float
22336
+ :param _Latency: <p>执行时间,单位秒</p>
22337
+ 注意:此字段可能返回 null,表示取不到有效值。
22338
+ :type Latency: float
22339
+ :param _QueryTimeRatio: <p>queryTime 占比,单位%</p>
22340
+ 注意:此字段可能返回 null,表示取不到有效值。
22341
+ :type QueryTimeRatio: str
22342
+ :param _CheckRowsAvg: <p>平均扫描行数</p>
22343
+ :type CheckRowsAvg: int
22344
+ :param _CpuTimeAvg: <p>平均cpu时间</p>
22345
+ :type CpuTimeAvg: float
22346
+ :param _IoWaitTimeAvg: <p>平均io等待时间</p>
22347
+ :type IoWaitTimeAvg: float
22348
+ :param _LatencyAvg: <p>平均执行时间</p>
22349
+ :type LatencyAvg: float
22350
+ :param _LockWaitTimeAvg: <p>平均锁等待时长</p>
22351
+ :type LockWaitTimeAvg: float
22352
+ :param _SentRows: <p>发送行数</p>
22353
+ :type SentRows: int
22354
+ :param _SentRowsAvg: <p>平均发送行数</p>
22355
+ :type SentRowsAvg: int
22356
+ :param _AffectRowsAvg: <p>平均影响行数</p>
22357
+ :type AffectRowsAvg: int
22358
+ """
22359
+ self._ExecTimes = None
22360
+ self._SqlTemplateId = None
22361
+ self._AffectRowsMin = None
22362
+ self._SqlTemplate = None
22363
+ self._TableName = None
22364
+ self._AffectRowsMax = None
22365
+ self._SqlType = None
22366
+ self._AffectRows = None
22367
+ self._DB = None
22368
+ self._LockWaitTimeMin = None
22369
+ self._CpuTime = None
22370
+ self._IoWaitTimeMax = None
22371
+ self._LockWaitTimeMax = None
22372
+ self._CheckRowsMin = None
22373
+ self._CheckRows = None
22374
+ self._CpuTimeMax = None
22375
+ self._IoWaitTimeMin = None
22376
+ self._LatencyMax = None
22377
+ self._IoWaitTime = None
22378
+ self._CheckRowsMax = None
22379
+ self._CpuTimeMin = None
22380
+ self._SqlText = None
22381
+ self._LockWaitTime = None
22382
+ self._LatencyMin = None
22383
+ self._Latency = None
22384
+ self._QueryTimeRatio = None
22385
+ self._CheckRowsAvg = None
22386
+ self._CpuTimeAvg = None
22387
+ self._IoWaitTimeAvg = None
22388
+ self._LatencyAvg = None
22389
+ self._LockWaitTimeAvg = None
22390
+ self._SentRows = None
22391
+ self._SentRowsAvg = None
22392
+ self._AffectRowsAvg = None
22393
+
22394
+ @property
22395
+ def ExecTimes(self):
22396
+ r"""<p>执行次数</p>
22397
+ 注意:此字段可能返回 null,表示取不到有效值。
22398
+ :rtype: int
22399
+ """
22400
+ return self._ExecTimes
22401
+
22402
+ @ExecTimes.setter
22403
+ def ExecTimes(self, ExecTimes):
22404
+ self._ExecTimes = ExecTimes
22405
+
22406
+ @property
22407
+ def SqlTemplateId(self):
22408
+ r"""<p>SQL模板Id,数据类型Long。</p>
22409
+ 注意:此字段可能返回 null,表示取不到有效值。
22410
+ :rtype: str
22411
+ """
22412
+ return self._SqlTemplateId
22413
+
22414
+ @SqlTemplateId.setter
22415
+ def SqlTemplateId(self, SqlTemplateId):
22416
+ self._SqlTemplateId = SqlTemplateId
22417
+
22418
+ @property
22419
+ def AffectRowsMin(self):
22420
+ r"""<p>最小影响行数</p>
22421
+ 注意:此字段可能返回 null,表示取不到有效值。
22422
+ :rtype: int
22423
+ """
22424
+ return self._AffectRowsMin
22425
+
22426
+ @AffectRowsMin.setter
22427
+ def AffectRowsMin(self, AffectRowsMin):
22428
+ self._AffectRowsMin = AffectRowsMin
22429
+
22430
+ @property
22431
+ def SqlTemplate(self):
22432
+ r"""<p>sql模板</p>
22433
+ 注意:此字段可能返回 null,表示取不到有效值。
22434
+ :rtype: str
22435
+ """
22436
+ return self._SqlTemplate
22437
+
22438
+ @SqlTemplate.setter
22439
+ def SqlTemplate(self, SqlTemplate):
22440
+ self._SqlTemplate = SqlTemplate
22441
+
22442
+ @property
22443
+ def TableName(self):
22444
+ r"""<p>表名</p>
22445
+ 注意:此字段可能返回 null,表示取不到有效值。
22446
+ :rtype: str
22447
+ """
22448
+ return self._TableName
22449
+
22450
+ @TableName.setter
22451
+ def TableName(self, TableName):
22452
+ self._TableName = TableName
22453
+
22454
+ @property
22455
+ def AffectRowsMax(self):
22456
+ r"""<p>最大影响行数</p>
22457
+ 注意:此字段可能返回 null,表示取不到有效值。
22458
+ :rtype: int
22459
+ """
22460
+ return self._AffectRowsMax
22461
+
22462
+ @AffectRowsMax.setter
22463
+ def AffectRowsMax(self, AffectRowsMax):
22464
+ self._AffectRowsMax = AffectRowsMax
22465
+
22466
+ @property
22467
+ def SqlType(self):
22468
+ r"""<p>sql类型</p>
22469
+ 注意:此字段可能返回 null,表示取不到有效值。
22470
+ :rtype: str
22471
+ """
22472
+ return self._SqlType
22473
+
22474
+ @SqlType.setter
22475
+ def SqlType(self, SqlType):
22476
+ self._SqlType = SqlType
22477
+
22478
+ @property
22479
+ def AffectRows(self):
22480
+ r"""<p>影响行数</p>
22481
+ 注意:此字段可能返回 null,表示取不到有效值。
22482
+ :rtype: int
22483
+ """
22484
+ return self._AffectRows
22485
+
22486
+ @AffectRows.setter
22487
+ def AffectRows(self, AffectRows):
22488
+ self._AffectRows = AffectRows
22489
+
22490
+ @property
22491
+ def DB(self):
22492
+ r"""<p>DB名</p>
22493
+ 注意:此字段可能返回 null,表示取不到有效值。
22494
+ :rtype: str
22495
+ """
22496
+ return self._DB
22497
+
22498
+ @DB.setter
22499
+ def DB(self, DB):
22500
+ self._DB = DB
22501
+
22502
+ @property
22503
+ def LockWaitTimeMin(self):
22504
+ r"""<p>最小锁等待时间</p>
22505
+ 注意:此字段可能返回 null,表示取不到有效值。
22506
+ :rtype: float
22507
+ """
22508
+ return self._LockWaitTimeMin
22509
+
22510
+ @LockWaitTimeMin.setter
22511
+ def LockWaitTimeMin(self, LockWaitTimeMin):
22512
+ self._LockWaitTimeMin = LockWaitTimeMin
22513
+
22514
+ @property
22515
+ def CpuTime(self):
22516
+ r"""<p>cpu时间</p>
22517
+ 注意:此字段可能返回 null,表示取不到有效值。
22518
+ :rtype: float
22519
+ """
22520
+ return self._CpuTime
22521
+
22522
+ @CpuTime.setter
22523
+ def CpuTime(self, CpuTime):
22524
+ self._CpuTime = CpuTime
22525
+
22526
+ @property
22527
+ def IoWaitTimeMax(self):
22528
+ r"""<p>最大io等待时间,单位秒</p>
22529
+ 注意:此字段可能返回 null,表示取不到有效值。
22530
+ :rtype: float
22531
+ """
22532
+ return self._IoWaitTimeMax
22533
+
22534
+ @IoWaitTimeMax.setter
22535
+ def IoWaitTimeMax(self, IoWaitTimeMax):
22536
+ self._IoWaitTimeMax = IoWaitTimeMax
22537
+
22538
+ @property
22539
+ def LockWaitTimeMax(self):
22540
+ r"""<p>最大锁等待时间,单位秒</p>
22541
+ 注意:此字段可能返回 null,表示取不到有效值。
22542
+ :rtype: float
22543
+ """
22544
+ return self._LockWaitTimeMax
22545
+
22546
+ @LockWaitTimeMax.setter
22547
+ def LockWaitTimeMax(self, LockWaitTimeMax):
22548
+ self._LockWaitTimeMax = LockWaitTimeMax
22549
+
22550
+ @property
22551
+ def CheckRowsMin(self):
22552
+ r"""<p>最小检查行数</p>
22553
+ 注意:此字段可能返回 null,表示取不到有效值。
22554
+ :rtype: int
22555
+ """
22556
+ return self._CheckRowsMin
22557
+
22558
+ @CheckRowsMin.setter
22559
+ def CheckRowsMin(self, CheckRowsMin):
22560
+ self._CheckRowsMin = CheckRowsMin
22561
+
22562
+ @property
22563
+ def CheckRows(self):
22564
+ r"""<p>检查行数</p>
22565
+ 注意:此字段可能返回 null,表示取不到有效值。
22566
+ :rtype: int
22567
+ """
22568
+ return self._CheckRows
22569
+
22570
+ @CheckRows.setter
22571
+ def CheckRows(self, CheckRows):
22572
+ self._CheckRows = CheckRows
22573
+
22574
+ @property
22575
+ def CpuTimeMax(self):
22576
+ r"""<p>最大cpu时间,单位秒</p>
22577
+ 注意:此字段可能返回 null,表示取不到有效值。
22578
+ :rtype: float
22579
+ """
22580
+ return self._CpuTimeMax
22581
+
22582
+ @CpuTimeMax.setter
22583
+ def CpuTimeMax(self, CpuTimeMax):
22584
+ self._CpuTimeMax = CpuTimeMax
22585
+
22586
+ @property
22587
+ def IoWaitTimeMin(self):
22588
+ r"""<p>最小io等待时间,单位秒</p>
22589
+ 注意:此字段可能返回 null,表示取不到有效值。
22590
+ :rtype: int
22591
+ """
22592
+ return self._IoWaitTimeMin
22593
+
22594
+ @IoWaitTimeMin.setter
22595
+ def IoWaitTimeMin(self, IoWaitTimeMin):
22596
+ self._IoWaitTimeMin = IoWaitTimeMin
22597
+
22598
+ @property
22599
+ def LatencyMax(self):
22600
+ r"""<p>最大执行时间,单位秒</p>
22601
+ 注意:此字段可能返回 null,表示取不到有效值。
22602
+ :rtype: float
22603
+ """
22604
+ return self._LatencyMax
22605
+
22606
+ @LatencyMax.setter
22607
+ def LatencyMax(self, LatencyMax):
22608
+ self._LatencyMax = LatencyMax
22609
+
22610
+ @property
22611
+ def IoWaitTime(self):
22612
+ r"""<p>io等待时间,单位秒</p>
22613
+ 注意:此字段可能返回 null,表示取不到有效值。
22614
+ :rtype: float
22615
+ """
22616
+ return self._IoWaitTime
22617
+
22618
+ @IoWaitTime.setter
22619
+ def IoWaitTime(self, IoWaitTime):
22620
+ self._IoWaitTime = IoWaitTime
22621
+
22622
+ @property
22623
+ def CheckRowsMax(self):
22624
+ r"""<p>最大检查行数</p>
22625
+ 注意:此字段可能返回 null,表示取不到有效值。
22626
+ :rtype: int
22627
+ """
22628
+ return self._CheckRowsMax
22629
+
22630
+ @CheckRowsMax.setter
22631
+ def CheckRowsMax(self, CheckRowsMax):
22632
+ self._CheckRowsMax = CheckRowsMax
22633
+
22634
+ @property
22635
+ def CpuTimeMin(self):
22636
+ r"""<p>最小cpu时间,单位秒</p>
22637
+ 注意:此字段可能返回 null,表示取不到有效值。
22638
+ :rtype: float
22639
+ """
22640
+ return self._CpuTimeMin
22641
+
22642
+ @CpuTimeMin.setter
22643
+ def CpuTimeMin(self, CpuTimeMin):
22644
+ self._CpuTimeMin = CpuTimeMin
22645
+
22646
+ @property
22647
+ def SqlText(self):
22648
+ r"""<p>sql详情</p>
22649
+ 注意:此字段可能返回 null,表示取不到有效值。
22650
+ :rtype: str
22651
+ """
22652
+ return self._SqlText
22653
+
22654
+ @SqlText.setter
22655
+ def SqlText(self, SqlText):
22656
+ self._SqlText = SqlText
22657
+
22658
+ @property
22659
+ def LockWaitTime(self):
22660
+ r"""<p>锁等待时间,单位秒</p>
22661
+ 注意:此字段可能返回 null,表示取不到有效值。
22662
+ :rtype: float
22663
+ """
22664
+ return self._LockWaitTime
22665
+
22666
+ @LockWaitTime.setter
22667
+ def LockWaitTime(self, LockWaitTime):
22668
+ self._LockWaitTime = LockWaitTime
22669
+
22670
+ @property
22671
+ def LatencyMin(self):
22672
+ r"""<p>最小执行时间,单位秒</p>
22673
+ 注意:此字段可能返回 null,表示取不到有效值。
22674
+ :rtype: float
22675
+ """
22676
+ return self._LatencyMin
22677
+
22678
+ @LatencyMin.setter
22679
+ def LatencyMin(self, LatencyMin):
22680
+ self._LatencyMin = LatencyMin
22681
+
22682
+ @property
22683
+ def Latency(self):
22684
+ r"""<p>执行时间,单位秒</p>
22685
+ 注意:此字段可能返回 null,表示取不到有效值。
22686
+ :rtype: float
22687
+ """
22688
+ return self._Latency
22689
+
22690
+ @Latency.setter
22691
+ def Latency(self, Latency):
22692
+ self._Latency = Latency
22693
+
22694
+ @property
22695
+ def QueryTimeRatio(self):
22696
+ r"""<p>queryTime 占比,单位%</p>
22697
+ 注意:此字段可能返回 null,表示取不到有效值。
22698
+ :rtype: str
22699
+ """
22700
+ return self._QueryTimeRatio
22701
+
22702
+ @QueryTimeRatio.setter
22703
+ def QueryTimeRatio(self, QueryTimeRatio):
22704
+ self._QueryTimeRatio = QueryTimeRatio
22705
+
22706
+ @property
22707
+ def CheckRowsAvg(self):
22708
+ r"""<p>平均扫描行数</p>
22709
+ :rtype: int
22710
+ """
22711
+ return self._CheckRowsAvg
22712
+
22713
+ @CheckRowsAvg.setter
22714
+ def CheckRowsAvg(self, CheckRowsAvg):
22715
+ self._CheckRowsAvg = CheckRowsAvg
22716
+
22717
+ @property
22718
+ def CpuTimeAvg(self):
22719
+ r"""<p>平均cpu时间</p>
22720
+ :rtype: float
22721
+ """
22722
+ return self._CpuTimeAvg
22723
+
22724
+ @CpuTimeAvg.setter
22725
+ def CpuTimeAvg(self, CpuTimeAvg):
22726
+ self._CpuTimeAvg = CpuTimeAvg
22727
+
22728
+ @property
22729
+ def IoWaitTimeAvg(self):
22730
+ r"""<p>平均io等待时间</p>
22731
+ :rtype: float
22732
+ """
22733
+ return self._IoWaitTimeAvg
22734
+
22735
+ @IoWaitTimeAvg.setter
22736
+ def IoWaitTimeAvg(self, IoWaitTimeAvg):
22737
+ self._IoWaitTimeAvg = IoWaitTimeAvg
22738
+
22739
+ @property
22740
+ def LatencyAvg(self):
22741
+ r"""<p>平均执行时间</p>
22742
+ :rtype: float
22743
+ """
22744
+ return self._LatencyAvg
22745
+
22746
+ @LatencyAvg.setter
22747
+ def LatencyAvg(self, LatencyAvg):
22748
+ self._LatencyAvg = LatencyAvg
22749
+
22750
+ @property
22751
+ def LockWaitTimeAvg(self):
22752
+ r"""<p>平均锁等待时长</p>
22753
+ :rtype: float
22754
+ """
22755
+ return self._LockWaitTimeAvg
22756
+
22757
+ @LockWaitTimeAvg.setter
22758
+ def LockWaitTimeAvg(self, LockWaitTimeAvg):
22759
+ self._LockWaitTimeAvg = LockWaitTimeAvg
22760
+
22761
+ @property
22762
+ def SentRows(self):
22763
+ r"""<p>发送行数</p>
22764
+ :rtype: int
22765
+ """
22766
+ return self._SentRows
22767
+
22768
+ @SentRows.setter
22769
+ def SentRows(self, SentRows):
22770
+ self._SentRows = SentRows
22771
+
22772
+ @property
22773
+ def SentRowsAvg(self):
22774
+ r"""<p>平均发送行数</p>
22775
+ :rtype: int
22776
+ """
22777
+ return self._SentRowsAvg
22778
+
22779
+ @SentRowsAvg.setter
22780
+ def SentRowsAvg(self, SentRowsAvg):
22781
+ self._SentRowsAvg = SentRowsAvg
22782
+
22783
+ @property
22784
+ def AffectRowsAvg(self):
22785
+ r"""<p>平均影响行数</p>
22786
+ :rtype: int
22787
+ """
22788
+ return self._AffectRowsAvg
22789
+
22790
+ @AffectRowsAvg.setter
22791
+ def AffectRowsAvg(self, AffectRowsAvg):
22792
+ self._AffectRowsAvg = AffectRowsAvg
22793
+
22794
+
22795
+ def _deserialize(self, params):
22796
+ self._ExecTimes = params.get("ExecTimes")
22797
+ self._SqlTemplateId = params.get("SqlTemplateId")
22798
+ self._AffectRowsMin = params.get("AffectRowsMin")
22799
+ self._SqlTemplate = params.get("SqlTemplate")
22800
+ self._TableName = params.get("TableName")
22801
+ self._AffectRowsMax = params.get("AffectRowsMax")
22802
+ self._SqlType = params.get("SqlType")
22803
+ self._AffectRows = params.get("AffectRows")
22804
+ self._DB = params.get("DB")
22805
+ self._LockWaitTimeMin = params.get("LockWaitTimeMin")
22806
+ self._CpuTime = params.get("CpuTime")
22807
+ self._IoWaitTimeMax = params.get("IoWaitTimeMax")
22808
+ self._LockWaitTimeMax = params.get("LockWaitTimeMax")
22809
+ self._CheckRowsMin = params.get("CheckRowsMin")
22810
+ self._CheckRows = params.get("CheckRows")
22811
+ self._CpuTimeMax = params.get("CpuTimeMax")
22812
+ self._IoWaitTimeMin = params.get("IoWaitTimeMin")
22813
+ self._LatencyMax = params.get("LatencyMax")
22814
+ self._IoWaitTime = params.get("IoWaitTime")
22815
+ self._CheckRowsMax = params.get("CheckRowsMax")
22816
+ self._CpuTimeMin = params.get("CpuTimeMin")
22817
+ self._SqlText = params.get("SqlText")
22818
+ self._LockWaitTime = params.get("LockWaitTime")
22819
+ self._LatencyMin = params.get("LatencyMin")
22820
+ self._Latency = params.get("Latency")
22821
+ self._QueryTimeRatio = params.get("QueryTimeRatio")
22822
+ self._CheckRowsAvg = params.get("CheckRowsAvg")
22823
+ self._CpuTimeAvg = params.get("CpuTimeAvg")
22824
+ self._IoWaitTimeAvg = params.get("IoWaitTimeAvg")
22825
+ self._LatencyAvg = params.get("LatencyAvg")
22826
+ self._LockWaitTimeAvg = params.get("LockWaitTimeAvg")
22827
+ self._SentRows = params.get("SentRows")
22828
+ self._SentRowsAvg = params.get("SentRowsAvg")
22829
+ self._AffectRowsAvg = params.get("AffectRowsAvg")
22830
+ memeber_set = set(params.keys())
22831
+ for name, value in vars(self).items():
22832
+ property_name = name[1:]
22833
+ if property_name in memeber_set:
22834
+ memeber_set.remove(property_name)
22835
+ if len(memeber_set) > 0:
22836
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
22837
+
22838
+
22839
+
21978
22840
  class UpdateAgentSwitchRequest(AbstractModel):
21979
22841
  r"""UpdateAgentSwitch请求参数结构体
21980
22842
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dbbrain
3
- Version: 3.1.112
3
+ Version: 3.1.122
4
4
  Summary: Tencent Cloud Dbbrain 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.112
18
+ Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.122
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=Mq2JsEBUAoVRWhH2ZdmzNAC82kdYoTWlSdIYTDQ0TH0,630
1
+ tencentcloud/__init__.py,sha256=uTxxoRVVv97MRNri6S5c_vlq8hJq4kjsTzeTl-ZB6PI,630
2
2
  tencentcloud/dbbrain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  tencentcloud/dbbrain/v20191016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  tencentcloud/dbbrain/v20191016/dbbrain_client.py,sha256=D8k7Ql1i2UiOCXIfggsfn7IqwcMkuHYuo2nddMygKEI,28717
@@ -6,11 +6,11 @@ tencentcloud/dbbrain/v20191016/dbbrain_client_async.py,sha256=yEPUVmQLNQSYIn2XUf
6
6
  tencentcloud/dbbrain/v20191016/errorcodes.py,sha256=tpmfN_Xls8IKwIUcXWGH6yQUndtIjH7zeAQYL2A8NDc,1625
7
7
  tencentcloud/dbbrain/v20191016/models.py,sha256=BNLnWNNu2-UhQ8rHtA4Np--o4YTQWdtDuHMnDDn8hXk,250045
8
8
  tencentcloud/dbbrain/v20210527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- tencentcloud/dbbrain/v20210527/dbbrain_client.py,sha256=wh2YNCPlLEmGZuEl6WjDQpZUTL6iF3jkVyQdF59fyP0,86629
10
- tencentcloud/dbbrain/v20210527/dbbrain_client_async.py,sha256=ga8RA0C2Gomdj5jfnegZDDlw9SaJygE-A44NQ9sukEE,58921
9
+ tencentcloud/dbbrain/v20210527/dbbrain_client.py,sha256=BXLYhtXM8mMiFb_JBKsLtDbg-6vONLrDhGVNeoFXtnU,87622
10
+ tencentcloud/dbbrain/v20210527/dbbrain_client_async.py,sha256=lLNDuAOc7miUHtFvv66Zs8ZA1QcVY0QR2dWEKLpYLTA,59599
11
11
  tencentcloud/dbbrain/v20210527/errorcodes.py,sha256=Sh30b_ChoDx9THeOrRvW0NNP7SzDta04u5sUulDMa54,2457
12
- tencentcloud/dbbrain/v20210527/models.py,sha256=EuY5sY31rIjNO2p9WuvVs9wf3oH5oZRxpPljkGomaps,686280
13
- tencentcloud_sdk_python_dbbrain-3.1.112.dist-info/METADATA,sha256=yGvFcxkRvmtcvYK6ulChZOPD3U3sP4Uddtti8uIkF0Q,1517
14
- tencentcloud_sdk_python_dbbrain-3.1.112.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
15
- tencentcloud_sdk_python_dbbrain-3.1.112.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
16
- tencentcloud_sdk_python_dbbrain-3.1.112.dist-info/RECORD,,
12
+ tencentcloud/dbbrain/v20210527/models.py,sha256=TXSmzNM6M3B-Pf-xxgMQUWRES65jTp835woCGJzmMkI,713808
13
+ tencentcloud_sdk_python_dbbrain-3.1.122.dist-info/METADATA,sha256=OdwWIa7X9efSDzTcpzOhCc0UhnKji9Y1CHMQPGfx4ZI,1517
14
+ tencentcloud_sdk_python_dbbrain-3.1.122.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
15
+ tencentcloud_sdk_python_dbbrain-3.1.122.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
16
+ tencentcloud_sdk_python_dbbrain-3.1.122.dist-info/RECORD,,