tencentcloud-sdk-python 3.0.1250__py2.py3-none-any.whl → 3.0.1252__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +8 -1
- tencentcloud/bma/v20221115/models.py +24 -0
- tencentcloud/cam/v20190116/models.py +16 -16
- tencentcloud/ccc/v20200210/models.py +117 -0
- tencentcloud/cdwdoris/v20211228/models.py +45 -0
- tencentcloud/cfg/v20210820/models.py +26 -0
- tencentcloud/cls/v20201016/cls_client.py +94 -1
- tencentcloud/cls/v20201016/models.py +769 -3
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +1 -1
- tencentcloud/cynosdb/v20190107/models.py +25 -0
- tencentcloud/dasb/v20191018/models.py +21 -9
- tencentcloud/dc/v20180410/dc_client.py +23 -0
- tencentcloud/dc/v20180410/models.py +426 -0
- tencentcloud/dnspod/v20210323/models.py +1 -3
- tencentcloud/emr/v20190103/emr_client.py +92 -0
- tencentcloud/emr/v20190103/errorcodes.py +1 -1
- tencentcloud/emr/v20190103/models.py +1389 -179
- tencentcloud/es/v20180416/models.py +204 -1
- tencentcloud/ess/v20201111/models.py +6 -6
- tencentcloud/essbasic/v20210526/models.py +18 -5
- tencentcloud/facefusion/v20220927/errorcodes.py +15 -0
- tencentcloud/faceid/v20180301/models.py +27 -0
- tencentcloud/gwlb/__init__.py +0 -0
- tencentcloud/gwlb/v20240906/__init__.py +0 -0
- tencentcloud/gwlb/v20240906/errorcodes.py +48 -0
- tencentcloud/gwlb/v20240906/gwlb_client.py +448 -0
- tencentcloud/gwlb/v20240906/models.py +2835 -0
- tencentcloud/hunyuan/v20230901/models.py +139 -13
- tencentcloud/iss/v20230517/errorcodes.py +6 -0
- tencentcloud/iss/v20230517/iss_client.py +1 -1
- tencentcloud/iss/v20230517/models.py +72 -12
- tencentcloud/ocr/v20181119/errorcodes.py +1 -1
- tencentcloud/privatedns/v20201028/errorcodes.py +18 -0
- tencentcloud/privatedns/v20201028/models.py +142 -0
- tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/sms/v20190711/errorcodes.py +3 -0
- tencentcloud/sms/v20210111/errorcodes.py +2 -2
- tencentcloud/sms/v20210111/models.py +1 -1
- tencentcloud/sqlserver/v20180328/models.py +24 -0
- tencentcloud/sts/v20180813/models.py +2 -2
- tencentcloud/tcss/v20201101/models.py +147 -2
- tencentcloud/teo/v20220901/errorcodes.py +9 -9
- tencentcloud/teo/v20220901/models.py +83 -77
- tencentcloud/teo/v20220901/teo_client.py +4 -4
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +248 -2
- tencentcloud/tke/v20180525/tke_client.py +46 -0
- tencentcloud/vclm/v20240523/models.py +12 -0
- tencentcloud/vpc/v20170312/models.py +24 -20
- tencentcloud/vpc/v20170312/vpc_client.py +2 -2
- tencentcloud/vtc/v20240223/models.py +12 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/RECORD +58 -53
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/top_level.txt +0 -0
@@ -1122,6 +1122,10 @@ class CreateInstanceRequest(AbstractModel):
|
|
1122
1122
|
:type SubProductCode: str
|
1123
1123
|
:param _ReadWriteMode: 读写分离模式:0-不开启,1-本地读写分离,2-远端读写分离
|
1124
1124
|
:type ReadWriteMode: int
|
1125
|
+
:param _EnableScheduleRecoverGroup: 置放群组是否开启异步任务
|
1126
|
+
:type EnableScheduleRecoverGroup: bool
|
1127
|
+
:param _EnableScheduleOperationDuration: 置放群组开启异步任务的可维护时间段
|
1128
|
+
:type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
|
1125
1129
|
"""
|
1126
1130
|
self._Zone = None
|
1127
1131
|
self._EsVersion = None
|
@@ -1161,6 +1165,8 @@ class CreateInstanceRequest(AbstractModel):
|
|
1161
1165
|
self._DisasterRecoverGroupAffinity = None
|
1162
1166
|
self._SubProductCode = None
|
1163
1167
|
self._ReadWriteMode = None
|
1168
|
+
self._EnableScheduleRecoverGroup = None
|
1169
|
+
self._EnableScheduleOperationDuration = None
|
1164
1170
|
|
1165
1171
|
@property
|
1166
1172
|
def Zone(self):
|
@@ -1466,6 +1472,22 @@ class CreateInstanceRequest(AbstractModel):
|
|
1466
1472
|
def ReadWriteMode(self, ReadWriteMode):
|
1467
1473
|
self._ReadWriteMode = ReadWriteMode
|
1468
1474
|
|
1475
|
+
@property
|
1476
|
+
def EnableScheduleRecoverGroup(self):
|
1477
|
+
return self._EnableScheduleRecoverGroup
|
1478
|
+
|
1479
|
+
@EnableScheduleRecoverGroup.setter
|
1480
|
+
def EnableScheduleRecoverGroup(self, EnableScheduleRecoverGroup):
|
1481
|
+
self._EnableScheduleRecoverGroup = EnableScheduleRecoverGroup
|
1482
|
+
|
1483
|
+
@property
|
1484
|
+
def EnableScheduleOperationDuration(self):
|
1485
|
+
return self._EnableScheduleOperationDuration
|
1486
|
+
|
1487
|
+
@EnableScheduleOperationDuration.setter
|
1488
|
+
def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
|
1489
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
|
1490
|
+
|
1469
1491
|
|
1470
1492
|
def _deserialize(self, params):
|
1471
1493
|
self._Zone = params.get("Zone")
|
@@ -1525,6 +1547,10 @@ class CreateInstanceRequest(AbstractModel):
|
|
1525
1547
|
self._DisasterRecoverGroupAffinity = params.get("DisasterRecoverGroupAffinity")
|
1526
1548
|
self._SubProductCode = params.get("SubProductCode")
|
1527
1549
|
self._ReadWriteMode = params.get("ReadWriteMode")
|
1550
|
+
self._EnableScheduleRecoverGroup = params.get("EnableScheduleRecoverGroup")
|
1551
|
+
if params.get("EnableScheduleOperationDuration") is not None:
|
1552
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
1553
|
+
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
1528
1554
|
memeber_set = set(params.keys())
|
1529
1555
|
for name, value in vars(self).items():
|
1530
1556
|
property_name = name[1:]
|
@@ -6803,6 +6829,79 @@ class Dimension(AbstractModel):
|
|
6803
6829
|
|
6804
6830
|
|
6805
6831
|
|
6832
|
+
class EnableScheduleOperationDuration(AbstractModel):
|
6833
|
+
"""置放群组异步任务维护的时间段
|
6834
|
+
|
6835
|
+
"""
|
6836
|
+
|
6837
|
+
def __init__(self):
|
6838
|
+
r"""
|
6839
|
+
:param _Periods: 支持开启异步任务的日期
|
6840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6841
|
+
:type Periods: list of str
|
6842
|
+
:param _TimeStart: 支持开启异步的开始时间
|
6843
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6844
|
+
:type TimeStart: str
|
6845
|
+
:param _TimeEnd: 支持开启异步的结束时间
|
6846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6847
|
+
:type TimeEnd: str
|
6848
|
+
:param _TimeZone: 支持开启异步的时区
|
6849
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6850
|
+
:type TimeZone: str
|
6851
|
+
"""
|
6852
|
+
self._Periods = None
|
6853
|
+
self._TimeStart = None
|
6854
|
+
self._TimeEnd = None
|
6855
|
+
self._TimeZone = None
|
6856
|
+
|
6857
|
+
@property
|
6858
|
+
def Periods(self):
|
6859
|
+
return self._Periods
|
6860
|
+
|
6861
|
+
@Periods.setter
|
6862
|
+
def Periods(self, Periods):
|
6863
|
+
self._Periods = Periods
|
6864
|
+
|
6865
|
+
@property
|
6866
|
+
def TimeStart(self):
|
6867
|
+
return self._TimeStart
|
6868
|
+
|
6869
|
+
@TimeStart.setter
|
6870
|
+
def TimeStart(self, TimeStart):
|
6871
|
+
self._TimeStart = TimeStart
|
6872
|
+
|
6873
|
+
@property
|
6874
|
+
def TimeEnd(self):
|
6875
|
+
return self._TimeEnd
|
6876
|
+
|
6877
|
+
@TimeEnd.setter
|
6878
|
+
def TimeEnd(self, TimeEnd):
|
6879
|
+
self._TimeEnd = TimeEnd
|
6880
|
+
|
6881
|
+
@property
|
6882
|
+
def TimeZone(self):
|
6883
|
+
return self._TimeZone
|
6884
|
+
|
6885
|
+
@TimeZone.setter
|
6886
|
+
def TimeZone(self, TimeZone):
|
6887
|
+
self._TimeZone = TimeZone
|
6888
|
+
|
6889
|
+
|
6890
|
+
def _deserialize(self, params):
|
6891
|
+
self._Periods = params.get("Periods")
|
6892
|
+
self._TimeStart = params.get("TimeStart")
|
6893
|
+
self._TimeEnd = params.get("TimeEnd")
|
6894
|
+
self._TimeZone = params.get("TimeZone")
|
6895
|
+
memeber_set = set(params.keys())
|
6896
|
+
for name, value in vars(self).items():
|
6897
|
+
property_name = name[1:]
|
6898
|
+
if property_name in memeber_set:
|
6899
|
+
memeber_set.remove(property_name)
|
6900
|
+
if len(memeber_set) > 0:
|
6901
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6902
|
+
|
6903
|
+
|
6904
|
+
|
6806
6905
|
class EsAcl(AbstractModel):
|
6807
6906
|
"""ES集群配置项
|
6808
6907
|
|
@@ -7858,7 +7957,7 @@ class InstallInstanceModelRequest(AbstractModel):
|
|
7858
7957
|
r"""
|
7859
7958
|
:param _InstanceId: 实例ID
|
7860
7959
|
:type InstanceId: str
|
7861
|
-
:param _UsrCosModelUrlList:
|
7960
|
+
:param _UsrCosModelUrlList: 客户上传到cos的模型地址,单次请求限制一个。cos文件为压缩文件,格式包括:zip、tgz和tar.gz
|
7862
7961
|
:type UsrCosModelUrlList: list of str
|
7863
7962
|
"""
|
7864
7963
|
self._InstanceId = None
|
@@ -11161,6 +11260,12 @@ class NodeView(AbstractModel):
|
|
11161
11260
|
:type IsCoordinationNode: bool
|
11162
11261
|
:param _CVMStatus: CVM运行状态
|
11163
11262
|
:type CVMStatus: str
|
11263
|
+
:param _CVMDisasterRecoverGroupId: cvm绑定的置放群组的id
|
11264
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11265
|
+
:type CVMDisasterRecoverGroupId: str
|
11266
|
+
:param _CVMDisasterRecoverGroupStatus: cvm绑定置放群组的状态。2: 已绑定;1: 绑定中;0: 未开启
|
11267
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11268
|
+
:type CVMDisasterRecoverGroupStatus: int
|
11164
11269
|
"""
|
11165
11270
|
self._NodeId = None
|
11166
11271
|
self._NodeIp = None
|
@@ -11181,6 +11286,8 @@ class NodeView(AbstractModel):
|
|
11181
11286
|
self._Hidden = None
|
11182
11287
|
self._IsCoordinationNode = None
|
11183
11288
|
self._CVMStatus = None
|
11289
|
+
self._CVMDisasterRecoverGroupId = None
|
11290
|
+
self._CVMDisasterRecoverGroupStatus = None
|
11184
11291
|
|
11185
11292
|
@property
|
11186
11293
|
def NodeId(self):
|
@@ -11334,6 +11441,22 @@ class NodeView(AbstractModel):
|
|
11334
11441
|
def CVMStatus(self, CVMStatus):
|
11335
11442
|
self._CVMStatus = CVMStatus
|
11336
11443
|
|
11444
|
+
@property
|
11445
|
+
def CVMDisasterRecoverGroupId(self):
|
11446
|
+
return self._CVMDisasterRecoverGroupId
|
11447
|
+
|
11448
|
+
@CVMDisasterRecoverGroupId.setter
|
11449
|
+
def CVMDisasterRecoverGroupId(self, CVMDisasterRecoverGroupId):
|
11450
|
+
self._CVMDisasterRecoverGroupId = CVMDisasterRecoverGroupId
|
11451
|
+
|
11452
|
+
@property
|
11453
|
+
def CVMDisasterRecoverGroupStatus(self):
|
11454
|
+
return self._CVMDisasterRecoverGroupStatus
|
11455
|
+
|
11456
|
+
@CVMDisasterRecoverGroupStatus.setter
|
11457
|
+
def CVMDisasterRecoverGroupStatus(self, CVMDisasterRecoverGroupStatus):
|
11458
|
+
self._CVMDisasterRecoverGroupStatus = CVMDisasterRecoverGroupStatus
|
11459
|
+
|
11337
11460
|
|
11338
11461
|
def _deserialize(self, params):
|
11339
11462
|
self._NodeId = params.get("NodeId")
|
@@ -11355,6 +11478,8 @@ class NodeView(AbstractModel):
|
|
11355
11478
|
self._Hidden = params.get("Hidden")
|
11356
11479
|
self._IsCoordinationNode = params.get("IsCoordinationNode")
|
11357
11480
|
self._CVMStatus = params.get("CVMStatus")
|
11481
|
+
self._CVMDisasterRecoverGroupId = params.get("CVMDisasterRecoverGroupId")
|
11482
|
+
self._CVMDisasterRecoverGroupStatus = params.get("CVMDisasterRecoverGroupStatus")
|
11358
11483
|
memeber_set = set(params.keys())
|
11359
11484
|
for name, value in vars(self).items():
|
11360
11485
|
property_name = name[1:]
|
@@ -12202,6 +12327,10 @@ class RestartNodesRequest(AbstractModel):
|
|
12202
12327
|
:type ShardAllocationConcurrents: int
|
12203
12328
|
:param _ShardAllocationBytes: 分片迁移并发速度
|
12204
12329
|
:type ShardAllocationBytes: int
|
12330
|
+
:param _EnableScheduleRecoverGroup: 是否开启置放群组异步任务
|
12331
|
+
:type EnableScheduleRecoverGroup: bool
|
12332
|
+
:param _EnableScheduleOperationDuration: 置放群组异步任务时间段
|
12333
|
+
:type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
|
12205
12334
|
"""
|
12206
12335
|
self._InstanceId = None
|
12207
12336
|
self._NodeNames = None
|
@@ -12211,6 +12340,8 @@ class RestartNodesRequest(AbstractModel):
|
|
12211
12340
|
self._CvmDelayOnlineTime = None
|
12212
12341
|
self._ShardAllocationConcurrents = None
|
12213
12342
|
self._ShardAllocationBytes = None
|
12343
|
+
self._EnableScheduleRecoverGroup = None
|
12344
|
+
self._EnableScheduleOperationDuration = None
|
12214
12345
|
|
12215
12346
|
@property
|
12216
12347
|
def InstanceId(self):
|
@@ -12276,6 +12407,22 @@ class RestartNodesRequest(AbstractModel):
|
|
12276
12407
|
def ShardAllocationBytes(self, ShardAllocationBytes):
|
12277
12408
|
self._ShardAllocationBytes = ShardAllocationBytes
|
12278
12409
|
|
12410
|
+
@property
|
12411
|
+
def EnableScheduleRecoverGroup(self):
|
12412
|
+
return self._EnableScheduleRecoverGroup
|
12413
|
+
|
12414
|
+
@EnableScheduleRecoverGroup.setter
|
12415
|
+
def EnableScheduleRecoverGroup(self, EnableScheduleRecoverGroup):
|
12416
|
+
self._EnableScheduleRecoverGroup = EnableScheduleRecoverGroup
|
12417
|
+
|
12418
|
+
@property
|
12419
|
+
def EnableScheduleOperationDuration(self):
|
12420
|
+
return self._EnableScheduleOperationDuration
|
12421
|
+
|
12422
|
+
@EnableScheduleOperationDuration.setter
|
12423
|
+
def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
|
12424
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
|
12425
|
+
|
12279
12426
|
|
12280
12427
|
def _deserialize(self, params):
|
12281
12428
|
self._InstanceId = params.get("InstanceId")
|
@@ -12286,6 +12433,10 @@ class RestartNodesRequest(AbstractModel):
|
|
12286
12433
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
12287
12434
|
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
12288
12435
|
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
12436
|
+
self._EnableScheduleRecoverGroup = params.get("EnableScheduleRecoverGroup")
|
12437
|
+
if params.get("EnableScheduleOperationDuration") is not None:
|
12438
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
12439
|
+
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
12289
12440
|
memeber_set = set(params.keys())
|
12290
12441
|
for name, value in vars(self).items():
|
12291
12442
|
property_name = name[1:]
|
@@ -14239,6 +14390,10 @@ CLOSE 关闭
|
|
14239
14390
|
:type ShardAllocationBytes: int
|
14240
14391
|
:param _ReadWriteMode: 读写分离模式:-1-不开启,1-本地读写分离,2-远端读写分离
|
14241
14392
|
:type ReadWriteMode: int
|
14393
|
+
:param _EnableScheduleRecoverGroup: 是否开启置放群组异步任务
|
14394
|
+
:type EnableScheduleRecoverGroup: bool
|
14395
|
+
:param _EnableScheduleOperationDuration: 置放群组异步任务可维护时间段
|
14396
|
+
:type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
|
14242
14397
|
"""
|
14243
14398
|
self._InstanceId = None
|
14244
14399
|
self._InstanceName = None
|
@@ -14281,6 +14436,8 @@ CLOSE 关闭
|
|
14281
14436
|
self._ShardAllocationConcurrents = None
|
14282
14437
|
self._ShardAllocationBytes = None
|
14283
14438
|
self._ReadWriteMode = None
|
14439
|
+
self._EnableScheduleRecoverGroup = None
|
14440
|
+
self._EnableScheduleOperationDuration = None
|
14284
14441
|
|
14285
14442
|
@property
|
14286
14443
|
def InstanceId(self):
|
@@ -14610,6 +14767,22 @@ CLOSE 关闭
|
|
14610
14767
|
def ReadWriteMode(self, ReadWriteMode):
|
14611
14768
|
self._ReadWriteMode = ReadWriteMode
|
14612
14769
|
|
14770
|
+
@property
|
14771
|
+
def EnableScheduleRecoverGroup(self):
|
14772
|
+
return self._EnableScheduleRecoverGroup
|
14773
|
+
|
14774
|
+
@EnableScheduleRecoverGroup.setter
|
14775
|
+
def EnableScheduleRecoverGroup(self, EnableScheduleRecoverGroup):
|
14776
|
+
self._EnableScheduleRecoverGroup = EnableScheduleRecoverGroup
|
14777
|
+
|
14778
|
+
@property
|
14779
|
+
def EnableScheduleOperationDuration(self):
|
14780
|
+
return self._EnableScheduleOperationDuration
|
14781
|
+
|
14782
|
+
@EnableScheduleOperationDuration.setter
|
14783
|
+
def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
|
14784
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
|
14785
|
+
|
14613
14786
|
|
14614
14787
|
def _deserialize(self, params):
|
14615
14788
|
self._InstanceId = params.get("InstanceId")
|
@@ -14680,6 +14853,10 @@ CLOSE 关闭
|
|
14680
14853
|
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
14681
14854
|
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
14682
14855
|
self._ReadWriteMode = params.get("ReadWriteMode")
|
14856
|
+
self._EnableScheduleRecoverGroup = params.get("EnableScheduleRecoverGroup")
|
14857
|
+
if params.get("EnableScheduleOperationDuration") is not None:
|
14858
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
14859
|
+
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
14683
14860
|
memeber_set = set(params.keys())
|
14684
14861
|
for name, value in vars(self).items():
|
14685
14862
|
property_name = name[1:]
|
@@ -15512,6 +15689,10 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
15512
15689
|
:type ShardAllocationConcurrents: int
|
15513
15690
|
:param _ShardAllocationBytes: 分片迁移并发速度
|
15514
15691
|
:type ShardAllocationBytes: int
|
15692
|
+
:param _EnableScheduleRecoverGroup: 是否开启置放群组异步任务
|
15693
|
+
:type EnableScheduleRecoverGroup: bool
|
15694
|
+
:param _EnableScheduleOperationDuration: 置放群组异步任务时间段
|
15695
|
+
:type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
|
15515
15696
|
"""
|
15516
15697
|
self._InstanceId = None
|
15517
15698
|
self._EsVersion = None
|
@@ -15524,6 +15705,8 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
15524
15705
|
self._CvmDelayOnlineTime = None
|
15525
15706
|
self._ShardAllocationConcurrents = None
|
15526
15707
|
self._ShardAllocationBytes = None
|
15708
|
+
self._EnableScheduleRecoverGroup = None
|
15709
|
+
self._EnableScheduleOperationDuration = None
|
15527
15710
|
|
15528
15711
|
@property
|
15529
15712
|
def InstanceId(self):
|
@@ -15613,6 +15796,22 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
15613
15796
|
def ShardAllocationBytes(self, ShardAllocationBytes):
|
15614
15797
|
self._ShardAllocationBytes = ShardAllocationBytes
|
15615
15798
|
|
15799
|
+
@property
|
15800
|
+
def EnableScheduleRecoverGroup(self):
|
15801
|
+
return self._EnableScheduleRecoverGroup
|
15802
|
+
|
15803
|
+
@EnableScheduleRecoverGroup.setter
|
15804
|
+
def EnableScheduleRecoverGroup(self, EnableScheduleRecoverGroup):
|
15805
|
+
self._EnableScheduleRecoverGroup = EnableScheduleRecoverGroup
|
15806
|
+
|
15807
|
+
@property
|
15808
|
+
def EnableScheduleOperationDuration(self):
|
15809
|
+
return self._EnableScheduleOperationDuration
|
15810
|
+
|
15811
|
+
@EnableScheduleOperationDuration.setter
|
15812
|
+
def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
|
15813
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
|
15814
|
+
|
15616
15815
|
|
15617
15816
|
def _deserialize(self, params):
|
15618
15817
|
self._InstanceId = params.get("InstanceId")
|
@@ -15626,6 +15825,10 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
15626
15825
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
15627
15826
|
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
15628
15827
|
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
15828
|
+
self._EnableScheduleRecoverGroup = params.get("EnableScheduleRecoverGroup")
|
15829
|
+
if params.get("EnableScheduleOperationDuration") is not None:
|
15830
|
+
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
15831
|
+
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
15629
15832
|
memeber_set = set(params.keys())
|
15630
15833
|
for name, value in vars(self).items():
|
15631
15834
|
property_name = name[1:]
|
@@ -1263,10 +1263,9 @@ class AutoSignConfig(AbstractModel):
|
|
1263
1263
|
<ul><li>如果是小程序开通链接,支持传 WEIXINAPP / TELECOM。为空默认 WEIXINAPP</li>
|
1264
1264
|
<li>如果是 H5 开通链接,支持传 INSIGHT / TELECOM。为空默认 INSIGHT </li></ul>
|
1265
1265
|
:type VerifyChannels: list of str
|
1266
|
-
:param _LicenseType:
|
1266
|
+
:param _LicenseType: 设置用户自动签合同的扣费方式。
|
1267
1267
|
|
1268
|
-
<ul><li
|
1269
|
-
<li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
1268
|
+
<ul><li><b>1</b>: (默认)使用合同份额进行扣减</li></ul>
|
1270
1269
|
:type LicenseType: int
|
1271
1270
|
:param _JumpUrl: 开通成功后前端页面跳转的url,此字段的用法场景请联系客户经理确认。
|
1272
1271
|
|
@@ -9844,7 +9843,7 @@ class CreatePreparedPersonalEsignRequest(AbstractModel):
|
|
9844
9843
|
:type SealImageCompress: bool
|
9845
9844
|
:param _Mobile: 手机号码;当需要开通自动签时,该参数必传
|
9846
9845
|
:type Mobile: str
|
9847
|
-
:param _EnableAutoSign:
|
9846
|
+
:param _EnableAutoSign: 此字段已废弃,请勿继续使用。
|
9848
9847
|
:type EnableAutoSign: bool
|
9849
9848
|
:param _SealColor: 印章颜色(参数ProcessSeal=true时生效)
|
9850
9849
|
默认值:BLACK黑色
|
@@ -20514,6 +20513,7 @@ class ModifyExtendedServiceRequest(AbstractModel):
|
|
20514
20513
|
<ul>
|
20515
20514
|
<li>WEIXINAPP : 短链直接跳转到电子签小程序 (默认值)</li>
|
20516
20515
|
<li>APP : 第三方APP或小程序跳转电子签小程序</li>
|
20516
|
+
<li>WEIXIN_QRCODE_URL:直接跳转至电子签小程序的二维码链接,无需通过中转页。<font color="red">您需要自行将其转换为二维码,使用微信扫码后可直接进入。请注意,直接点击链接是无效的。</font></li>
|
20517
20517
|
</ul>
|
20518
20518
|
:type Endpoint: str
|
20519
20519
|
"""
|
@@ -20598,8 +20598,8 @@ class ModifyExtendedServiceResponse(AbstractModel):
|
|
20598
20598
|
<li><strong>有跳转链接返回的情况:</strong> 当操作类型为“OPEN”(开通服务),并且扩展服务类型为以下之一时, 系统将返回一个操作链接。当前操作人(超级管理员或法人)需要点击此链接,以完成服务的开通操作。
|
20599
20599
|
|
20600
20600
|
<ul>
|
20601
|
-
<li><strong>OPEN_SERVER_SIGN</strong
|
20602
|
-
<li><strong>OVERSEA_SIGN</strong
|
20601
|
+
<li><strong>OPEN_SERVER_SIGN</strong>(企业自动签署)</li>
|
20602
|
+
<li><strong>OVERSEA_SIGN</strong>(企业与港澳台居民签署合同)</li>
|
20603
20603
|
</ul></li></li>
|
20604
20604
|
</ul>
|
20605
20605
|
:type OperateUrl: str
|
@@ -611,8 +611,7 @@ class AutoSignConfig(AbstractModel):
|
|
611
611
|
:type VerifyChannels: list of str
|
612
612
|
:param _LicenseType: 设置用户开通自动签时是否绑定个人自动签账号许可。
|
613
613
|
|
614
|
-
<ul><li
|
615
|
-
<li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
614
|
+
<ul><li><b>1</b>: (默认)不绑定自动签账号许可开通,开通后一直有效, 后续使用合同份额进行合同发起</li></ul>
|
616
615
|
:type LicenseType: int
|
617
616
|
:param _JumpUrl: 开通成功后前端页面跳转的url,此字段的用法场景请联系客户经理确认。
|
618
617
|
|
@@ -4939,7 +4938,7 @@ class ChannelCreatePreparedPersonalEsignRequest(AbstractModel):
|
|
4939
4938
|
:type SealImageCompress: bool
|
4940
4939
|
:param _Mobile: 手机号码;当需要开通自动签时,该参数必传
|
4941
4940
|
:type Mobile: str
|
4942
|
-
:param _EnableAutoSign:
|
4941
|
+
:param _EnableAutoSign: 此字段已废弃,请勿继续使用。
|
4943
4942
|
:type EnableAutoSign: bool
|
4944
4943
|
:param _LicenseType: 设置用户开通自动签时是否绑定个人自动签账号许可。一旦绑定后,将扣减购买的个人自动签账号许可一次(1年有效期),不可解绑释放。不传默认为绑定自动签账号许可。 0-绑定个人自动签账号许可,开通后将扣减购买的个人自动签账号许可一次 1-不绑定,发起合同时将按标准合同套餐进行扣减
|
4945
4944
|
:type LicenseType: int
|
@@ -10542,6 +10541,7 @@ class CreateConsoleLoginUrlRequest(AbstractModel):
|
|
10542
10541
|
<ul><li>**PC**:(默认)<font color="red">web控制台</font>链接, 需要在PC浏览器中打开</li>
|
10543
10542
|
<li>**CHANNEL**:H5跳转到电子签小程序链接, 一般用于发送短信中带的链接, 打开后进入腾讯电子签小程序</li>
|
10544
10543
|
<li>**SHORT_URL**:<font color="red">H5</font>跳转到电子签小程序链接的短链形式, 一般用于发送短信中带的链接, 打开后进入腾讯电子签小程序</li>
|
10544
|
+
<li>**WEIXIN_QRCODE_URL**:直接跳转至电子签小程序的二维码链接,无需通过中转页。<font color="red">您需要自行将其转换为二维码,使用微信扫码后可直接进入。请注意,直接点击链接是无效的。</font></li>
|
10545
10545
|
<li>**APP**:<font color="red">APP或小程序</font>跳转电子签小程序链接, 一般用于贵方小程序或者APP跳转过来, 打开后进入腾讯电子签小程序</li>
|
10546
10546
|
<li>**H5**:<font color="red">H5长链接</font>跳转H5链接, 一般用于贵方H5跳转过来, 打开后进入腾讯电子签H5页面</li>
|
10547
10547
|
<li>**SHORT_H5**:<font color="red">H5短链</font>跳转H5的短链形式, 一般用于发送短信中带的链接, 打开后进入腾讯电子签H5页面</li></ul>
|
@@ -10763,7 +10763,7 @@ class CreateConsoleLoginUrlResponse(AbstractModel):
|
|
10763
10763
|
def __init__(self):
|
10764
10764
|
r"""
|
10765
10765
|
:param _ConsoleUrl: 跳转链接, 链接的有效期根据企业,员工状态和终端等有区别, 可以参考下表
|
10766
|
-
<table> <thead> <tr> <th>子客企业状态</th> <th>子客企业员工状态</th> <th>Endpoint</th> <th>链接有效期限</th> </tr> </thead> <tbody> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>PC</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> </tbody> </table>
|
10766
|
+
<table> <thead> <tr> <th>子客企业状态</th> <th>子客企业员工状态</th> <th>Endpoint</th> <th>链接有效期限</th> </tr> </thead> <tbody> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>CHANNEL/APP/H5/SHORT_H5/WEIXIN_QRCODE_URL</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>CHANNEL/APP/H5/SHORT_H5/WEIXIN_QRCODE_URL</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>PC</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>CHANNEL/APP/H5/SHORT_H5/WEIXIN_QRCODE_URL</td> <td>30天</td> </tr> </tbody> </table>
|
10767
10767
|
|
10768
10768
|
注:
|
10769
10769
|
1. <font color="red">链接仅单次有效</font>,每次登录需要需要重新创建新的链接
|
@@ -17556,6 +17556,7 @@ class ModifyExtendedServiceRequest(AbstractModel):
|
|
17556
17556
|
<ul>
|
17557
17557
|
<li>WEIXINAPP : 短链直接跳转到电子签小程序 (默认值)</li>
|
17558
17558
|
<li>APP : 第三方APP或小程序跳转电子签小程序</li>
|
17559
|
+
<li>WEIXIN_QRCODE_URL:直接跳转至电子签小程序的二维码链接,无需通过中转页。<font color="red">您需要自行将其转换为二维码,使用微信扫码后可直接进入。请注意,直接点击链接是无效的。</font></li>
|
17559
17560
|
</ul>
|
17560
17561
|
:type Endpoint: str
|
17561
17562
|
"""
|
@@ -17624,7 +17625,7 @@ class ModifyExtendedServiceResponse(AbstractModel):
|
|
17624
17625
|
:param _OperateUrl: 操作跳转链接
|
17625
17626
|
<ul><li><strong>链接有效期:</strong> 跳转链接的有效期为24小时。</li>
|
17626
17627
|
<li><strong>没有返回链接的情形:</strong> 如果在操作时没有返回跳转链接,说明此次操作无需进行跳转,服务将会直接被开通或关闭。</li>
|
17627
|
-
<li><strong>返回链接的情形:</strong>
|
17628
|
+
<li><strong>返回链接的情形:</strong> 当操作类型为<b>OPEN(开通服务)</b>,并且扩展服务类型为<b>AUTO_SIGN( 企业自动签署)</b>、<b>DOWNLOAD_FLOW(授权渠道下载合同)</b>或<b>OVERSEA_SIGN(企业与港澳台居民签署合同)</b>时,系统将返回一个操作链接。收到操作链接后,贵方需主动联系超级管理员(超管)或法人。<font color="red"><b>由超管或法人点击链接</b></font>,以完成服务的开通操作。</li>
|
17628
17629
|
</ul>
|
17629
17630
|
|
17630
17631
|
|
@@ -19425,6 +19426,8 @@ p.s. 如果上传授权书 ,需遵循以下条件
|
|
19425
19426
|
2. 认证方式AuthorizationTypes必须只能是上传授权书方式
|
19426
19427
|
|
19427
19428
|
:type PowerOfAttorneys: list of str
|
19429
|
+
:param _AutoJumpUrl: 认证完之后的H5页面的跳转链接,最大长度1000个字符。链接类型请参考 [跳转电子签H5](https://qian.tencent.com/developers/company/openqianh5/)
|
19430
|
+
:type AutoJumpUrl: str
|
19428
19431
|
"""
|
19429
19432
|
self._OrganizationName = None
|
19430
19433
|
self._OrganizationOpenId = None
|
@@ -19439,6 +19442,7 @@ p.s. 如果上传授权书 ,需遵循以下条件
|
|
19439
19442
|
self._AdminIdCardNumber = None
|
19440
19443
|
self._BusinessLicense = None
|
19441
19444
|
self._PowerOfAttorneys = None
|
19445
|
+
self._AutoJumpUrl = None
|
19442
19446
|
|
19443
19447
|
@property
|
19444
19448
|
def OrganizationName(self):
|
@@ -19544,6 +19548,14 @@ p.s. 如果上传授权书 ,需遵循以下条件
|
|
19544
19548
|
def PowerOfAttorneys(self, PowerOfAttorneys):
|
19545
19549
|
self._PowerOfAttorneys = PowerOfAttorneys
|
19546
19550
|
|
19551
|
+
@property
|
19552
|
+
def AutoJumpUrl(self):
|
19553
|
+
return self._AutoJumpUrl
|
19554
|
+
|
19555
|
+
@AutoJumpUrl.setter
|
19556
|
+
def AutoJumpUrl(self, AutoJumpUrl):
|
19557
|
+
self._AutoJumpUrl = AutoJumpUrl
|
19558
|
+
|
19547
19559
|
|
19548
19560
|
def _deserialize(self, params):
|
19549
19561
|
self._OrganizationName = params.get("OrganizationName")
|
@@ -19559,6 +19571,7 @@ p.s. 如果上传授权书 ,需遵循以下条件
|
|
19559
19571
|
self._AdminIdCardNumber = params.get("AdminIdCardNumber")
|
19560
19572
|
self._BusinessLicense = params.get("BusinessLicense")
|
19561
19573
|
self._PowerOfAttorneys = params.get("PowerOfAttorneys")
|
19574
|
+
self._AutoJumpUrl = params.get("AutoJumpUrl")
|
19562
19575
|
memeber_set = set(params.keys())
|
19563
19576
|
for name, value in vars(self).items():
|
19564
19577
|
property_name = name[1:]
|
@@ -50,6 +50,21 @@ FAILEDOPERATION_IMAGESIZEINVALID = 'FailedOperation.ImageSizeInvalid'
|
|
50
50
|
# 服务内部错误。
|
51
51
|
FAILEDOPERATION_INNERERROR = 'FailedOperation.InnerError'
|
52
52
|
|
53
|
+
# 素材数据为空。
|
54
|
+
FAILEDOPERATION_MEDIADATAERROR = 'FailedOperation.MediaDataError'
|
55
|
+
|
56
|
+
# 审核配置为空。
|
57
|
+
FAILEDOPERATION_MODERATIONCONFIGERROR = 'FailedOperation.ModerationConfigError'
|
58
|
+
|
59
|
+
# 素材审核失败。
|
60
|
+
FAILEDOPERATION_MODERATIONFAILED = 'FailedOperation.ModerationFailed'
|
61
|
+
|
62
|
+
# 素材审核结果为空。
|
63
|
+
FAILEDOPERATION_MODERATIONRESPONSEERROR = 'FailedOperation.ModerationResponseError'
|
64
|
+
|
65
|
+
# 审核结果配置为空。
|
66
|
+
FAILEDOPERATION_MODERATIONRESULTCONFIGERROR = 'FailedOperation.ModerationResultConfigError'
|
67
|
+
|
53
68
|
# 无法检测出人脸, 人脸框配准分低于阈值。
|
54
69
|
FAILEDOPERATION_NOFACEDETECTED = 'FailedOperation.NoFaceDetected'
|
55
70
|
|
@@ -2290,6 +2290,23 @@ class DetectInfoText(AbstractModel):
|
|
2290
2290
|
:param _LivenessDetail: 本次流程进行的活体一比一流水。
|
2291
2291
|
注意:此字段可能返回 null,表示取不到有效值。
|
2292
2292
|
:type LivenessDetail: list of DetectDetail
|
2293
|
+
:param _LivenessInfoTag: 描述当前请求活体阶段被拒绝的详细原因,详情如下:
|
2294
|
+
01-用户全程闭眼
|
2295
|
+
02-用户未完成指定动作
|
2296
|
+
03-疑似翻拍攻击
|
2297
|
+
04-疑似合成攻击
|
2298
|
+
05-疑似黑产模版
|
2299
|
+
06-疑似存在水印
|
2300
|
+
07-反光校验未通过
|
2301
|
+
08-疑似中途换人
|
2302
|
+
09-人脸质量过差
|
2303
|
+
10-距离校验不通过
|
2304
|
+
11-疑似对抗样本攻击
|
2305
|
+
12-嘴巴区域疑似存在攻击痕迹
|
2306
|
+
13-眼睛区域疑似存在攻击痕迹
|
2307
|
+
14-眼睛或嘴巴被遮挡
|
2308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2309
|
+
:type LivenessInfoTag: list of str
|
2293
2310
|
:param _Mobile: 手机号码。
|
2294
2311
|
注意:此字段可能返回 null,表示取不到有效值。
|
2295
2312
|
:type Mobile: str
|
@@ -2343,6 +2360,7 @@ class DetectInfoText(AbstractModel):
|
|
2343
2360
|
self._Location = None
|
2344
2361
|
self._Extra = None
|
2345
2362
|
self._LivenessDetail = None
|
2363
|
+
self._LivenessInfoTag = None
|
2346
2364
|
self._Mobile = None
|
2347
2365
|
self._CompareLibType = None
|
2348
2366
|
self._LivenessMode = None
|
@@ -2527,6 +2545,14 @@ class DetectInfoText(AbstractModel):
|
|
2527
2545
|
def LivenessDetail(self, LivenessDetail):
|
2528
2546
|
self._LivenessDetail = LivenessDetail
|
2529
2547
|
|
2548
|
+
@property
|
2549
|
+
def LivenessInfoTag(self):
|
2550
|
+
return self._LivenessInfoTag
|
2551
|
+
|
2552
|
+
@LivenessInfoTag.setter
|
2553
|
+
def LivenessInfoTag(self, LivenessInfoTag):
|
2554
|
+
self._LivenessInfoTag = LivenessInfoTag
|
2555
|
+
|
2530
2556
|
@property
|
2531
2557
|
def Mobile(self):
|
2532
2558
|
return self._Mobile
|
@@ -2612,6 +2638,7 @@ class DetectInfoText(AbstractModel):
|
|
2612
2638
|
obj = DetectDetail()
|
2613
2639
|
obj._deserialize(item)
|
2614
2640
|
self._LivenessDetail.append(obj)
|
2641
|
+
self._LivenessInfoTag = params.get("LivenessInfoTag")
|
2615
2642
|
self._Mobile = params.get("Mobile")
|
2616
2643
|
self._CompareLibType = params.get("CompareLibType")
|
2617
2644
|
self._LivenessMode = params.get("LivenessMode")
|
File without changes
|
File without changes
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
|
17
|
+
# 操作失败。
|
18
|
+
FAILEDOPERATION = 'FailedOperation'
|
19
|
+
|
20
|
+
# FailedOperation.ResourceInOperating
|
21
|
+
FAILEDOPERATION_RESOURCEINOPERATING = 'FailedOperation.ResourceInOperating'
|
22
|
+
|
23
|
+
# 内部错误。
|
24
|
+
INTERNALERROR = 'InternalError'
|
25
|
+
|
26
|
+
# 参数错误。
|
27
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
28
|
+
|
29
|
+
# InvalidParameter.FormatError
|
30
|
+
INVALIDPARAMETER_FORMATERROR = 'InvalidParameter.FormatError'
|
31
|
+
|
32
|
+
# InvalidParameter.RegionNotFound
|
33
|
+
INVALIDPARAMETER_REGIONNOTFOUND = 'InvalidParameter.RegionNotFound'
|
34
|
+
|
35
|
+
# 参数取值错误。
|
36
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
37
|
+
|
38
|
+
# 存在相同的值。
|
39
|
+
INVALIDPARAMETERVALUE_DUPLICATE = 'InvalidParameterValue.Duplicate'
|
40
|
+
|
41
|
+
# InvalidParameterValue.Length
|
42
|
+
INVALIDPARAMETERVALUE_LENGTH = 'InvalidParameterValue.Length'
|
43
|
+
|
44
|
+
# 超过配额限制。
|
45
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
46
|
+
|
47
|
+
# 未授权操作。
|
48
|
+
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|