tencentcloud-sdk-python 3.0.1169__py2.py3-none-any.whl → 3.0.1170__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.0.1169'
17
+ __version__ = '3.0.1170'
@@ -6501,7 +6501,8 @@ class CreateDBInstanceHourRequest(AbstractModel):
6501
6501
  :type Memory: int
6502
6502
  :param _Volume: 实例硬盘大小,单位:GB,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的硬盘范围。
6503
6503
  :type Volume: int
6504
- :param _EngineVersion: MySQL 版本,值包括:5.5、5.6 、5.7 、8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
6504
+ :param _EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7、8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
6505
+ 说明:若此参数不填,则默认值为5.6。
6505
6506
  :type EngineVersion: str
6506
6507
  :param _UniqVpcId: 私有网络 ID,如果不传则默认选择基础网络,请使用 [查询私有网络列表](/document/api/215/15778) 。
6507
6508
  :type UniqVpcId: str
@@ -7045,7 +7046,8 @@ class CreateDBInstanceRequest(AbstractModel):
7045
7046
  :type InstanceRole: str
7046
7047
  :param _MasterInstanceId: 实例 ID,购买只读实例时必填,该字段表示只读实例的主实例ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
7047
7048
  :type MasterInstanceId: str
7048
- :param _EngineVersion: MySQL 版本,值包括:5.5、5.6 、5.7和8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
7049
+ :param _EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7和8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
7050
+ 说明:若此参数不填,则默认值为5.6。
7049
7051
  :type EngineVersion: str
