tencentcloud-sdk-python 3.0.1073__py2.py3-none-any.whl → 3.0.1074__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/antiddos/v20200309/models.py +27 -1
- tencentcloud/dts/v20211206/models.py +14 -1
- tencentcloud/faceid/v20180301/models.py +24 -0
- tencentcloud/monitor/v20180724/models.py +1105 -96
- tencentcloud/monitor/v20180724/monitor_client.py +118 -0
- tencentcloud/ocr/v20181119/models.py +24 -0
- tencentcloud/rum/v20210622/models.py +0 -246
- tencentcloud/rum/v20210622/rum_client.py +0 -69
- tencentcloud/tcb/v20180608/models.py +9 -0
- tencentcloud/tdid/v20210519/errorcodes.py +18 -0
- tencentcloud/tdid/v20210519/models.py +1293 -87
- tencentcloud/tdid/v20210519/tdid_client.py +214 -7
- tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
- tencentcloud/tdmq/v20200217/models.py +261 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +2 -2
- tencentcloud/tse/v20201207/models.py +1 -1
- tencentcloud/tsf/v20180326/models.py +1 -1
- {tencentcloud_sdk_python-3.0.1073.dist-info → tencentcloud_sdk_python-3.0.1074.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1073.dist-info → tencentcloud_sdk_python-3.0.1074.dist-info}/RECORD +24 -24
- {tencentcloud_sdk_python-3.0.1073.dist-info → tencentcloud_sdk_python-3.0.1074.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1073.dist-info → tencentcloud_sdk_python-3.0.1074.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1073.dist-info → tencentcloud_sdk_python-3.0.1074.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1071,6 +1071,9 @@ class BGPInstance(AbstractModel):
|
|
|
1071
1071
|
:param _BasicPlusFlag: 是否是基础防护加强版 0: 不是 1: 是
|
|
1072
1072
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1073
1073
|
:type BasicPlusFlag: int
|
|
1074
|
+
:param _PlanCntFlag: 是否是商业模式优化-普惠版
|
|
1075
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1076
|
+
:type PlanCntFlag: int
|
|
1074
1077
|
"""
|
|
1075
1078
|
self._InstanceDetail = None
|
|
1076
1079
|
self._SpecificationLimit = None
|
|
@@ -1094,6 +1097,7 @@ class BGPInstance(AbstractModel):
|
|
|
1094
1097
|
self._GiftServiceBandWidth = None
|
|
1095
1098
|
self._ModifyTime = None
|
|
1096
1099
|
self._BasicPlusFlag = None
|
|
1100
|
+
self._PlanCntFlag = None
|
|
1097
1101
|
|
|
1098
1102
|
@property
|
|
1099
1103
|
def InstanceDetail(self):
|
|
@@ -1271,6 +1275,14 @@ class BGPInstance(AbstractModel):
|
|
|
1271
1275
|
def BasicPlusFlag(self, BasicPlusFlag):
|
|
1272
1276
|
self._BasicPlusFlag = BasicPlusFlag
|
|
1273
1277
|
|
|
1278
|
+
@property
|
|
1279
|
+
def PlanCntFlag(self):
|
|
1280
|
+
return self._PlanCntFlag
|
|
1281
|
+
|
|
1282
|
+
@PlanCntFlag.setter
|
|
1283
|
+
def PlanCntFlag(self, PlanCntFlag):
|
|
1284
|
+
self._PlanCntFlag = PlanCntFlag
|
|
1285
|
+
|
|
1274
1286
|
|
|
1275
1287
|
def _deserialize(self, params):
|
|
1276
1288
|
if params.get("InstanceDetail") is not None:
|
|
@@ -1315,6 +1327,7 @@ class BGPInstance(AbstractModel):
|
|
|
1315
1327
|
self._GiftServiceBandWidth = params.get("GiftServiceBandWidth")
|
|
1316
1328
|
self._ModifyTime = params.get("ModifyTime")
|
|
1317
1329
|
self._BasicPlusFlag = params.get("BasicPlusFlag")
|
|
1330
|
+
self._PlanCntFlag = params.get("PlanCntFlag")
|
|
1318
1331
|
memeber_set = set(params.keys())
|
|
1319
1332
|
for name, value in vars(self).items():
|
|
1320
1333
|
property_name = name[1:]
|
|
@@ -9423,6 +9436,9 @@ class DescribeListBGPInstancesRequest(AbstractModel):
|
|
|
9423
9436
|
:type FilterAssetIpList: list of str
|
|
9424
9437
|
:param _FilterBasicPlusFlag: 是否包含基础防护增强版 0: 不包含 1: 包含
|
|
9425
9438
|
:type FilterBasicPlusFlag: int
|
|
9439
|
+
:param _FilterPlanCntFlag: 是否商业模式优化-普惠版 0: 包含商业模式优化-普惠版 1: 只查询商业模式优化-普惠版
|
|
9440
|
+
|
|
9441
|
+
:type FilterPlanCntFlag: int
|
|
9426
9442
|
"""
|
|
9427
9443
|
self._Offset = None
|
|
9428
9444
|
self._Limit = None
|
|
@@ -9443,6 +9459,7 @@ class DescribeListBGPInstancesRequest(AbstractModel):
|
|
|
9443
9459
|
self._ExcludeAdvancedInfo = None
|
|
9444
9460
|
self._FilterAssetIpList = None
|
|
9445
9461
|
self._FilterBasicPlusFlag = None
|
|
9462
|
+
self._FilterPlanCntFlag = None
|
|
9446
9463
|
|
|
9447
9464
|
@property
|
|
9448
9465
|
def Offset(self):
|
|
@@ -9596,6 +9613,14 @@ class DescribeListBGPInstancesRequest(AbstractModel):
|
|
|
9596
9613
|
def FilterBasicPlusFlag(self, FilterBasicPlusFlag):
|
|
9597
9614
|
self._FilterBasicPlusFlag = FilterBasicPlusFlag
|
|
9598
9615
|
|
|
9616
|
+
@property
|
|
9617
|
+
def FilterPlanCntFlag(self):
|
|
9618
|
+
return self._FilterPlanCntFlag
|
|
9619
|
+
|
|
9620
|
+
@FilterPlanCntFlag.setter
|
|
9621
|
+
def FilterPlanCntFlag(self, FilterPlanCntFlag):
|
|
9622
|
+
self._FilterPlanCntFlag = FilterPlanCntFlag
|
|
9623
|
+
|
|
9599
9624
|
|
|
9600
9625
|
def _deserialize(self, params):
|
|
9601
9626
|
self._Offset = params.get("Offset")
|
|
@@ -9619,6 +9644,7 @@ class DescribeListBGPInstancesRequest(AbstractModel):
|
|
|
9619
9644
|
self._ExcludeAdvancedInfo = params.get("ExcludeAdvancedInfo")
|
|
9620
9645
|
self._FilterAssetIpList = params.get("FilterAssetIpList")
|
|
9621
9646
|
self._FilterBasicPlusFlag = params.get("FilterBasicPlusFlag")
|
|
9647
|
+
self._FilterPlanCntFlag = params.get("FilterPlanCntFlag")
|
|
9622
9648
|
memeber_set = set(params.keys())
|
|
9623
9649
|
for name, value in vars(self).items():
|
|
9624
9650
|
property_name = name[1:]
|
|
@@ -12487,7 +12513,7 @@ class EipAddressRelation(AbstractModel):
|
|
|
12487
12513
|
|
|
12488
12514
|
def __init__(self):
|
|
12489
12515
|
r"""
|
|
12490
|
-
:param _EipAddressRegion: 高防弹性公网IP绑定的实例地区,例如hk
|
|
12516
|
+
:param _EipAddressRegion: 高防弹性公网IP绑定的实例地区,例如hk代表中国香港
|
|
12491
12517
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12492
12518
|
:type EipAddressRegion: str
|
|
12493
12519
|
:param _EipBoundRscIns: 绑定的资源实例ID。可能是一个CVM。
|
|
@@ -9290,9 +9290,12 @@ class MigrateOption(AbstractModel):
|
|
|
9290
9290
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9291
9291
|
:type IsDstReadOnly: bool
|
|
9292
9292
|
:param _ExtraAttr: 其他附加信息,对于特定库可设置额外参数,Redis可定义如下的参数:
|
|
9293
|
-
["DstWriteMode":normal, 目标库写入模式,可取值clearData(清空目标实例数据)、overwrite(以覆盖写的方式执行任务)、normal(跟正常流程一样,不做额外动作) "IsDstReadOnly":true, 是否在迁移时设置目标库只读,true(设置只读)、false(不设置只读) "ClientOutputBufferHardLimit":512, 从机缓冲区的硬性容量限制(MB) "ClientOutputBufferSoftLimit":512, 从机缓冲区的软性容量限制(MB) "ClientOutputBufferPersistTime":60, 从机缓冲区的软性限制持续时间(秒) "ReplBacklogSize":512, 环形缓冲区容量限制(MB) "ReplTimeout":120, 复制超时时间(秒)
|
|
9293
|
+
["DstWriteMode":normal, 目标库写入模式,可取值clearData(清空目标实例数据)、overwrite(以覆盖写的方式执行任务)、normal(跟正常流程一样,不做额外动作) "IsDstReadOnly":true, 是否在迁移时设置目标库只读,true(设置只读)、false(不设置只读) "ClientOutputBufferHardLimit":512, 从机缓冲区的硬性容量限制(MB) "ClientOutputBufferSoftLimit":512, 从机缓冲区的软性容量限制(MB) "ClientOutputBufferPersistTime":60, 从机缓冲区的软性限制持续时间(秒) "ReplBacklogSize":512, 环形缓冲区容量限制(MB) "ReplTimeout":120, 复制超时时间(秒)]
|
|
9294
9294
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9295
9295
|
:type ExtraAttr: list of KeyValuePairOption
|
|
9296
|
+
:param _MigrateWay: pgsql迁移分类:logical(逻辑迁移)、physical(物理迁移)
|
|
9297
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9298
|
+
:type MigrateWay: str
|
|
9296
9299
|
"""
|
|
9297
9300
|
self._DatabaseTable = None
|
|
9298
9301
|
self._MigrateType = None
|
|
@@ -9301,6 +9304,7 @@ class MigrateOption(AbstractModel):
|
|
|
9301
9304
|
self._IsOverrideRoot = None
|
|
9302
9305
|
self._IsDstReadOnly = None
|
|
9303
9306
|
self._ExtraAttr = None
|
|
9307
|
+
self._MigrateWay = None
|
|
9304
9308
|
|
|
9305
9309
|
@property
|
|
9306
9310
|
def DatabaseTable(self):
|
|
@@ -9358,6 +9362,14 @@ class MigrateOption(AbstractModel):
|
|
|
9358
9362
|
def ExtraAttr(self, ExtraAttr):
|
|
9359
9363
|
self._ExtraAttr = ExtraAttr
|
|
9360
9364
|
|
|
9365
|
+
@property
|
|
9366
|
+
def MigrateWay(self):
|
|
9367
|
+
return self._MigrateWay
|
|
9368
|
+
|
|
9369
|
+
@MigrateWay.setter
|
|
9370
|
+
def MigrateWay(self, MigrateWay):
|
|
9371
|
+
self._MigrateWay = MigrateWay
|
|
9372
|
+
|
|
9361
9373
|
|
|
9362
9374
|
def _deserialize(self, params):
|
|
9363
9375
|
if params.get("DatabaseTable") is not None:
|
|
@@ -9376,6 +9388,7 @@ class MigrateOption(AbstractModel):
|
|
|
9376
9388
|
obj = KeyValuePairOption()
|
|
9377
9389
|
obj._deserialize(item)
|
|
9378
9390
|
self._ExtraAttr.append(obj)
|
|
9391
|
+
self._MigrateWay = params.get("MigrateWay")
|
|
9379
9392
|
memeber_set = set(params.keys())
|
|
9380
9393
|
for name, value in vars(self).items():
|
|
9381
9394
|
property_name = name[1:]
|
|
@@ -3448,10 +3448,16 @@ class GetEidResultRequest(AbstractModel):
|
|
|
3448
3448
|
:type InfoType: str
|
|
3449
3449
|
:param _BestFramesCount: 从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
|
|
3450
3450
|
:type BestFramesCount: int
|
|
3451
|
+
:param _IsCutIdCardImage: 是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
|
|
3452
|
+
:type IsCutIdCardImage: bool
|
|
3453
|
+
:param _IsNeedIdCardAvatar: 是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
|
|
3454
|
+
:type IsNeedIdCardAvatar: bool
|
|
3451
3455
|
"""
|
|
3452
3456
|
self._EidToken = None
|
|
3453
3457
|
self._InfoType = None
|
|
3454
3458
|
self._BestFramesCount = None
|
|
3459
|
+
self._IsCutIdCardImage = None
|
|
3460
|
+
self._IsNeedIdCardAvatar = None
|
|
3455
3461
|
|
|
3456
3462
|
@property
|
|
3457
3463
|
def EidToken(self):
|
|
@@ -3477,11 +3483,29 @@ class GetEidResultRequest(AbstractModel):
|
|
|
3477
3483
|
def BestFramesCount(self, BestFramesCount):
|
|
3478
3484
|
self._BestFramesCount = BestFramesCount
|
|
3479
3485
|
|
|
3486
|
+
@property
|
|
3487
|
+
def IsCutIdCardImage(self):
|
|
3488
|
+
return self._IsCutIdCardImage
|
|
3489
|
+
|
|
3490
|
+
@IsCutIdCardImage.setter
|
|
3491
|
+
def IsCutIdCardImage(self, IsCutIdCardImage):
|
|
3492
|
+
self._IsCutIdCardImage = IsCutIdCardImage
|
|
3493
|
+
|
|
3494
|
+
@property
|
|
3495
|
+
def IsNeedIdCardAvatar(self):
|
|
3496
|
+
return self._IsNeedIdCardAvatar
|
|
3497
|
+
|
|
3498
|
+
@IsNeedIdCardAvatar.setter
|
|
3499
|
+
def IsNeedIdCardAvatar(self, IsNeedIdCardAvatar):
|
|
3500
|
+
self._IsNeedIdCardAvatar = IsNeedIdCardAvatar
|
|
3501
|
+
|
|
3480
3502
|
|
|
3481
3503
|
def _deserialize(self, params):
|
|
3482
3504
|
self._EidToken = params.get("EidToken")
|
|
3483
3505
|
self._InfoType = params.get("InfoType")
|
|
3484
3506
|
self._BestFramesCount = params.get("BestFramesCount")
|
|
3507
|
+
self._IsCutIdCardImage = params.get("IsCutIdCardImage")
|
|
3508
|
+
self._IsNeedIdCardAvatar = params.get("IsNeedIdCardAvatar")
|
|
3485
3509
|
memeber_set = set(params.keys())
|
|
3486
3510
|
for name, value in vars(self).items():
|
|
3487
3511
|
property_name = name[1:]
|