tencentcloud-sdk-python 3.0.1216__py2.py3-none-any.whl → 3.0.1218__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/antiddos/v20200309/models.py +13 -1
- tencentcloud/ccc/v20200210/models.py +18 -0
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +24 -1
- tencentcloud/cdwdoris/v20211228/models.py +196 -4
- tencentcloud/cfg/v20210820/models.py +1 -1
- tencentcloud/cls/v20201016/models.py +14 -1
- tencentcloud/cwp/v20180228/models.py +84 -0
- tencentcloud/cynosdb/v20190107/models.py +26 -0
- tencentcloud/essbasic/v20210526/models.py +3 -1
- tencentcloud/facefusion/v20220927/models.py +13 -4
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +261 -0
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/mna/v20210119/models.py +26 -0
- tencentcloud/mongodb/v20190725/models.py +13 -5
- tencentcloud/monitor/v20180724/models.py +13 -0
- tencentcloud/ocr/v20181119/models.py +14 -0
- tencentcloud/rum/v20210622/models.py +12 -0
- tencentcloud/scf/v20180416/models.py +3 -3
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/ssl_client.py +1 -1
- tencentcloud/tag/v20180813/models.py +33 -33
- tencentcloud/tmt/v20180321/models.py +6 -6
- tencentcloud/vod/v20180717/models.py +5 -5
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/top_level.txt +0 -0
@@ -15382,6 +15382,8 @@ class CreateMalwareWhiteListRequest(AbstractModel):
|
|
15382
15382
|
:type Md5List: list of str
|
15383
15383
|
:param _EventId: 木马事件ID
|
15384
15384
|
:type EventId: int
|
15385
|
+
:param _IsHandleHistoryEvents: 对历史待处理执行加白操作;0是不处理,1是处理
|
15386
|
+
:type IsHandleHistoryEvents: int
|
15385
15387
|
"""
|
15386
15388
|
self._Mode = None
|
15387
15389
|
self._QuuidList = None
|
@@ -15392,6 +15394,7 @@ class CreateMalwareWhiteListRequest(AbstractModel):
|
|
15392
15394
|
self._FileExtension = None
|
15393
15395
|
self._Md5List = None
|
15394
15396
|
self._EventId = None
|
15397
|
+
self._IsHandleHistoryEvents = None
|
15395
15398
|
|
15396
15399
|
@property
|
15397
15400
|
def Mode(self):
|
@@ -15465,6 +15468,14 @@ class CreateMalwareWhiteListRequest(AbstractModel):
|
|
15465
15468
|
def EventId(self, EventId):
|
15466
15469
|
self._EventId = EventId
|
15467
15470
|
|
15471
|
+
@property
|
15472
|
+
def IsHandleHistoryEvents(self):
|
15473
|
+
return self._IsHandleHistoryEvents
|
15474
|
+
|
15475
|
+
@IsHandleHistoryEvents.setter
|
15476
|
+
def IsHandleHistoryEvents(self, IsHandleHistoryEvents):
|
15477
|
+
self._IsHandleHistoryEvents = IsHandleHistoryEvents
|
15478
|
+
|
15468
15479
|
|
15469
15480
|
def _deserialize(self, params):
|
15470
15481
|
self._Mode = params.get("Mode")
|
@@ -15476,6 +15487,7 @@ class CreateMalwareWhiteListRequest(AbstractModel):
|
|
15476
15487
|
self._FileExtension = params.get("FileExtension")
|
15477
15488
|
self._Md5List = params.get("Md5List")
|
15478
15489
|
self._EventId = params.get("EventId")
|
15490
|
+
self._IsHandleHistoryEvents = params.get("IsHandleHistoryEvents")
|
15479
15491
|
memeber_set = set(params.keys())
|
15480
15492
|
for name, value in vars(self).items():
|
15481
15493
|
property_name = name[1:]
|
@@ -45673,6 +45685,8 @@ class DescribeScanVulSettingResponse(AbstractModel):
|
|
45673
45685
|
:type ClickTimeout: int
|
45674
45686
|
:param _Uuids: 为空默认扫描全部专业版、旗舰版、普惠版主机,不为空只扫描选中主机
|
45675
45687
|
:type Uuids: list of str
|
45688
|
+
:param _ScanMethod: 0版本比对,2版本比对+poc
|
45689
|
+
:type ScanMethod: int
|
45676
45690
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
45677
45691
|
:type RequestId: str
|
45678
45692
|
"""
|
@@ -45686,6 +45700,7 @@ class DescribeScanVulSettingResponse(AbstractModel):
|
|
45686
45700
|
self._EndTime = None
|
45687
45701
|
self._ClickTimeout = None
|
45688
45702
|
self._Uuids = None
|
45703
|
+
self._ScanMethod = None
|
45689
45704
|
self._RequestId = None
|
45690
45705
|
|
45691
45706
|
@property
|
@@ -45768,6 +45783,14 @@ class DescribeScanVulSettingResponse(AbstractModel):
|
|
45768
45783
|
def Uuids(self, Uuids):
|
45769
45784
|
self._Uuids = Uuids
|
45770
45785
|
|
45786
|
+
@property
|
45787
|
+
def ScanMethod(self):
|
45788
|
+
return self._ScanMethod
|
45789
|
+
|
45790
|
+
@ScanMethod.setter
|
45791
|
+
def ScanMethod(self, ScanMethod):
|
45792
|
+
self._ScanMethod = ScanMethod
|
45793
|
+
|
45771
45794
|
@property
|
45772
45795
|
def RequestId(self):
|
45773
45796
|
return self._RequestId
|
@@ -45788,6 +45811,7 @@ class DescribeScanVulSettingResponse(AbstractModel):
|
|
45788
45811
|
self._EndTime = params.get("EndTime")
|
45789
45812
|
self._ClickTimeout = params.get("ClickTimeout")
|
45790
45813
|
self._Uuids = params.get("Uuids")
|
45814
|
+
self._ScanMethod = params.get("ScanMethod")
|
45791
45815
|
self._RequestId = params.get("RequestId")
|
45792
45816
|
|
45793
45817
|
|
@@ -52063,6 +52087,8 @@ class DescribeWarningHostConfigResponse(AbstractModel):
|
|
52063
52087
|
:param _ItemLabelIds: 项目或标签的id列表,自选主机时为空
|
52064
52088
|
注意:此字段可能返回 null,表示取不到有效值。
|
52065
52089
|
:type ItemLabelIds: list of str
|
52090
|
+
:param _ExcludedQuuids: 需排除的机器列表
|
52091
|
+
:type ExcludedQuuids: list of str
|
52066
52092
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
52067
52093
|
:type RequestId: str
|
52068
52094
|
"""
|
@@ -52071,6 +52097,7 @@ class DescribeWarningHostConfigResponse(AbstractModel):
|
|
52071
52097
|
self._Quuids = None
|
52072
52098
|
self._TotalCount = None
|
52073
52099
|
self._ItemLabelIds = None
|
52100
|
+
self._ExcludedQuuids = None
|
52074
52101
|
self._RequestId = None
|
52075
52102
|
|
52076
52103
|
@property
|
@@ -52113,6 +52140,14 @@ class DescribeWarningHostConfigResponse(AbstractModel):
|
|
52113
52140
|
def ItemLabelIds(self, ItemLabelIds):
|
52114
52141
|
self._ItemLabelIds = ItemLabelIds
|
52115
52142
|
|
52143
|
+
@property
|
52144
|
+
def ExcludedQuuids(self):
|
52145
|
+
return self._ExcludedQuuids
|
52146
|
+
|
52147
|
+
@ExcludedQuuids.setter
|
52148
|
+
def ExcludedQuuids(self, ExcludedQuuids):
|
52149
|
+
self._ExcludedQuuids = ExcludedQuuids
|
52150
|
+
|
52116
52151
|
@property
|
52117
52152
|
def RequestId(self):
|
52118
52153
|
return self._RequestId
|
@@ -52128,6 +52163,7 @@ class DescribeWarningHostConfigResponse(AbstractModel):
|
|
52128
52163
|
self._Quuids = params.get("Quuids")
|
52129
52164
|
self._TotalCount = params.get("TotalCount")
|
52130
52165
|
self._ItemLabelIds = params.get("ItemLabelIds")
|
52166
|
+
self._ExcludedQuuids = params.get("ExcludedQuuids")
|
52131
52167
|
self._RequestId = params.get("RequestId")
|
52132
52168
|
|
52133
52169
|
|
@@ -72969,12 +73005,15 @@ class ModifyWarningHostConfigRequest(AbstractModel):
|
|
72969
73005
|
:type Quuids: list of str
|
72970
73006
|
:param _ItemLabelIds: 项目或标签的id列表,自选主机时为空
|
72971
73007
|
:type ItemLabelIds: list of str
|
73008
|
+
:param _ExcludedQuuids: 需排除的机器列表
|
73009
|
+
:type ExcludedQuuids: list of str
|
72972
73010
|
"""
|
72973
73011
|
self._Type = None
|
72974
73012
|
self._HostRange = None
|
72975
73013
|
self._ItemLabels = None
|
72976
73014
|
self._Quuids = None
|
72977
73015
|
self._ItemLabelIds = None
|
73016
|
+
self._ExcludedQuuids = None
|
72978
73017
|
|
72979
73018
|
@property
|
72980
73019
|
def Type(self):
|
@@ -73016,6 +73055,14 @@ class ModifyWarningHostConfigRequest(AbstractModel):
|
|
73016
73055
|
def ItemLabelIds(self, ItemLabelIds):
|
73017
73056
|
self._ItemLabelIds = ItemLabelIds
|
73018
73057
|
|
73058
|
+
@property
|
73059
|
+
def ExcludedQuuids(self):
|
73060
|
+
return self._ExcludedQuuids
|
73061
|
+
|
73062
|
+
@ExcludedQuuids.setter
|
73063
|
+
def ExcludedQuuids(self, ExcludedQuuids):
|
73064
|
+
self._ExcludedQuuids = ExcludedQuuids
|
73065
|
+
|
73019
73066
|
|
73020
73067
|
def _deserialize(self, params):
|
73021
73068
|
self._Type = params.get("Type")
|
@@ -73023,6 +73070,7 @@ class ModifyWarningHostConfigRequest(AbstractModel):
|
|
73023
73070
|
self._ItemLabels = params.get("ItemLabels")
|
73024
73071
|
self._Quuids = params.get("Quuids")
|
73025
73072
|
self._ItemLabelIds = params.get("ItemLabelIds")
|
73073
|
+
self._ExcludedQuuids = params.get("ExcludedQuuids")
|
73026
73074
|
memeber_set = set(params.keys())
|
73027
73075
|
for name, value in vars(self).items():
|
73028
73076
|
property_name = name[1:]
|
@@ -73146,6 +73194,8 @@ class ModifyWebHookPolicyRequest(AbstractModel):
|
|
73146
73194
|
:type IsDisabled: int
|
73147
73195
|
:param _Quuids: 主机列表
|
73148
73196
|
:type Quuids: list of str
|
73197
|
+
:param _ExcludedQuuids: 需排除的机器列表
|
73198
|
+
:type ExcludedQuuids: list of str
|
73149
73199
|
"""
|
73150
73200
|
self._Id = None
|
73151
73201
|
self._Name = None
|
@@ -73156,6 +73206,7 @@ class ModifyWebHookPolicyRequest(AbstractModel):
|
|
73156
73206
|
self._CustomFields = None
|
73157
73207
|
self._IsDisabled = None
|
73158
73208
|
self._Quuids = None
|
73209
|
+
self._ExcludedQuuids = None
|
73159
73210
|
|
73160
73211
|
@property
|
73161
73212
|
def Id(self):
|
@@ -73229,6 +73280,14 @@ class ModifyWebHookPolicyRequest(AbstractModel):
|
|
73229
73280
|
def Quuids(self, Quuids):
|
73230
73281
|
self._Quuids = Quuids
|
73231
73282
|
|
73283
|
+
@property
|
73284
|
+
def ExcludedQuuids(self):
|
73285
|
+
return self._ExcludedQuuids
|
73286
|
+
|
73287
|
+
@ExcludedQuuids.setter
|
73288
|
+
def ExcludedQuuids(self, ExcludedQuuids):
|
73289
|
+
self._ExcludedQuuids = ExcludedQuuids
|
73290
|
+
|
73232
73291
|
|
73233
73292
|
def _deserialize(self, params):
|
73234
73293
|
self._Id = params.get("Id")
|
@@ -73260,6 +73319,7 @@ class ModifyWebHookPolicyRequest(AbstractModel):
|
|
73260
73319
|
self._CustomFields.append(obj)
|
73261
73320
|
self._IsDisabled = params.get("IsDisabled")
|
73262
73321
|
self._Quuids = params.get("Quuids")
|
73322
|
+
self._ExcludedQuuids = params.get("ExcludedQuuids")
|
73263
73323
|
memeber_set = set(params.keys())
|
73264
73324
|
for name, value in vars(self).items():
|
73265
73325
|
property_name = name[1:]
|
@@ -81524,6 +81584,8 @@ class ScanVulRequest(AbstractModel):
|
|
81524
81584
|
:type TimeoutPeriod: int
|
81525
81585
|
:param _VulIds: 需要扫描的漏洞id
|
81526
81586
|
:type VulIds: list of int non-negative
|
81587
|
+
:param _ScanMethod: 0版本比对,2版本比对+poc
|
81588
|
+
:type ScanMethod: int
|
81527
81589
|
"""
|
81528
81590
|
self._VulLevels = None
|
81529
81591
|
self._HostType = None
|
@@ -81532,6 +81594,7 @@ class ScanVulRequest(AbstractModel):
|
|
81532
81594
|
self._VulEmergency = None
|
81533
81595
|
self._TimeoutPeriod = None
|
81534
81596
|
self._VulIds = None
|
81597
|
+
self._ScanMethod = None
|
81535
81598
|
|
81536
81599
|
@property
|
81537
81600
|
def VulLevels(self):
|
@@ -81589,6 +81652,14 @@ class ScanVulRequest(AbstractModel):
|
|
81589
81652
|
def VulIds(self, VulIds):
|
81590
81653
|
self._VulIds = VulIds
|
81591
81654
|
|
81655
|
+
@property
|
81656
|
+
def ScanMethod(self):
|
81657
|
+
return self._ScanMethod
|
81658
|
+
|
81659
|
+
@ScanMethod.setter
|
81660
|
+
def ScanMethod(self, ScanMethod):
|
81661
|
+
self._ScanMethod = ScanMethod
|
81662
|
+
|
81592
81663
|
|
81593
81664
|
def _deserialize(self, params):
|
81594
81665
|
self._VulLevels = params.get("VulLevels")
|
@@ -81598,6 +81669,7 @@ class ScanVulRequest(AbstractModel):
|
|
81598
81669
|
self._VulEmergency = params.get("VulEmergency")
|
81599
81670
|
self._TimeoutPeriod = params.get("TimeoutPeriod")
|
81600
81671
|
self._VulIds = params.get("VulIds")
|
81672
|
+
self._ScanMethod = params.get("ScanMethod")
|
81601
81673
|
memeber_set = set(params.keys())
|
81602
81674
|
for name, value in vars(self).items():
|
81603
81675
|
property_name = name[1:]
|
@@ -81671,6 +81743,8 @@ class ScanVulSettingRequest(AbstractModel):
|
|
81671
81743
|
:type EnableScan: int
|
81672
81744
|
:param _Uuids: 为空默认扫描全部专业版、旗舰版、普惠版主机,不为空只扫描选中主机
|
81673
81745
|
:type Uuids: list of str
|
81746
|
+
:param _ScanMethod: 0版本比对,2版本比对+poc
|
81747
|
+
:type ScanMethod: int
|
81674
81748
|
"""
|
81675
81749
|
self._TimerInterval = None
|
81676
81750
|
self._VulCategories = None
|
@@ -81681,6 +81755,7 @@ class ScanVulSettingRequest(AbstractModel):
|
|
81681
81755
|
self._EndTime = None
|
81682
81756
|
self._EnableScan = None
|
81683
81757
|
self._Uuids = None
|
81758
|
+
self._ScanMethod = None
|
81684
81759
|
|
81685
81760
|
@property
|
81686
81761
|
def TimerInterval(self):
|
@@ -81754,6 +81829,14 @@ class ScanVulSettingRequest(AbstractModel):
|
|
81754
81829
|
def Uuids(self, Uuids):
|
81755
81830
|
self._Uuids = Uuids
|
81756
81831
|
|
81832
|
+
@property
|
81833
|
+
def ScanMethod(self):
|
81834
|
+
return self._ScanMethod
|
81835
|
+
|
81836
|
+
@ScanMethod.setter
|
81837
|
+
def ScanMethod(self, ScanMethod):
|
81838
|
+
self._ScanMethod = ScanMethod
|
81839
|
+
|
81757
81840
|
|
81758
81841
|
def _deserialize(self, params):
|
81759
81842
|
self._TimerInterval = params.get("TimerInterval")
|
@@ -81765,6 +81848,7 @@ class ScanVulSettingRequest(AbstractModel):
|
|
81765
81848
|
self._EndTime = params.get("EndTime")
|
81766
81849
|
self._EnableScan = params.get("EnableScan")
|
81767
81850
|
self._Uuids = params.get("Uuids")
|
81851
|
+
self._ScanMethod = params.get("ScanMethod")
|
81768
81852
|
memeber_set = set(params.keys())
|
81769
81853
|
for name, value in vars(self).items():
|
81770
81854
|
property_name = name[1:]
|
@@ -3384,6 +3384,9 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3384
3384
|
:param _InstanceDeviceType: 实例机器类型
|
3385
3385
|
注意:此字段可能返回 null,表示取不到有效值。
|
3386
3386
|
:type InstanceDeviceType: str
|
3387
|
+
:param _InstanceStorageType: 实例存储类型
|
3388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3389
|
+
:type InstanceStorageType: str
|
3387
3390
|
"""
|
3388
3391
|
self._InstanceId = None
|
3389
3392
|
self._InstanceName = None
|
@@ -3400,6 +3403,7 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3400
3403
|
self._ServerlessStatus = None
|
3401
3404
|
self._InstanceTasks = None
|
3402
3405
|
self._InstanceDeviceType = None
|
3406
|
+
self._InstanceStorageType = None
|
3403
3407
|
|
3404
3408
|
@property
|
3405
3409
|
def InstanceId(self):
|
@@ -3521,6 +3525,14 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3521
3525
|
def InstanceDeviceType(self, InstanceDeviceType):
|
3522
3526
|
self._InstanceDeviceType = InstanceDeviceType
|
3523
3527
|
|
3528
|
+
@property
|
3529
|
+
def InstanceStorageType(self):
|
3530
|
+
return self._InstanceStorageType
|
3531
|
+
|
3532
|
+
@InstanceStorageType.setter
|
3533
|
+
def InstanceStorageType(self, InstanceStorageType):
|
3534
|
+
self._InstanceStorageType = InstanceStorageType
|
3535
|
+
|
3524
3536
|
|
3525
3537
|
def _deserialize(self, params):
|
3526
3538
|
self._InstanceId = params.get("InstanceId")
|
@@ -3543,6 +3555,7 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3543
3555
|
obj._deserialize(item)
|
3544
3556
|
self._InstanceTasks.append(obj)
|
3545
3557
|
self._InstanceDeviceType = params.get("InstanceDeviceType")
|
3558
|
+
self._InstanceStorageType = params.get("InstanceStorageType")
|
3546
3559
|
memeber_set = set(params.keys())
|
3547
3560
|
for name, value in vars(self).items():
|
3548
3561
|
property_name = name[1:]
|
@@ -7589,6 +7602,9 @@ pause
|
|
7589
7602
|
:param _DeviceType: 实例机器类型
|
7590
7603
|
注意:此字段可能返回 null,表示取不到有效值。
|
7591
7604
|
:type DeviceType: str
|
7605
|
+
:param _InstanceStorageType: 实例存储类型
|
7606
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7607
|
+
:type InstanceStorageType: str
|
7592
7608
|
"""
|
7593
7609
|
self._Uin = None
|
7594
7610
|
self._AppId = None
|
@@ -7645,6 +7661,7 @@ pause
|
|
7645
7661
|
self._InstanceIndexMode = None
|
7646
7662
|
self._InstanceAbility = None
|
7647
7663
|
self._DeviceType = None
|
7664
|
+
self._InstanceStorageType = None
|
7648
7665
|
|
7649
7666
|
@property
|
7650
7667
|
def Uin(self):
|
@@ -8086,6 +8103,14 @@ pause
|
|
8086
8103
|
def DeviceType(self, DeviceType):
|
8087
8104
|
self._DeviceType = DeviceType
|
8088
8105
|
|
8106
|
+
@property
|
8107
|
+
def InstanceStorageType(self):
|
8108
|
+
return self._InstanceStorageType
|
8109
|
+
|
8110
|
+
@InstanceStorageType.setter
|
8111
|
+
def InstanceStorageType(self, InstanceStorageType):
|
8112
|
+
self._InstanceStorageType = InstanceStorageType
|
8113
|
+
|
8089
8114
|
|
8090
8115
|
def _deserialize(self, params):
|
8091
8116
|
self._Uin = params.get("Uin")
|
@@ -8165,6 +8190,7 @@ pause
|
|
8165
8190
|
self._InstanceAbility = InstanceAbility()
|
8166
8191
|
self._InstanceAbility._deserialize(params.get("InstanceAbility"))
|
8167
8192
|
self._DeviceType = params.get("DeviceType")
|
8193
|
+
self._InstanceStorageType = params.get("InstanceStorageType")
|
8168
8194
|
memeber_set = set(params.keys())
|
8169
8195
|
for name, value in vars(self).items():
|
8170
8196
|
property_name = name[1:]
|
@@ -3960,7 +3960,9 @@ class ChannelCreateFlowSignUrlRequest(AbstractModel):
|
|
3960
3960
|
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
3961
3961
|
可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。
|
3962
3962
|
:type FlowId: str
|
3963
|
-
:param _FlowApproverInfos: 流程签署人列表,其中结构体的
|
3963
|
+
:param _FlowApproverInfos: 流程签署人列表,其中结构体的ApproverType必传。
|
3964
|
+
若为个人签署方或saas企业签署方,则Name,Mobile必传。OrganizationName 传对应企业名称。
|
3965
|
+
若为子客企业签署方则需传OpenId、OrganizationOpenId,其他可不传。
|
3964
3966
|
|
3965
3967
|
注:
|
3966
3968
|
`1. 签署人只能有手写签名、时间类型、印章类型的签署控件和内容填写控件,其他类型的签署控件暂时未支持。`
|
@@ -474,12 +474,12 @@ class FuseFaceUltraRequest(AbstractModel):
|
|
474
474
|
目前最多支持融合模板图片中的6张人脸。
|
475
475
|
:type MergeInfos: list of MergeInfo
|
476
476
|
:param _ModelUrl: 素材模版图片的url地址。
|
477
|
-
●base64 和 url 必须提供一个,如果都提供以
|
477
|
+
●base64 和 url 必须提供一个,如果都提供以 url 为准。
|
478
478
|
●素材图片限制:图片中面部尺寸大于34 * 34;图片尺寸大于64 * 64,小于8000 * 8000(单边限制)。图片url或者图片 base64 数据,base64 编码后大小不可超过10M(图片编码之后可能会大30%左右,建议合理控制图片大小)
|
479
479
|
●图片格式:支持jpg或png
|
480
480
|
:type ModelUrl: str
|
481
481
|
:param _ModelImage: 素材模版图片base64数据。
|
482
|
-
●base64 和 url 必须提供一个,如果都提供以
|
482
|
+
●base64 和 url 必须提供一个,如果都提供以 url 为准。
|
483
483
|
●素材图片限制:图片中面部尺寸大于34 * 34;图片尺寸大于64 * 64,小于8000*8000(单边限制)。图片url或者图片 base64 数据,base64 编码后大小不可超过10M(图片编码之后可能会大30%左右,建议合理控制图片大小)
|
484
484
|
●支持图片格式:支持jpg或png
|
485
485
|
:type ModelImage: str
|
@@ -497,11 +497,11 @@ class FuseFaceUltraRequest(AbstractModel):
|
|
497
497
|
默认在融合结果图右下角添加“本图片为AI合成图片”字样,您可根据自身需要替换为其他的Logo图片。
|
498
498
|
:type LogoParam: :class:`tencentcloud.facefusion.v20220927.models.LogoParam`
|
499
499
|
:param _SwapModelType: 融合模型类型参数:默认为1。
|
500
|
-
图片人脸融合(专业版)针对不同场景,提供多种模型供选择。如您的产品是泛娱乐场景,推荐使用1;如您主要用于影像场景,推荐使用5。其他模型类型也可以结合您的产品使用场景进行选择,也许会有意想不到的效果
|
500
|
+
图片人脸融合(专业版)针对不同场景,提供多种模型供选择。如您的产品是泛娱乐场景,推荐使用1;如您主要用于影像场景,推荐使用4、5。其他模型类型也可以结合您的产品使用场景进行选择,也许会有意想不到的效果
|
501
501
|
1:默认泛娱乐场景,画面偏锐。
|
502
502
|
2:影视级场景,画面偏自然。
|
503
503
|
3:影视级场景,高分辨率,画面偏自然。
|
504
|
-
4
|
504
|
+
4:影视级场景,高分辦率,高人脸相似度,画面偏自然,可用于证件照等场景。
|
505
505
|
5:影视级场景,高分辨率,对闭眼和遮挡更友好。
|
506
506
|
:type SwapModelType: int
|
507
507
|
"""
|
@@ -688,24 +688,33 @@ class FusionUltraParam(AbstractModel):
|
|
688
688
|
r"""
|
689
689
|
:param _WarpRadio: 拉脸强度。主要用于调整生成结果人脸脸型更像素材模板还是用户人脸。取值越大越像用户人脸。
|
690
690
|
取值范围:0-1之间。默认取值0.7。
|
691
|
+
|
692
|
+
该参数仅对SwapModelType(模型类型)取值1-5生效
|
691
693
|
注意:此字段可能返回 null,表示取不到有效值。
|
692
694
|
:type WarpRadio: float
|
693
695
|
:param _EnhanceRadio: 人脸增强强度。对整个人脸进行增强,增加清晰度,改善质量。当生成的人脸不够清晰,质感不够好的时候可以设置。取值越大增强强度越大。
|
694
696
|
取值范围:0-1之间。默认取值1。
|
697
|
+
|
698
|
+
该参数仅对SwapModelType(模型类型)取值1-5生效
|
695
699
|
注意:此字段可能返回 null,表示取不到有效值。
|
696
700
|
:type EnhanceRadio: float
|
697
701
|
:param _MpRadio: 磨皮强度。当生成脸的图像面部显脏时,可进行设置。
|
698
702
|
取值范围:0-1之间。默认取值1。
|
703
|
+
|
704
|
+
该参数仅对SwapModelType(模型类型)取值1-5生效
|
699
705
|
注意:此字段可能返回 null,表示取不到有效值。
|
700
706
|
:type MpRadio: float
|
701
707
|
:param _BlurRadio: 人脸模糊开关(暂不支持)
|
702
708
|
当生成人脸比较清晰时,将人脸模糊到接近模板的清晰度的程度
|
709
|
+
|
710
|
+
该参数仅对SwapModelType(模型类型)取值1-5生效
|
703
711
|
注意:此字段可能返回 null,表示取不到有效值。
|
704
712
|
:type BlurRadio: float
|
705
713
|
:param _TeethEnhanceRadio: 牙齿增强开关,默认取值为1
|
706
714
|
牙齿增强,修复牙齿。当生成牙齿不好(如牙齿裂开)可以打开此开关
|
707
715
|
0:牙齿增强关闭
|
708
716
|
1:牙齿增强打开
|
717
|
+
该参数仅对SwapModelType(模型类型)取值1-5生效
|
709
718
|
注意:此字段可能返回 null,表示取不到有效值。
|
710
719
|
:type TeethEnhanceRadio: float
|
711
720
|
"""
|
@@ -787,6 +787,29 @@ class LcicClient(AbstractClient):
|
|
787
787
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
788
788
|
|
789
789
|
|
790
|
+
def DescribeRecordStream(self, request):
|
791
|
+
"""录制流查询
|
792
|
+
|
793
|
+
:param request: Request instance for DescribeRecordStream.
|
794
|
+
:type request: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordStreamRequest`
|
795
|
+
:rtype: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordStreamResponse`
|
796
|
+
|
797
|
+
"""
|
798
|
+
try:
|
799
|
+
params = request._serialize()
|
800
|
+
headers = request.headers
|
801
|
+
body = self.call("DescribeRecordStream", params, headers=headers)
|
802
|
+
response = json.loads(body)
|
803
|
+
model = models.DescribeRecordStreamResponse()
|
804
|
+
model._deserialize(response["Response"])
|
805
|
+
return model
|
806
|
+
except Exception as e:
|
807
|
+
if isinstance(e, TencentCloudSDKException):
|
808
|
+
raise
|
809
|
+
else:
|
810
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
811
|
+
|
812
|
+
|
790
813
|
def DescribeRoom(self, request):
|
791
814
|
"""获取房间配置信息
|
792
815
|
|