7050
7052
  :param _Password: 设置 root 账号密码,密码规则:8 - 64 个字符,至少包含字母、数字、字符(支持的字符:_+-&=!@#$%^*())中的两种,购买主实例时可指定该参数,购买只读实例或者灾备实例时指定该参数无意义。
7051
7053
  :type Password: str
@@ -26,31 +26,6 @@ class CdsClient(AbstractClient):
26
26
  _service = 'cds'
27
27
 
28
28
 
29
- def DescribeDasbImageIds(self, request):
30
- """这些接口是传统版堡垒机接口.数审未用到,堡垒机的已全部迁移到dasb下,cds这边预下线
31
-
32
- 获取镜像列表
33
-
34
- :param request: Request instance for DescribeDasbImageIds.
35
- :type request: :class:`tencentcloud.cds.v20180420.models.DescribeDasbImageIdsRequest`
36
- :rtype: :class:`tencentcloud.cds.v20180420.models.DescribeDasbImageIdsResponse`
37
-
38
- """
39
- try:
40
- params = request._serialize()
41
- headers = request.headers
42
- body = self.call("DescribeDasbImageIds", params, headers=headers)
43
- response = json.loads(body)
44
- model = models.DescribeDasbImageIdsResponse()
45
- model._deserialize(response["Response"])
46
- return model
47
- except Exception as e:
48
- if isinstance(e, TencentCloudSDKException):
49
- raise
50
- else:
51
- raise TencentCloudSDKException(type(e).__name__, str(e))
52
-
53
-
54
29
  def DescribeDbauditInstanceType(self, request):
55
30
  """本接口 (DescribeDbauditInstanceType) 用于查询可售卖的产品规格列表。
56
31
 
@@ -340,61 +340,6 @@ class DbauditTypesInfo(AbstractModel):
340
340
 
341
341
 
342
342
 
343
- class DescribeDasbImageIdsRequest(AbstractModel):
344
- """DescribeDasbImageIds请求参数结构体
345
-
346
- """
347
-
348
-
349
- class DescribeDasbImageIdsResponse(AbstractModel):
350
- """DescribeDasbImageIds返回参数结构体
351
-
352
- """
353
-
354
- def __init__(self):
355
- r"""
356
- :param _BaseImageId: 基础镜像ID
357
- :type BaseImageId: str
358
- :param _AiImageId: AI镜像ID
359
- :type AiImageId: str
360
- :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
361
- :type RequestId: str
362
- """
363
- self._BaseImageId = None
364
- self._AiImageId = None
365
- self._RequestId = None
366
-
367
- @property
368
- def BaseImageId(self):
369
- return self._BaseImageId
370
-
371
- @BaseImageId.setter
372
- def BaseImageId(self, BaseImageId):
373
- self._BaseImageId = BaseImageId
374
-
375
- @property
376
- def AiImageId(self):
377
- return self._AiImageId
378
-
379
- @AiImageId.setter
380
- def AiImageId(self, AiImageId):
381
- self._AiImageId = AiImageId
382
-
383
- @property
384
- def RequestId(self):
385
- return self._RequestId
386
-
387
- @RequestId.setter
388
- def RequestId(self, RequestId):
389
- self._RequestId = RequestId
390
-
391
-
392
- def _deserialize(self, params):
393
- self._BaseImageId = params.get("BaseImageId")
394
- self._AiImageId = params.get("AiImageId")
395
- self._RequestId = params.get("RequestId")
396
-
397
-
398
343
  class DescribeDbauditInstanceTypeRequest(AbstractModel):
399
344
  """DescribeDbauditInstanceType请求参数结构体
400
345
 
@@ -3476,6 +3476,15 @@ Modify 集群变更中;
3476
3476
  :param _HasEsIndex: true
3477
3477
  注意:此字段可能返回 null,表示取不到有效值。
3478
3478
  :type HasEsIndex: bool
3479
+ :param _IsSecondaryZone: true
3480
+ 注意:此字段可能返回 null,表示取不到有效值。
3481
+ :type IsSecondaryZone: bool
3482
+ :param _SecondaryZoneInfo: desc
3483
+ 注意:此字段可能返回 null,表示取不到有效值。
3484
+ :type SecondaryZoneInfo: str
3485
+ :param _ClickHouseKeeper: 是否clickhouse-keeper
3486
+ 注意:此字段可能返回 null,表示取不到有效值。
3487
+ :type ClickHouseKeeper: bool
3479
3488
  """
3480
3489
  self._InstanceId = None
3481
3490
  self._InstanceName = None
@@ -3523,6 +3532,9 @@ Modify 集群变更中;
3523
3532
  self._EsIndexUsername = None
3524
3533
  self._EsIndexPassword = None
3525
3534
  self._HasEsIndex = None
3535
+ self._IsSecondaryZone = None
3536
+ self._SecondaryZoneInfo = None
3537
+ self._ClickHouseKeeper = None
3526
3538
 
3527
3539
  @property
3528
3540
  def InstanceId(self):
@@ -3892,6 +3904,30 @@ Modify 集群变更中;
3892
3904
  def HasEsIndex(self, HasEsIndex):
3893
3905
  self._HasEsIndex = HasEsIndex
3894
3906
 
3907
+ @property
3908
+ def IsSecondaryZone(self):
3909
+ return self._IsSecondaryZone
3910
+
3911
+ @IsSecondaryZone.setter
3912
+ def IsSecondaryZone(self, IsSecondaryZone):
3913
+ self._IsSecondaryZone = IsSecondaryZone
3914
+
3915
+ @property
3916
+ def SecondaryZoneInfo(self):
3917
+ return self._SecondaryZoneInfo
3918
+
3919
+ @SecondaryZoneInfo.setter
3920
+ def SecondaryZoneInfo(self, SecondaryZoneInfo):
3921
+ self._SecondaryZoneInfo = SecondaryZoneInfo
3922
+
3923
+ @property
3924
+ def ClickHouseKeeper(self):
3925
+ return self._ClickHouseKeeper
3926
+
3927
+ @ClickHouseKeeper.setter
3928
+ def ClickHouseKeeper(self, ClickHouseKeeper):
3929
+ self._ClickHouseKeeper = ClickHouseKeeper
3930
+
3895
3931
 
3896
3932
  def _deserialize(self, params):
3897
3933
  self._InstanceId = params.get("InstanceId")
@@ -3956,6 +3992,9 @@ Modify 集群变更中;
3956
3992
  self._EsIndexUsername = params.get("EsIndexUsername")
3957
3993
  self._EsIndexPassword = params.get("EsIndexPassword")
3958
3994
  self._HasEsIndex = params.get("HasEsIndex")
3995
+ self._IsSecondaryZone = params.get("IsSecondaryZone")
3996
+ self._SecondaryZoneInfo = params.get("SecondaryZoneInfo")
3997
+ self._ClickHouseKeeper = params.get("ClickHouseKeeper")
3959
3998
  memeber_set = set(params.keys())
3960
3999
  for name, value in vars(self).items():
3961
4000
  property_name = name[1:]
@@ -1706,7 +1706,9 @@ class CynosdbClient(AbstractClient):
1706
1706
 
1707
1707
 
1708
1708
  def DescribeRollbackTimeValidity(self, request):
1709
- """指定时间和集群查询是否可回滚
1709
+ """历史废弃接口,从云API下线
1710
+
1711
+ 指定时间和集群查询是否可回滚
1710
1712
 
1711
1713
  :param request: Request instance for DescribeRollbackTimeValidity.
1712
1714
  :type request: :class:`tencentcloud.cynosdb.v20190107.models.DescribeRollbackTimeValidityRequest`
@@ -26366,6 +26366,16 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
26366
26366
  :type DealMode: int
26367
26367
  :param _PayMode: 计算节点付费模式:0-按量计费,1-预付费
26368
26368
  :type PayMode: int
26369
+ :param _TimeSpan: 时间
26370
+ :type TimeSpan: int
26371
+ :param _TimeUnit: 单位
26372
+ :type TimeUnit: str
26373
+ :param _RollbackDatabases: 回档库信息
26374
+ :type RollbackDatabases: list of RollbackDatabase
26375
+ :param _RollbackTables: 回档表信息
26376
+ :type RollbackTables: list of RollbackTable
26377
+ :param _OriginalROInstanceList: 原ro实例信息
26378
+ :type OriginalROInstanceList: list of str
26369
26379
  """
26370
26380
  self._Zone = None
26371
26381
  self._OriginalClusterId = None
@@ -26388,6 +26398,11 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
26388
26398
  self._InstanceInitInfos = None
26389
26399
  self._DealMode = None
26390
26400
  self._PayMode = None
26401
+ self._TimeSpan = None
26402
+ self._TimeUnit = None
26403
+ self._RollbackDatabases = None
26404
+ self._RollbackTables = None
26405
+ self._OriginalROInstanceList = None
26391
26406
 
26392
26407
  @property
26393
26408
  def Zone(self):
@@ -26557,6 +26572,46 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
26557
26572
  def PayMode(self, PayMode):
26558
26573
  self._PayMode = PayMode
26559
26574
 
26575
+ @property
26576
+ def TimeSpan(self):
26577
+ return self._TimeSpan
26578
+
26579
+ @TimeSpan.setter
26580
+ def TimeSpan(self, TimeSpan):
26581
+ self._TimeSpan = TimeSpan
26582
+
26583
+ @property
26584
+ def TimeUnit(self):
26585
+ return self._TimeUnit
26586
+
26587
+ @TimeUnit.setter
26588
+ def TimeUnit(self, TimeUnit):
26589
+ self._TimeUnit = TimeUnit
26590
+
26591
+ @property
26592
+ def RollbackDatabases(self):
26593
+ return self._RollbackDatabases
26594
+
26595
+ @RollbackDatabases.setter
26596
+ def RollbackDatabases(self, RollbackDatabases):
26597
+ self._RollbackDatabases = RollbackDatabases
26598
+
26599
+ @property
26600
+ def RollbackTables(self):
26601
+ return self._RollbackTables
26602
+
26603
+ @RollbackTables.setter
26604
+ def RollbackTables(self, RollbackTables):
26605
+ self._RollbackTables = RollbackTables
26606
+
26607
+ @property
26608
+ def OriginalROInstanceList(self):
26609
+ return self._OriginalROInstanceList
26610
+
26611
+ @OriginalROInstanceList.setter
26612
+ def OriginalROInstanceList(self, OriginalROInstanceList):
26613
+ self._OriginalROInstanceList = OriginalROInstanceList
26614
+
26560
26615
 
26561
26616
  def _deserialize(self, params):
26562
26617
  self._Zone = params.get("Zone")
@@ -26595,6 +26650,21 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
26595
26650
  self._InstanceInitInfos.append(obj)
26596
26651
  self._DealMode = params.get("DealMode")
26597
26652
  self._PayMode = params.get("PayMode")
26653
+ self._TimeSpan = params.get("TimeSpan")
26654
+ self._TimeUnit = params.get("TimeUnit")
26655
+ if params.get("RollbackDatabases") is not None:
26656
+ self._RollbackDatabases = []
26657
+ for item in params.get("RollbackDatabases"):
26658
+ obj = RollbackDatabase()
26659
+ obj._deserialize(item)
26660
+ self._RollbackDatabases.append(obj)
26661
+ if params.get("RollbackTables") is not None:
26662
+ self._RollbackTables = []
26663
+ for item in params.get("RollbackTables"):
26664
+ obj = RollbackTable()
26665
+ obj._deserialize(item)
26666
+ self._RollbackTables.append(obj)
26667
+ self._OriginalROInstanceList = params.get("OriginalROInstanceList")
26598
26668
  memeber_set = set(params.keys())
26599
26669
  for name, value in vars(self).items():
26600
26670
  property_name = name[1:]
@@ -480,7 +480,7 @@ class BiddingAppointResult(AbstractModel):
480
480
  :param _AppointNum: 预约人数
481
481
  注意:此字段可能返回 null,表示取不到有效值。
482
482
  :type AppointNum: int
483
- :param _Status: 1 已预约,2 竞价中,3 等待出价 4 等待支付 5 失败 6 转移中,7 转移成功 8 持有者索回
483
+ :param _Status: 1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
484
484
  注意:此字段可能返回 null,表示取不到有效值。
485
485
  :type Status: int
486
486
  """
@@ -695,7 +695,7 @@ class BiddingResult(AbstractModel):
695
695
  :param _BiddingNum: 出价次数
696
696
  注意:此字段可能返回 null,表示取不到有效值。
697
697
  :type BiddingNum: int
698
- :param _Status: 1 已预约,2 竞价中,3 支付尾款 4 交割 5 交易失败 6 交易成功,7 已过期
698
+ :param _Status: 2 竞价中 3 等待出价 4 竞价失败 10 竞价持有者赎回
699
699
  注意:此字段可能返回 null,表示取不到有效值。
700
700
  :type Status: int
701
701
  """
@@ -2798,7 +2798,7 @@ class DescribeBiddingAppointDetailResponse(AbstractModel):
2798
2798
  :type AppointPrice: int
2799
2799
  :param _AppointBondPrice: 预约保证金
2800
2800
  :type AppointBondPrice: int
2801
- :param _Status: 1 已预约,2 竞价中,3 等待出价 4 等待支付 5 失败 6 转移中,7 转移成功 8 持有者索回
2801
+ :param _Status: 1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
2802
2802
  :type Status: int
2803
2803
  :param _BiddingBondRefund: 预约保证金是否已经退回
2804
2804
  yes:退回 no: 未退回
@@ -3138,7 +3138,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
3138
3138
  :type CurrentNickname: str
3139
3139
  :param _BiddingBondPrice: 竞价保证金
3140
3140
  :type BiddingBondPrice: int
3141
- :param _Status: 1 已预约,2 竞价中,3 支付尾款 4 交割 5 交易失败 6 交易成功,7 已过期
3141
+ :param _Status: 2 竞价中 3 等待出价 4 竞价失败 10 竞价持有者赎回
3142
3142
  :type Status: int
3143
3143
  :param _BiddingFlag: 竞价标识,1 领先,2 落后
3144
3144
  :type BiddingFlag: int
@@ -3317,7 +3317,7 @@ class DescribeBiddingListRequest(AbstractModel):
3317
3317
  :type PageSize: int
3318
3318
  :param _Domain: 域名
3319
3319
  :type Domain: str
3320
- :param _Status: 2 竞价中 3 等待出价 4 交易失败 10 竞价阶段持有者赎回
3320
+ :param _Status: 2 竞价中 3 等待出价 4 竞价失败 10 竞价持有者赎回
3321
3321
  :type Status: list of int non-negative
3322
3322
  :param _SortField: 排序字段:BiddingEndTime 竞价结束时间
3323
3323
  BiddingPrice 我的价格
@@ -3510,7 +3510,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
3510
3510
  :type BiddingBondRefund: str
3511
3511
  :param _BiddingBondPrice: 保证金
3512
3512
  :type BiddingBondPrice: float
3513
- :param _Status: 状态:1 竞价中,2 待出价,3 竞价失败, 4 等待支付 5 等待转移, 6 转移中,7 交易成功,8 持有者索回,9 已违约
3513
+ :param _Status: 状态:5 等待支付 6 等待转移, 7 转移中,8 交易成功,11 尾款阶段持有者索回,12 已违约
3514
3514
  :type Status: int
3515
3515
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3516
3516
  :type RequestId: str
@@ -14898,14 +14898,14 @@ class EmbedUrlOption(AbstractModel):
14898
14898
  def __init__(self):
14899
14899
  r"""
14900
14900
  :param _ShowFlowDetailComponent: 合同详情预览,允许展示控件信息
14901
- <br/>true:允许在合同详情页展示控件
14902
- <br/>false:不允许在合同详情页展示控件
14903
- <br/>默认false,合同详情页不展示控件
14901
+ <ul>
14902
+ <li><b>true</b>:允许在合同详情页展示控件</li>
14903
+ <li><b>false</b>:(默认)不允许在合同详情页展示控件</li>
14904
+ </ul>
14904
14905
  :type ShowFlowDetailComponent: bool
14905
14906
  :param _ShowTemplateComponent: 模板预览,允许展示模板控件信息
14906
- <br/>true:允许在模板预览页展示控件
14907
- <br/>false:不允许在模板预览页展示控件
14908
- <br/>默认false,模板预览页不展示控件
14907
+ <ul><li> <b>true</b> :允许在模板预览页展示控件</li>
14908
+ <li> <b>false</b> :(默认)不允许在模板预览页展示控件</li></ul>
14909
14909
  :type ShowTemplateComponent: bool
14910
14910
  """
14911
14911
  self._ShowFlowDetailComponent = None
@@ -596,6 +596,9 @@ RESOURCEUNAVAILABLE_DOCKERUNAVAILABLE = 'ResourceUnavailable.DockerUnavailable'
596
596
  # 防火墙模板在使用中,不支持该操作。
597
597
  RESOURCEUNAVAILABLE_FIREWALLTEMPLATEINUSE = 'ResourceUnavailable.FirewallTemplateInUse'
598
598
 
599
+ # 当前套餐不支持通过API购买。
600
+ RESOURCEUNAVAILABLE_INVALIDPURCHASEREQUESTSOURCE = 'ResourceUnavailable.InvalidPurchaseRequestSource'
601
+
599
602
  # TAT agent不可用。
600
603
  RESOURCEUNAVAILABLE_TATAGENTUNAVAILABLE = 'ResourceUnavailable.TATAgentUnavailable'
601
604
 
@@ -412,6 +412,13 @@ class BackupInfo(AbstractModel):
412
412
  :type Status: int
413
413
  :param _BackupMethod: 备份方法,0-逻辑备份,1-物理备份
414
414
  :type BackupMethod: int
415
+ :param _BackId: 备份记录id
416
+ :type BackId: int
417
+ :param _DeleteTime: 备份删除时间
418
+ :type DeleteTime: str
419
+ :param _BackupRegion: 异地备份地域
420
+ 注意:此字段可能返回 null,表示取不到有效值。
421
+ :type BackupRegion: str
415
422
  """
416
423
  self._InstanceId = None
417
424
  self._BackupType = None
@@ -422,6 +429,9 @@ class BackupInfo(AbstractModel):
422
429
  self._EndTime = None
423
430
  self._Status = None
424
431
  self._BackupMethod = None
432
+ self._BackId = None
433
+ self._DeleteTime = None
434
+ self._BackupRegion = None
425
435
 
426
436
  @property
427
437
  def InstanceId(self):
@@ -495,6 +505,30 @@ class BackupInfo(AbstractModel):
495
505
  def BackupMethod(self, BackupMethod):
496
506
  self._BackupMethod = BackupMethod
497
507
 
508
+ @property
509
+ def BackId(self):
510
+ return self._BackId
511
+
512
+ @BackId.setter
513
+ def BackId(self, BackId):
514
+ self._BackId = BackId
515
+
516
+ @property
517
+ def DeleteTime(self):
518
+ return self._DeleteTime
519
+
520
+ @DeleteTime.setter
521
+ def DeleteTime(self, DeleteTime):
522
+ self._DeleteTime = DeleteTime
523
+
524
+ @property
525
+ def BackupRegion(self):
526
+ return self._BackupRegion
527
+
528
+ @BackupRegion.setter
529
+ def BackupRegion(self, BackupRegion):
530
+ self._BackupRegion = BackupRegion
531
+
498
532
 
499
533
  def _deserialize(self, params):
500
534
  self._InstanceId = params.get("InstanceId")
@@ -506,6 +540,9 @@ class BackupInfo(AbstractModel):
506
540
  self._EndTime = params.get("EndTime")
507
541
  self._Status = params.get("Status")
508
542
  self._BackupMethod = params.get("BackupMethod")
543
+ self._BackId = params.get("BackId")
544
+ self._DeleteTime = params.get("DeleteTime")
545
+ self._BackupRegion = params.get("BackupRegion")
509
546
  memeber_set = set(params.keys())
510
547
  for name, value in vars(self).items():
511
548
  property_name = name[1:]
@@ -5858,7 +5858,7 @@ class DescribeInstanceSecurityGroupRequest(AbstractModel):
5858
5858
 
5859
5859
  def __init__(self):
5860
5860
  r"""
5861
- :param _InstanceIds: 实例 ID 列表。例如;["crs-f2ho5rsz\n"]
5861
+ :param _InstanceIds: 实例 ID 列表,数组长度限制[0,100]。例如:["crs-f2ho5rsz\n"]
5862
5862
  :type InstanceIds: list of str
5863
5863
  """
5864
5864
  self._InstanceIds = None
@@ -7922,7 +7922,7 @@ class DescribeSlowLogResponse(AbstractModel):
7922
7922
  r"""
7923
7923
  :param _TotalCount: 慢查询总数。
7924
7924
  :type TotalCount: int
7925
- :param _InstanceSlowlogDetail: 该参数存在命名不规范问题,建议用参数InstanceSlowLogDetail取代。慢查询详情。
7925
+ :param _InstanceSlowlogDetail: 已废弃,该参数存在命名不规范问题,后续用参数InstanceSlowLogDetail取代。慢查询详情。
7926
7926
  :type InstanceSlowlogDetail: list of InstanceSlowlogDetail
7927
7927
  :param _InstanceSlowLogDetail: 慢查询详情。
7928
7928
  :type InstanceSlowLogDetail: list of InstanceSlowlogDetail
@@ -16940,9 +16940,12 @@ class TendisNodes(AbstractModel):
16940
16940
  :type NodeId: str
16941
16941
  :param _NodeRole: 节点角色
16942
16942
  :type NodeRole: str
16943
+ :param _ZoneId: 可用区 ID。
16944
+ :type ZoneId: int
16943
16945
  """
16944
16946
  self._NodeId = None
16945
16947
  self._NodeRole = None
16948
+ self._ZoneId = None
16946
16949
 
16947
16950
  @property
16948
16951
  def NodeId(self):
@@ -16960,10 +16963,19 @@ class TendisNodes(AbstractModel):
16960
16963
  def NodeRole(self, NodeRole):
16961
16964
  self._NodeRole = NodeRole
16962
16965
 
16966
+ @property
16967
+ def ZoneId(self):
16968
+ return self._ZoneId
16969
+
16970
+ @ZoneId.setter
16971
+ def ZoneId(self, ZoneId):
16972
+ self._ZoneId = ZoneId
16973
+
16963
16974
 
16964
16975
  def _deserialize(self, params):
16965
16976
  self._NodeId = params.get("NodeId")
16966
16977
  self._NodeRole = params.get("NodeRole")
16978
+ self._ZoneId = params.get("ZoneId")
16967
16979
  memeber_set = set(params.keys())
16968
16980
  for name, value in vars(self).items():
16969
16981
  property_name = name[1:]
@@ -1312,20 +1312,28 @@ class CompareTablesInfo(AbstractModel):
1312
1312
  def __init__(self):
1313
1313
  r"""
1314
1314
  :param _SrcTableClusterId: 源表格的集群id
1315
+ 注意:此字段可能返回 null,表示取不到有效值。
1315
1316
  :type SrcTableClusterId: str
1316
1317
  :param _SrcTableGroupId: 源表格的表格组id
1318
+ 注意:此字段可能返回 null,表示取不到有效值。
1317
1319
  :type SrcTableGroupId: str
1318
1320
  :param _SrcTableName: 源表格的表名
1321
+ 注意:此字段可能返回 null,表示取不到有效值。
1319
1322
  :type SrcTableName: str
1320
1323
  :param _DstTableClusterId: 目标表格的集群id
1324
+ 注意:此字段可能返回 null,表示取不到有效值。
1321
1325
  :type DstTableClusterId: str
1322
1326
  :param _DstTableGroupId: 目标表格的表格组id
1327
+ 注意:此字段可能返回 null,表示取不到有效值。
1323
1328
  :type DstTableGroupId: str
1324
1329
  :param _DstTableName: 目标表格的表名
1330
+ 注意:此字段可能返回 null,表示取不到有效值。
1325
1331
  :type DstTableName: str
1326
1332
  :param _SrcTableInstanceId: 源表格的实例id
1333
+ 注意:此字段可能返回 null,表示取不到有效值。
1327
1334
  :type SrcTableInstanceId: str
1328
1335
  :param _DstTableInstanceId: 目标表格的实例id
1336
+ 注意:此字段可能返回 null,表示取不到有效值。
1329
1337
  :type DstTableInstanceId: str
1330
1338
  """
1331
1339
  self._SrcTableClusterId = None
@@ -5321,16 +5329,22 @@ class KafkaInfo(AbstractModel):
5321
5329
  def __init__(self):
5322
5330
  r"""
5323
5331
  :param _Address: Kafka address
5332
+ 注意:此字段可能返回 null,表示取不到有效值。
5324
5333
  :type Address: str
5325
5334
  :param _Topic: Kafka topic
5335
+ 注意:此字段可能返回 null,表示取不到有效值。
5326
5336
  :type Topic: str
5327
5337
  :param _User: kafka username
5338
+ 注意:此字段可能返回 null,表示取不到有效值。
5328
5339
  :type User: str
5329
5340
  :param _Password: kafka password
5341
+ 注意:此字段可能返回 null,表示取不到有效值。
5330
5342
  :type Password: str
5331
5343
  :param _Instance: ckafka实例
5344
+ 注意:此字段可能返回 null,表示取不到有效值。
5332
5345
  :type Instance: str
5333
5346
  :param _IsVpc: 是否走VPC
5347
+ 注意:此字段可能返回 null,表示取不到有效值。
5334
5348
  :type IsVpc: int
5335
5349
  """
5336
5350
  self._Address = None
@@ -8768,6 +8782,9 @@ class SnapshotResult(AbstractModel):
8768
8782
  :param _SnapshotStatus: 快照状态,0 生成中 1 正常 2 删除中 3 已失效 4 回档使用中
8769
8783
  注意:此字段可能返回 null,表示取不到有效值。
8770
8784
  :type SnapshotStatus: int
8785
+ :param _ApplicationId: 申请单ID
8786
+ 注意:此字段可能返回 null,表示取不到有效值。
8787
+ :type ApplicationId: str
8771
8788
  """
8772
8789
  self._TableGroupId = None
8773
8790
  self._TableName = None
@@ -8779,6 +8796,7 @@ class SnapshotResult(AbstractModel):
8779
8796
  self._SnapshotCreateTime = None
8780
8797
  self._SnapshotSize = None
8781
8798
  self._SnapshotStatus = None
8799
+ self._ApplicationId = None
8782
8800
 
8783
8801
  @property
8784
8802
  def TableGroupId(self):
@@ -8860,6 +8878,14 @@ class SnapshotResult(AbstractModel):
8860
8878
  def SnapshotStatus(self, SnapshotStatus):
8861
8879
  self._SnapshotStatus = SnapshotStatus
8862
8880
 
8881
+ @property
8882
+ def ApplicationId(self):
8883
+ return self._ApplicationId
8884
+
8885
+ @ApplicationId.setter
8886
+ def ApplicationId(self, ApplicationId):
8887
+ self._ApplicationId = ApplicationId
8888
+
8863
8889
 
8864
8890
  def _deserialize(self, params):
8865
8891
  self._TableGroupId = params.get("TableGroupId")
@@ -8874,6 +8900,7 @@ class SnapshotResult(AbstractModel):
8874
8900
  self._SnapshotCreateTime = params.get("SnapshotCreateTime")
8875
8901
  self._SnapshotSize = params.get("SnapshotSize")
8876
8902
  self._SnapshotStatus = params.get("SnapshotStatus")
8903
+ self._ApplicationId = params.get("ApplicationId")
8877
8904
  memeber_set = set(params.keys())
8878
8905
  for name, value in vars(self).items():
8879
8906
  property_name = name[1:]
@@ -10250,6 +10277,15 @@ class TaskInfoNew(AbstractModel):
10250
10277
  :type Operator: str
10251
10278
  :param _Content: 任务详情
10252
10279
  :type Content: str
10280
+ :param _TableGroupId: 表格组ID
10281
+ 注意:此字段可能返回 null,表示取不到有效值。
10282
+ :type TableGroupId: str
10283
+ :param _TableGroupName: 表格组名称
10284
+ 注意:此字段可能返回 null,表示取不到有效值。
10285
+ :type TableGroupName: str
10286
+ :param _TableName: 表名称
10287
+ 注意:此字段可能返回 null,表示取不到有效值。
10288
+ :type TableName: str
10253
10289
  """
10254
10290
  self._TaskId = None
10255
10291
  self._TaskType = None
@@ -10261,6 +10297,9 @@ class TaskInfoNew(AbstractModel):
10261
10297
  self._UpdateTime = None
10262
10298
  self._Operator = None
10263
10299
  self._Content = None
10300
+ self._TableGroupId = None
10301
+ self._TableGroupName = None
10302
+ self._TableName = None
10264
10303
 
10265
10304
  @property
10266
10305
  def TaskId(self):
@@ -10342,6 +10381,30 @@ class TaskInfoNew(AbstractModel):
10342
10381
  def Content(self, Content):
10343
10382
  self._Content = Content
10344
10383
 
10384
+ @property
10385
+ def TableGroupId(self):
10386
+ return self._TableGroupId
10387
+
10388
+ @TableGroupId.setter
10389
+ def TableGroupId(self, TableGroupId):
10390
+ self._TableGroupId = TableGroupId
10391
+
10392
+ @property
10393
+ def TableGroupName(self):
10394
+ return self._TableGroupName
10395
+
10396
+ @TableGroupName.setter
10397
+ def TableGroupName(self, TableGroupName):
10398
+ self._TableGroupName = TableGroupName
10399
+
10400
+ @property
10401
+ def TableName(self):
10402
+ return self._TableName
10403
+
10404
+ @TableName.setter
10405
+ def TableName(self, TableName):
10406
+ self._TableName = TableName
10407
+
10345
10408
 
10346
10409
  def _deserialize(self, params):
10347
10410
  self._TaskId = params.get("TaskId")
@@ -10354,6 +10417,9 @@ class TaskInfoNew(AbstractModel):
10354
10417
  self._UpdateTime = params.get("UpdateTime")
10355
10418
  self._Operator = params.get("Operator")
10356
10419
  self._Content = params.get("Content")
10420
+ self._TableGroupId = params.get("TableGroupId")
10421
+ self._TableGroupName = params.get("TableGroupName")
10422
+ self._TableName = params.get("TableName")
10357
10423
  memeber_set = set(params.keys())
10358
10424
  for name, value in vars(self).items():
10359
10425
  property_name = name[1:]
@@ -10238,18 +10238,26 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
10238
10238
 
10239
10239
  @property
10240
10240
  def IMAdminUserId(self):
10241
+ warnings.warn("parameter `IMAdminUserId` is deprecated", DeprecationWarning)
10242
+
10241
10243
  return self._IMAdminUserId
10242
10244
 
10243
10245
  @IMAdminUserId.setter
10244
10246
  def IMAdminUserId(self, IMAdminUserId):
10247
+ warnings.warn("parameter `IMAdminUserId` is deprecated", DeprecationWarning)
10248
+
10245
10249
  self._IMAdminUserId = IMAdminUserId
10246
10250
 
10247
10251
  @property
10248
10252
  def IMAdminUserSig(self):
10253
+ warnings.warn("parameter `IMAdminUserSig` is deprecated", DeprecationWarning)
10254
+
10249
10255
  return self._IMAdminUserSig
10250
10256
 
10251
10257
  @IMAdminUserSig.setter
10252
10258
  def IMAdminUserSig(self, IMAdminUserSig):
10259
+ warnings.warn("parameter `IMAdminUserSig` is deprecated", DeprecationWarning)
10260
+
10253
10261
  self._IMAdminUserSig = IMAdminUserSig
10254
10262
 
10255
10263
  @property
@@ -974,9 +974,7 @@ class TrtcClient(AbstractClient):
974
974
  - 拉取全房间的流。
975
975
  - 拉取特定用户的流。
976
976
 
977
- 服务端实时下发字幕和会议记录有两种方式,通过IMAdminUserId和IMAdminUserSig字段控制:
978
- - 如果填写IMAdminUserId和IMAdminUserSig,服务端会调用IM的[发送群组消息](https://cloud.tencent.com/document/product/269/1629)API来向端上实时下发消息。客户端只需监听群组消息的回调即可,比如[web端回调](https://cloud.tencent.com/document/product/269/75319)。
979
- - 如果不填写IMAdminUserId和IMAdminUserSig,服务端使用TRTC自定义消息通道下发消息,CmdId固定是1。客户端只需监听自定义消息的回调即可,比如[c++回调](https://cloud.tencent.com/document/product/647/79637#4cd82f4edb24992a15a25187089e1565)。
977
+ 服务端通过TRTC的自定义消息实时下发字幕和会议记录,CmdId固定是1。客户端只需监听自定义消息的回调即可,比如[c++回调](https://cloud.tencent.com/document/product/647/79637#4cd82f4edb24992a15a25187089e1565)。其他客户端比如安卓、Web等同样可在该链接处找到。
980
978
 
981
979
  服务端实时下发的消息是JSON字符串,实时字幕具体格式如下:
982
980
  `{
@@ -13338,11 +13338,22 @@ class DescribePublicAddressConfigResponse(AbstractModel):
13338
13338
 
13339
13339
  def __init__(self):
13340
13340
  r"""
13341
+ :param _Result: 公网地址信息
13342
+ :type Result: :class:`tencentcloud.tse.v20201207.models.DescribePublicAddressConfigResult`
13341
13343
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13342
13344
  :type RequestId: str
13343
13345
  """
13346
+ self._Result = None
13344
13347
  self._RequestId = None
13345
13348
 
13349
+ @property
13350
+ def Result(self):
13351
+ return self._Result
13352
+
13353
+ @Result.setter
13354
+ def Result(self, Result):
13355
+ self._Result = Result
13356
+
13346
13357
  @property
13347
13358
  def RequestId(self):
13348
13359
  return self._RequestId
@@ -13353,9 +13364,77 @@ class DescribePublicAddressConfigResponse(AbstractModel):
13353
13364
 
13354
13365
 
13355
13366
  def _deserialize(self, params):
13367
+ if params.get("Result") is not None:
13368
+ self._Result = DescribePublicAddressConfigResult()
13369
+ self._Result._deserialize(params.get("Result"))
13356
13370
  self._RequestId = params.get("RequestId")
13357
13371
 
13358
13372
 
13373
+ class DescribePublicAddressConfigResult(AbstractModel):
13374
+ """获取云原生api网关公网地址信息响应结果
13375
+
13376
+ """
13377
+
13378
+ def __init__(self):
13379
+ r"""
13380
+ :param _GatewayId: 网关实例id
13381
+ 注意:此字段可能返回 null,表示取不到有效值。
13382
+ :type GatewayId: str
13383
+ :param _ConfigList: 公网地址信息
13384
+ 注意:此字段可能返回 null,表示取不到有效值。
13385
+ :type ConfigList: list of PublicAddressConfig
13386
+ :param _TotalCount: 总个数
13387
+ 注意:此字段可能返回 null,表示取不到有效值。
13388
+ :type TotalCount: int
13389
+ """
13390
+ self._GatewayId = None
13391
+ self._ConfigList = None
13392
+ self._TotalCount = None
13393
+
13394
+ @property
13395
+ def GatewayId(self):
13396
+ return self._GatewayId
13397
+
13398
+ @GatewayId.setter
13399
+ def GatewayId(self, GatewayId):
13400
+ self._GatewayId = GatewayId
13401
+
13402
+ @property
13403
+ def ConfigList(self):
13404
+ return self._ConfigList
13405
+
13406
+ @ConfigList.setter
13407
+ def ConfigList(self, ConfigList):
13408
+ self._ConfigList = ConfigList
13409
+
13410
+ @property
13411
+ def TotalCount(self):
13412
+ return self._TotalCount
13413
+
13414
+ @TotalCount.setter
13415
+ def TotalCount(self, TotalCount):
13416
+ self._TotalCount = TotalCount
13417
+
13418
+
13419
+ def _deserialize(self, params):
13420
+ self._GatewayId = params.get("GatewayId")
13421
+ if params.get("ConfigList") is not None:
13422
+ self._ConfigList = []
13423
+ for item in params.get("ConfigList"):
13424
+ obj = PublicAddressConfig()
13425
+ obj._deserialize(item)
13426
+ self._ConfigList.append(obj)
13427
+ self._TotalCount = params.get("TotalCount")
13428
+ memeber_set = set(params.keys())
13429
+ for name, value in vars(self).items():
13430
+ property_name = name[1:]
13431
+ if property_name in memeber_set:
13432
+ memeber_set.remove(property_name)
13433
+ if len(memeber_set) > 0:
13434
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
13435
+
13436
+
13437
+
13359
13438
  class DescribePublicNetworkRequest(AbstractModel):
13360
13439
  """DescribePublicNetwork请求参数结构体
13361
13440
 
@@ -22004,6 +22083,92 @@ class PolarisLimiterAddress(AbstractModel):
22004
22083
 
22005
22084
 
22006
22085
 
22086
+ class PublicAddressConfig(AbstractModel):
22087
+ """公网地址信息
22088
+
22089
+ """
22090
+
22091
+ def __init__(self):
22092
+ r"""
22093
+ :param _Vip: 公网 ip
22094
+ 注意:此字段可能返回 null,表示取不到有效值。
22095
+ :type Vip: str
22096
+ :param _InternetMaxBandwidthOut: 公网最大带宽
22097
+ 注意:此字段可能返回 null,表示取不到有效值。
22098
+ :type InternetMaxBandwidthOut: int
22099
+ :param _GroupId: 公网所属分组 id
22100
+ 注意:此字段可能返回 null,表示取不到有效值。
22101
+ :type GroupId: str
22102
+ :param _GroupName: 公网所属分组名
22103
+ 注意:此字段可能返回 null,表示取不到有效值。
22104
+ :type GroupName: str
22105
+ :param _NetworkId: 公网负载均衡 id
22106
+ 注意:此字段可能返回 null,表示取不到有效值。
22107
+ :type NetworkId: str
22108
+ """
22109
+ self._Vip = None
22110
+ self._InternetMaxBandwidthOut = None
22111
+ self._GroupId = None
22112
+ self._GroupName = None
22113
+ self._NetworkId = None
22114
+
22115
+ @property
22116
+ def Vip(self):
22117
+ return self._Vip
22118
+
22119
+ @Vip.setter
22120
+ def Vip(self, Vip):
22121
+ self._Vip = Vip
22122
+
22123
+ @property
22124
+ def InternetMaxBandwidthOut(self):
22125
+ return self._InternetMaxBandwidthOut
22126
+
22127
+ @InternetMaxBandwidthOut.setter
22128
+ def InternetMaxBandwidthOut(self, InternetMaxBandwidthOut):
22129
+ self._InternetMaxBandwidthOut = InternetMaxBandwidthOut
22130
+
22131
+ @property
22132
+ def GroupId(self):
22133
+ return self._GroupId
22134
+
22135
+ @GroupId.setter
22136
+ def GroupId(self, GroupId):
22137
+ self._GroupId = GroupId
22138
+
22139
+ @property
22140
+ def GroupName(self):
22141
+ return self._GroupName
22142
+
22143
+ @GroupName.setter
22144
+ def GroupName(self, GroupName):
22145
+ self._GroupName = GroupName
22146
+
22147
+ @property
22148
+ def NetworkId(self):
22149
+ return self._NetworkId
22150
+
22151
+ @NetworkId.setter
22152
+ def NetworkId(self, NetworkId):
22153
+ self._NetworkId = NetworkId
22154
+
22155
+
22156
+ def _deserialize(self, params):
22157
+ self._Vip = params.get("Vip")
22158
+ self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
22159
+ self._GroupId = params.get("GroupId")
22160
+ self._GroupName = params.get("GroupName")
22161
+ self._NetworkId = params.get("NetworkId")
22162
+ memeber_set = set(params.keys())
22163
+ for name, value in vars(self).items():
22164
+ property_name = name[1:]
22165
+ if property_name in memeber_set:
22166
+ memeber_set.remove(property_name)
22167
+ if len(memeber_set) > 0:
22168
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
22169
+
22170
+
22171
+
22007
22172
  class PublishConfigFilesRequest(AbstractModel):
22008
22173
  """PublishConfigFiles请求参数结构体
22009
22174
 
@@ -26781,6 +26781,9 @@ class FileConfigRelease(AbstractModel):
26781
26781
  :param _ClusterName: 集群名称
26782
26782
  注意:此字段可能返回 null,表示取不到有效值。
26783
26783
  :type ClusterName: str
26784
+ :param _ConfigCenters: 配置中心发布详情
26785
+ 注意:此字段可能返回 null,表示取不到有效值。
26786
+ :type ConfigCenters: list of TsfConfigCenter
26784
26787
  """
26785
26788
  self._ConfigReleaseId = None
26786
26789
  self._ConfigId = None
@@ -26794,6 +26797,7 @@ class FileConfigRelease(AbstractModel):
26794
26797
  self._NamespaceName = None
26795
26798
  self._ClusterId = None
26796
26799
  self._ClusterName = None
26800
+ self._ConfigCenters = None
26797
26801
 
26798
26802
  @property
26799
26803
  def ConfigReleaseId(self):
@@ -26891,6 +26895,14 @@ class FileConfigRelease(AbstractModel):
26891
26895
  def ClusterName(self, ClusterName):
26892
26896
  self._ClusterName = ClusterName
26893
26897
 
26898
+ @property
26899
+ def ConfigCenters(self):
26900
+ return self._ConfigCenters
26901
+
26902
+ @ConfigCenters.setter
26903
+ def ConfigCenters(self, ConfigCenters):
26904
+ self._ConfigCenters = ConfigCenters
26905
+
26894
26906
 
26895
26907
  def _deserialize(self, params):
26896
26908
  self._ConfigReleaseId = params.get("ConfigReleaseId")
@@ -26905,6 +26917,12 @@ class FileConfigRelease(AbstractModel):
26905
26917
  self._NamespaceName = params.get("NamespaceName")
26906
26918
  self._ClusterId = params.get("ClusterId")
26907
26919
  self._ClusterName = params.get("ClusterName")
26920
+ if params.get("ConfigCenters") is not None:
26921
+ self._ConfigCenters = []
26922
+ for item in params.get("ConfigCenters"):
26923
+ obj = TsfConfigCenter()
26924
+ obj._deserialize(item)
26925
+ self._ConfigCenters.append(obj)
26908
26926
  memeber_set = set(params.keys())
26909
26927
  for name, value in vars(self).items():
26910
26928
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1169
3
+ Version: 3.0.1170
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
50
50
  QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
51
51
  QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
52
52
  QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
53
- tencentcloud/__init__.py,sha256=0eKIRC_fwKhvmvrnn8oJ2eHmcDNX4XnAf_eVOzPOyaY,631
53
+ tencentcloud/__init__.py,sha256=uKyoK9SyUVaenMDfdNHQCU9-OGqk-MNmsg0RsEg0cc4,631
54
54
  tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
@@ -267,7 +267,7 @@ tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
267
267
  tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
268
  tencentcloud/cdb/v20170320/cdb_client.py,sha256=MQrKzYCsjhUqNcTGI3vCTAFixABVRXQ2glJXjwkhNgM,164573
269
269
  tencentcloud/cdb/v20170320/errorcodes.py,sha256=SgCBel9EN39hxH5coy4lHDZb4at_Fj1i_Cy4FrxClQ0,20715
270
- tencentcloud/cdb/v20170320/models.py,sha256=MOs45yZvtHyg3YKjj2eKRbYfIdUXrKKmo9eHpmZmM0I,916341
270
+ tencentcloud/cdb/v20170320/models.py,sha256=5uBzv8Cl47evuogbQz2pbkRyx_TLrSyUaiwCHerIM8Q,916442
271
271
  tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
272
  tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
273
273
  tencentcloud/cdc/v20201214/cdc_client.py,sha256=W0FsdSylHAFKGV5OuxvhLySw-qyGrpVuHJXilqh3jnE,20467
@@ -280,14 +280,14 @@ tencentcloud/cdn/v20180606/errorcodes.py,sha256=9Nu4v78JfK2Uz9JCkB5mCrOLnfvnUakJ
280
280
  tencentcloud/cdn/v20180606/models.py,sha256=dM-oOTglMUWY0471SkHt9br7r0jSpwoh1tuJAC0LD3M,864565
281
281
  tencentcloud/cds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
282
  tencentcloud/cds/v20180420/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
- tencentcloud/cds/v20180420/cds_client.py,sha256=v4Q6ArXVRzUGG002LPypgfdolRqaRTwdb4lE7Wsl4ko,6950
283
+ tencentcloud/cds/v20180420/cds_client.py,sha256=_TtDZwG3bsTvkER_z61tkaQ1oGCl5UMbatcK-l2RrpY,5937
284
284
  tencentcloud/cds/v20180420/errorcodes.py,sha256=Ed_74EneNf3XeL2pqGL8M5l9JnqSjQOYjewjFCIxdJQ,966
285
- tencentcloud/cds/v20180420/models.py,sha256=jPzgvczLcDoT6jn51084-hiwUjh2K9DW_hgSM_kQgAY,25586
285
+ tencentcloud/cds/v20180420/models.py,sha256=SKXrcDfQ9z5Rh2rFeGN2pLxm3v5oXQzr4kNd__TyA8g,24105
286
286
  tencentcloud/cdwch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
287
  tencentcloud/cdwch/v20200915/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
288
  tencentcloud/cdwch/v20200915/cdwch_client.py,sha256=tUD5RB8TUtyGKtJqjGTv6mgkct4hkqLKEPepBgo87gs,25442
289
289
  tencentcloud/cdwch/v20200915/errorcodes.py,sha256=i5AghJAxSuSI3xB3eKtkZA1cnY_dQYmNEeTnn2ePSFM,703
290
- tencentcloud/cdwch/v20200915/models.py,sha256=7gtY-fWEPcdIOs6C-ebbMrxNAfsIxnsKfY6hM_-NbY0,172024
290
+ tencentcloud/cdwch/v20200915/models.py,sha256=9MfHjl3IFLJt4kiSBdp9na0Nuk6XGb7vj1ktkdFEmHA,173419
291
291
  tencentcloud/cdwdoris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
292
  tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
293
  tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=b5_LhuUzCX77xiz9_BRuzMq1gWLaZLDDJhpqIVovdqQ,16479
@@ -448,9 +448,9 @@ tencentcloud/cws/v20180312/errorcodes.py,sha256=T4gxxbmFJ0qJrkF9IPU3m6AaRKtiqTAg
448
448
  tencentcloud/cws/v20180312/models.py,sha256=pczVx3k_Y5wzVxa-CTPtF5_zsu_2OkWELZBhUXzGlFE,92049
449
449
  tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
450
450
  tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
451
- tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=bQDT8J5OdlglCfMGOtdNZGCYOIWdhgXiyTWG5XB5yxU,131199
451
+ tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=xz0Z-X98b_nuonRwmdsi7uz1EbY2ixcE6c3K653BNO0,131245
452
452
  tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=CjG7tAFBV_8kH7p2jrCidFtyMI1OtZO4OLGDJwjnKsc,11788
453
- tencentcloud/cynosdb/v20190107/models.py,sha256=sWwCe0xz8fJdkYpzvj7oRhR8bEnhMUYWJNnQmTXvJ8M,865988
453
+ tencentcloud/cynosdb/v20190107/models.py,sha256=Ysz9nqlskJnA-tW_Mn0Q70HBBrDKmTXQK45Tu0zU6Rg,868333
454
454
  tencentcloud/dasb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
455
  tencentcloud/dasb/v20191018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
456
456
  tencentcloud/dasb/v20191018/dasb_client.py,sha256=8iT84XIF9Ym1FrtOc7jQFQ_Ta5cZyo5JD1vn7Dj6pDE,55463
@@ -504,7 +504,7 @@ tencentcloud/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
504
504
  tencentcloud/domain/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
505
505
  tencentcloud/domain/v20180808/domain_client.py,sha256=KGQm9eBakp-A3J4BiUyIxBRUEcE527o0q7OsPiRu6oY,51735
506
506
  tencentcloud/domain/v20180808/errorcodes.py,sha256=6-j46MaQVVliZMTkcgNoVw8_zIddWYkwxWxJTLJWuxc,12221
507
- tencentcloud/domain/v20180808/models.py,sha256=NzeX0nyCLfZEEJ9m_-X2RFMfgGCNg7FqExEJqLJj-ms,257793
507
+ tencentcloud/domain/v20180808/models.py,sha256=mu6KiSLFmlQ6oPtQPMDmTdI6KdKOeJkdbSbiaSvGd38,257881
508
508
  tencentcloud/drm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
509
509
  tencentcloud/drm/v20181115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
510
510
  tencentcloud/drm/v20181115/drm_client.py,sha256=dFOHbpQ4Z8qU-HWTIsLgxXjLp8L8abeR2rWH31Oq6R0,11888
@@ -582,7 +582,7 @@ tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
582
582
  tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
583
583
  tencentcloud/ess/v20201111/errorcodes.py,sha256=2n89U4czb0w4J8VyN7uMdYmbK8tGlK8nJHuVZbGrKRg,25736
584
584
  tencentcloud/ess/v20201111/ess_client.py,sha256=mFkVYZ5-oGZOJn3zUpAQsigm1HPChL2BXZLXvNK1aPA,139075
585
- tencentcloud/ess/v20201111/models.py,sha256=p9QxM_7qgZgofrbrStGSpz_LkiSlpFAjz8q2FM5PhrY,833391
585
+ tencentcloud/ess/v20201111/models.py,sha256=PYzfCeIUnpj3BXCUYswtoZd9eZEW-qibtsnctkUsWbQ,833379
586
586
  tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
587
587
  tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
588
588
  tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
@@ -797,7 +797,7 @@ tencentcloud/lcic/v20220817/lcic_client.py,sha256=3fLEyyD9Ukm75VIMR4AxnR5NAEdI7b
797
797
  tencentcloud/lcic/v20220817/models.py,sha256=egtIJ7Q_Sa7pcia5i1aM0_izAIgUUhdUN_vdAk15wFM,303337
798
798
  tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
799
799
  tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
800
- tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=kbtWnJ_Kq1_ugU5A1WvT8DWtlcAgw_De06tBrUiZNwQ,31641
800
+ tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=1xoZvq9xaZmLyyr_cUpHq45Dj8zM9K8ek-6OWJoHhUs,31786
801
801
  tencentcloud/lighthouse/v20200324/lighthouse_client.py,sha256=BCVdDjmx9-g2GbafOH70nmpvRR_4c4mf6MYY59kltvo,123948
802
802
  tencentcloud/lighthouse/v20200324/models.py,sha256=TgrlT4BnLb63viXCZ4uLZDg98ppKaipxi-8TqVsYAh8,485487
803
803
  tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -866,7 +866,7 @@ tencentcloud/mongodb/v20180408/models.py,sha256=J-4PKHcnuJueHQ6YfrAHugV3ImK_jrgn
866
866
  tencentcloud/mongodb/v20180408/mongodb_client.py,sha256=LPLvUOeg8pyXAn1k5RdZaqWrnYSQ0aXJ-ioTuE92R3Q,13654
867
867
  tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
868
868
  tencentcloud/mongodb/v20190725/errorcodes.py,sha256=j2mowQzaQ7Xqyuy5tmLi2nJlO6iZRB1G50bkyEIilVk,7774
869
- tencentcloud/mongodb/v20190725/models.py,sha256=nGmJXJflovY1wzy9UZe-kd2AxN-AzlqmoNG8gKLwg2U,272023
869
+ tencentcloud/mongodb/v20190725/models.py,sha256=Cdm5ER5nX_EP5M9NirtPjxlwmJEaiP91CUAat_5pE7c,273063
870
870
  tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=ZwT9e8-GCGyCHP8qepOSthQ2eX83tLx1qbmzcG0UDUI,42653
871
871
  tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
872
872
  tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -965,7 +965,7 @@ tencentcloud/rce/v20201103/rce_client.py,sha256=HIwYdqWmTYoWccklsPSzZB7AbEuXi5qr
965
965
  tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
966
966
  tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
967
967
  tencentcloud/redis/v20180412/errorcodes.py,sha256=WK4ma6-bD4uo_6-uEMOkKjCVPpu4IEZkrONWPc0pf-k,12533
968
- tencentcloud/redis/v20180412/models.py,sha256=Eql1Zg5W3hpHIT--MaZ06uEwvISDVDmSBsdqsTiYLls,526910
968
+ tencentcloud/redis/v20180412/models.py,sha256=-iz6V3UOL35TySZAWLDYThmsS2wD7o2meZzE5TS5ZD0,527236
969
969
  tencentcloud/redis/v20180412/redis_client.py,sha256=IJGc05Ex1cnYV4YpvjoBYkjRRLCngcR3W2Z703pKXVA,97735
970
970
  tencentcloud/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
971
971
  tencentcloud/region/v20220627/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1113,7 +1113,7 @@ tencentcloud/tbp/v20190627/tbp_client.py,sha256=3BqmP_GYnoz4qaR1TsAH_W92KJJzuoXv
1113
1113
  tencentcloud/tcaplusdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1114
1114
  tencentcloud/tcaplusdb/v20190823/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1115
1115
  tencentcloud/tcaplusdb/v20190823/errorcodes.py,sha256=IPoHxrhUGHp8Jbgda591KJUj9pMtUm_YH1RpKQtpvIY,3614
1116
- tencentcloud/tcaplusdb/v20190823/models.py,sha256=aBP13VeJ274wxh99XhQBMe6CWM_mdqUmJFG-XGh32Go,315061
1116
+ tencentcloud/tcaplusdb/v20190823/models.py,sha256=CiUYoi_1oRlAZlIzt7aqc_QIi8BwIPZPndPAVC1reHk,317655
1117
1117
  tencentcloud/tcaplusdb/v20190823/tcaplusdb_client.py,sha256=nrtSJ9L4fxITtFM6IfifHySYXRrmXg8PaZ7o7kyHWjM,49203
1118
1118
  tencentcloud/tcb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1119
1119
  tencentcloud/tcb/v20180608/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1306,17 +1306,17 @@ tencentcloud/trro/v20220325/trro_client.py,sha256=UMXZ_jOKKI2_cydbscFAPxqVfSUpUm
1306
1306
  tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1307
1307
  tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1308
1308
  tencentcloud/trtc/v20190722/errorcodes.py,sha256=pj8liwEqi-6N8RLQ9nBjYPmOueQHif8WlwzVOLR5RYc,11019
1309
- tencentcloud/trtc/v20190722/models.py,sha256=gfqM3s7ZRjohIslpRH4hpu4HbJ-xU7g3IDFrXeJmXuE,367653
1310
- tencentcloud/trtc/v20190722/trtc_client.py,sha256=o2RI6zx8svsSrRJwZBdEAkiUuHdGaVmNlSUi7wMsFsg,85727
1309
+ tencentcloud/trtc/v20190722/models.py,sha256=EXNsTFiEwZ-aSCuCf6OlJOsluUCTLOup2hXDwNgq8GI,368003
1310
+ tencentcloud/trtc/v20190722/trtc_client.py,sha256=Ejkxfigb4LDQnNh2Pn5O8tGF_NIDzN0GnVIND0GGNzQ,85328
1311
1311
  tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1312
1312
  tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1313
1313
  tencentcloud/tse/v20201207/errorcodes.py,sha256=HVL21WZbHbQ-ti83Y7kcle8DhijhQB8k6LE3AIRm_t8,6304
1314
- tencentcloud/tse/v20201207/models.py,sha256=cYrSU6s4yUz85xDNTydCVNg3clVdxJHRODSRGdNa0yw,711107
1314
+ tencentcloud/tse/v20201207/models.py,sha256=wkIXoot1FUeUgWtIdP_xV8_5c_DeMYWI7hiEsgm6mcY,716071
1315
1315
  tencentcloud/tse/v20201207/tse_client.py,sha256=9vP554ZIbawil0k1vB-MtRsmvrJQlS2Qu0O-1fdWjwk,108580
1316
1316
  tencentcloud/tsf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1317
1317
  tencentcloud/tsf/v20180326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1318
1318
  tencentcloud/tsf/v20180326/errorcodes.py,sha256=-soquaTLpsunq50PeXUvprkwQvZaU8zffLC7bL0jbHE,51334
1319
- tencentcloud/tsf/v20180326/models.py,sha256=j3AWI-0bFVo7ZxX6_YLMUdRAuCda2UzQ9HOhtuGcxJU,1346801
1319
+ tencentcloud/tsf/v20180326/models.py,sha256=Lg3gYrwjZ7d-4XizqKX_mICbn7wIz1UVxWiDXi4vnI4,1347474
1320
1320
  tencentcloud/tsf/v20180326/tsf_client.py,sha256=DmhDhSHnzYZG4nHGhiABX2MZSlDHpDEnY6DADUhNM6c,198907
1321
1321
  tencentcloud/tsw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1322
1322
  tencentcloud/tsw/v20200924/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1434,8 +1434,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1434
1434
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1435
1435
  tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
1436
1436
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1437
- tencentcloud_sdk_python-3.0.1169.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1438
- tencentcloud_sdk_python-3.0.1169.dist-info/METADATA,sha256=4_MAtKN2DE8vA9cuaX9gfkoBBA8iW8BGzHrW87dHgnk,1511
1439
- tencentcloud_sdk_python-3.0.1169.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1440
- tencentcloud_sdk_python-3.0.1169.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1441
- tencentcloud_sdk_python-3.0.1169.dist-info/RECORD,,
1437
+ tencentcloud_sdk_python-3.0.1170.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1438
+ tencentcloud_sdk_python-3.0.1170.dist-info/METADATA,sha256=Z5IUdhf300ew3DiJkQqW90bo3VQGXVj1UdkTGfTVOsQ,1511
1439
+ tencentcloud_sdk_python-3.0.1170.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1440
+ tencentcloud_sdk_python-3.0.1170.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1441
+ tencentcloud_sdk_python-3.0.1170.dist-info/RECORD,,