tencentcloud-sdk-python 3.0.1340__py2.py3-none-any.whl → 3.0.1342__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/autoscaling/v20180419/autoscaling_client.py +26 -0
- tencentcloud/autoscaling/v20180419/models.py +94 -0
- tencentcloud/billing/v20180709/models.py +0 -246
- tencentcloud/captcha/v20190722/models.py +6 -24
- tencentcloud/cdc/v20201214/models.py +29 -86
- tencentcloud/cdwch/v20200915/models.py +124 -0
- tencentcloud/cdz/v20221123/models.py +0 -8
- tencentcloud/cfs/v20190719/errorcodes.py +3 -0
- tencentcloud/cvm/v20170312/cvm_client.py +23 -0
- tencentcloud/cvm/v20170312/models.py +211 -4
- tencentcloud/cwp/v20180228/models.py +99 -24
- tencentcloud/cynosdb/v20190107/models.py +0 -290
- tencentcloud/dbbrain/v20210527/models.py +15 -0
- tencentcloud/domain/v20180808/models.py +30 -24
- tencentcloud/ess/v20201111/models.py +69 -2
- tencentcloud/essbasic/v20210526/models.py +73 -6
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +629 -21
- tencentcloud/lcic/v20220817/models.py +4 -4
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +12 -3
- tencentcloud/lighthouse/v20200324/models.py +139 -39
- tencentcloud/lke/v20231130/lke_client.py +2 -2
- tencentcloud/lke/v20231130/models.py +6 -6
- tencentcloud/mariadb/v20170312/models.py +0 -24
- tencentcloud/mongodb/v20190725/models.py +6 -6
- tencentcloud/ocr/v20181119/models.py +82 -0
- tencentcloud/redis/v20180412/models.py +8 -8
- tencentcloud/ses/v20201002/models.py +2 -4
- tencentcloud/ssl/v20191205/models.py +7 -319
- tencentcloud/tat/v20201028/models.py +10 -8
- tencentcloud/tcb/v20180608/models.py +0 -230
- tencentcloud/tchd/v20230306/models.py +168 -0
- tencentcloud/tchd/v20230306/tchd_client.py +24 -0
- tencentcloud/tdmq/v20200217/models.py +17 -198
- tencentcloud/teo/v20220901/models.py +227 -1
- tencentcloud/teo/v20220901/teo_client.py +8 -4
- tencentcloud/trocket/v20230308/models.py +109 -0
- tencentcloud/trocket/v20230308/trocket_client.py +23 -0
- tencentcloud/trro/v20220325/models.py +140 -0
- tencentcloud/trro/v20220325/trro_client.py +25 -0
- tencentcloud/vpc/v20170312/errorcodes.py +9 -0
- tencentcloud/waf/v20180125/models.py +398 -0
- tencentcloud/waf/v20180125/waf_client.py +69 -0
- tencentcloud/wedata/v20210820/models.py +133 -254
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1342.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1342.dist-info}/RECORD +50 -50
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1342.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1342.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1342.dist-info}/top_level.txt +0 -0
@@ -4503,6 +4503,8 @@ class DescribeDBDiagEventsRequest(AbstractModel):
|
|
4503
4503
|
:type Severities: list of int
|
4504
4504
|
:param _InstanceIds: 实例ID列表。
|
4505
4505
|
:type InstanceIds: list of str
|
4506
|
+
:param _Product: 服务产品类型,支持值包括:"mysql" - 云数据库 MySQL,"redis" - 云数据库 Redis,默认为"mysql"。
|
4507
|
+
:type Product: str
|
4506
4508
|
:param _Offset: 偏移量,默认0。
|
4507
4509
|
:type Offset: int
|
4508
4510
|
:param _Limit: 返回数量,默认20,最大值为50。
|
@@ -4512,6 +4514,7 @@ class DescribeDBDiagEventsRequest(AbstractModel):
|
|
4512
4514
|
self._EndTime = None
|
4513
4515
|
self._Severities = None
|
4514
4516
|
self._InstanceIds = None
|
4517
|
+
self._Product = None
|
4515
4518
|
self._Offset = None
|
4516
4519
|
self._Limit = None
|
4517
4520
|
|
@@ -4559,6 +4562,17 @@ class DescribeDBDiagEventsRequest(AbstractModel):
|
|
4559
4562
|
def InstanceIds(self, InstanceIds):
|
4560
4563
|
self._InstanceIds = InstanceIds
|
4561
4564
|
|
4565
|
+
@property
|
4566
|
+
def Product(self):
|
4567
|
+
"""服务产品类型,支持值包括:"mysql" - 云数据库 MySQL,"redis" - 云数据库 Redis,默认为"mysql"。
|
4568
|
+
:rtype: str
|
4569
|
+
"""
|
4570
|
+
return self._Product
|
4571
|
+
|
4572
|
+
@Product.setter
|
4573
|
+
def Product(self, Product):
|
4574
|
+
self._Product = Product
|
4575
|
+
|
4562
4576
|
@property
|
4563
4577
|
def Offset(self):
|
4564
4578
|
"""偏移量,默认0。
|
@@ -4587,6 +4601,7 @@ class DescribeDBDiagEventsRequest(AbstractModel):
|
|
4587
4601
|
self._EndTime = params.get("EndTime")
|
4588
4602
|
self._Severities = params.get("Severities")
|
4589
4603
|
self._InstanceIds = params.get("InstanceIds")
|
4604
|
+
self._Product = params.get("Product")
|
4590
4605
|
self._Offset = params.get("Offset")
|
4591
4606
|
self._Limit = params.get("Limit")
|
4592
4607
|
memeber_set = set(params.keys())
|
@@ -322,22 +322,17 @@ class BidDetailPageResponse(AbstractModel):
|
|
322
322
|
def __init__(self):
|
323
323
|
r"""
|
324
324
|
:param _Domain: 域名
|
325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
326
325
|
:type Domain: str
|
327
326
|
:param _CurrentPrice: 当前域名价格
|
328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
329
327
|
:type CurrentPrice: float
|
330
328
|
:param _BidPrice: 用户上次出价
|
331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
332
329
|
:type BidPrice: float
|
333
330
|
:param _CurrentPriceScope: 当前加价幅度
|
334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
335
331
|
:type CurrentPriceScope: float
|
336
332
|
:param _PriceScope: 加价幅度区间配置
|
337
333
|
注意:此字段可能返回 null,表示取不到有效值。
|
338
334
|
:type PriceScope: list of PriceScopeConf
|
339
335
|
:param _DepositPrice: 用户当前已经支付了的保证金
|
340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
341
336
|
:type DepositPrice: float
|
342
337
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
343
338
|
:type RequestId: str
|
@@ -353,7 +348,6 @@ class BidDetailPageResponse(AbstractModel):
|
|
353
348
|
@property
|
354
349
|
def Domain(self):
|
355
350
|
"""域名
|
356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
357
351
|
:rtype: str
|
358
352
|
"""
|
359
353
|
return self._Domain
|
@@ -365,7 +359,6 @@ class BidDetailPageResponse(AbstractModel):
|
|
365
359
|
@property
|
366
360
|
def CurrentPrice(self):
|
367
361
|
"""当前域名价格
|
368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
369
362
|
:rtype: float
|
370
363
|
"""
|
371
364
|
return self._CurrentPrice
|
@@ -377,7 +370,6 @@ class BidDetailPageResponse(AbstractModel):
|
|
377
370
|
@property
|
378
371
|
def BidPrice(self):
|
379
372
|
"""用户上次出价
|
380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
381
373
|
:rtype: float
|
382
374
|
"""
|
383
375
|
return self._BidPrice
|
@@ -389,7 +381,6 @@ class BidDetailPageResponse(AbstractModel):
|
|
389
381
|
@property
|
390
382
|
def CurrentPriceScope(self):
|
391
383
|
"""当前加价幅度
|
392
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
393
384
|
:rtype: float
|
394
385
|
"""
|
395
386
|
return self._CurrentPriceScope
|
@@ -413,7 +404,6 @@ class BidDetailPageResponse(AbstractModel):
|
|
413
404
|
@property
|
414
405
|
def DepositPrice(self):
|
415
406
|
"""用户当前已经支付了的保证金
|
416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
417
407
|
:rtype: float
|
418
408
|
"""
|
419
409
|
return self._DepositPrice
|
@@ -2150,7 +2140,6 @@ class CreateDomainBatchResponse(AbstractModel):
|
|
2150
2140
|
def __init__(self):
|
2151
2141
|
r"""
|
2152
2142
|
:param _LogId: 批量日志ID
|
2153
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2154
2143
|
:type LogId: int
|
2155
2144
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2156
2145
|
:type RequestId: str
|
@@ -2161,7 +2150,6 @@ class CreateDomainBatchResponse(AbstractModel):
|
|
2161
2150
|
@property
|
2162
2151
|
def LogId(self):
|
2163
2152
|
"""批量日志ID
|
2164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2165
2153
|
:rtype: int
|
2166
2154
|
"""
|
2167
2155
|
return self._LogId
|
@@ -2935,10 +2923,8 @@ class DescribeAuctionListResponse(AbstractModel):
|
|
2935
2923
|
def __init__(self):
|
2936
2924
|
r"""
|
2937
2925
|
:param _AuctionList: 竞拍详情列表
|
2938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2939
2926
|
:type AuctionList: list of AuctionInfo
|
2940
2927
|
:param _TotalCount: 总数
|
2941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2942
2928
|
:type TotalCount: int
|
2943
2929
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2944
2930
|
:type RequestId: str
|
@@ -2950,7 +2936,6 @@ class DescribeAuctionListResponse(AbstractModel):
|
|
2950
2936
|
@property
|
2951
2937
|
def AuctionList(self):
|
2952
2938
|
"""竞拍详情列表
|
2953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2954
2939
|
:rtype: list of AuctionInfo
|
2955
2940
|
"""
|
2956
2941
|
return self._AuctionList
|
@@ -2962,7 +2947,6 @@ class DescribeAuctionListResponse(AbstractModel):
|
|
2962
2947
|
@property
|
2963
2948
|
def TotalCount(self):
|
2964
2949
|
"""总数
|
2965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2966
2950
|
:rtype: int
|
2967
2951
|
"""
|
2968
2952
|
return self._TotalCount
|
@@ -3070,7 +3054,6 @@ class DescribeBatchOperationLogDetailsResponse(AbstractModel):
|
|
3070
3054
|
:param _TotalCount: 总数量。
|
3071
3055
|
:type TotalCount: int
|
3072
3056
|
:param _DomainBatchDetailSet: 日志详情列表。
|
3073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3074
3057
|
:type DomainBatchDetailSet: list of DomainBatchDetailSet
|
3075
3058
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3076
3059
|
:type RequestId: str
|
@@ -3093,7 +3076,6 @@ class DescribeBatchOperationLogDetailsResponse(AbstractModel):
|
|
3093
3076
|
@property
|
3094
3077
|
def DomainBatchDetailSet(self):
|
3095
3078
|
"""日志详情列表。
|
3096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3097
3079
|
:rtype: list of DomainBatchDetailSet
|
3098
3080
|
"""
|
3099
3081
|
return self._DomainBatchDetailSet
|
@@ -3186,7 +3168,6 @@ class DescribeBatchOperationLogsResponse(AbstractModel):
|
|
3186
3168
|
:param _TotalCount: 总数量
|
3187
3169
|
:type TotalCount: int
|
3188
3170
|
:param _DomainBatchLogSet: 日志列表
|
3189
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3190
3171
|
:type DomainBatchLogSet: list of DomainBatchLogSet
|
3191
3172
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3192
3173
|
:type RequestId: str
|
@@ -3209,7 +3190,6 @@ class DescribeBatchOperationLogsResponse(AbstractModel):
|
|
3209
3190
|
@property
|
3210
3191
|
def DomainBatchLogSet(self):
|
3211
3192
|
"""日志列表
|
3212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3213
3193
|
:rtype: list of DomainBatchLogSet
|
3214
3194
|
"""
|
3215
3195
|
return self._DomainBatchLogSet
|
@@ -4770,7 +4750,6 @@ class DescribeDomainNameListResponse(AbstractModel):
|
|
4770
4750
|
def __init__(self):
|
4771
4751
|
r"""
|
4772
4752
|
:param _DomainSet: 域名信息集合
|
4773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4774
4753
|
:type DomainSet: list of DomainList
|
4775
4754
|
:param _TotalCount: 域名总数量
|
4776
4755
|
:type TotalCount: int
|
@@ -4784,7 +4763,6 @@ class DescribeDomainNameListResponse(AbstractModel):
|
|
4784
4763
|
@property
|
4785
4764
|
def DomainSet(self):
|
4786
4765
|
"""域名信息集合
|
4787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4788
4766
|
:rtype: list of DomainList
|
4789
4767
|
"""
|
4790
4768
|
return self._DomainSet
|
@@ -5956,7 +5934,6 @@ class DescribePreReleaseListResponse(AbstractModel):
|
|
5956
5934
|
:param _TotalCount: 数量
|
5957
5935
|
:type TotalCount: int
|
5958
5936
|
:param _PreReleaseList: 预释放列表
|
5959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5960
5937
|
:type PreReleaseList: list of PreReleaseInfo
|
5961
5938
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5962
5939
|
:type RequestId: str
|
@@ -5979,7 +5956,6 @@ class DescribePreReleaseListResponse(AbstractModel):
|
|
5979
5956
|
@property
|
5980
5957
|
def PreReleaseList(self):
|
5981
5958
|
"""预释放列表
|
5982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5983
5959
|
:rtype: list of PreReleaseInfo
|
5984
5960
|
"""
|
5985
5961
|
return self._PreReleaseList
|
@@ -7368,6 +7344,10 @@ done 执行完成。
|
|
7368
7344
|
:type Doing: int
|
7369
7345
|
:param _Failed: 批量操作失败个数
|
7370
7346
|
:type Failed: int
|
7347
|
+
:param _PayStatus: 是否付费
|
7348
|
+
:type PayStatus: bool
|
7349
|
+
:param _BigDealId: 大订单ID
|
7350
|
+
:type BigDealId: str
|
7371
7351
|
"""
|
7372
7352
|
self._LogId = None
|
7373
7353
|
self._Number = None
|
@@ -7376,6 +7356,8 @@ done 执行完成。
|
|
7376
7356
|
self._Success = None
|
7377
7357
|
self._Doing = None
|
7378
7358
|
self._Failed = None
|
7359
|
+
self._PayStatus = None
|
7360
|
+
self._BigDealId = None
|
7379
7361
|
|
7380
7362
|
@property
|
7381
7363
|
def LogId(self):
|
@@ -7456,6 +7438,28 @@ done 执行完成。
|
|
7456
7438
|
def Failed(self, Failed):
|
7457
7439
|
self._Failed = Failed
|
7458
7440
|
|
7441
|
+
@property
|
7442
|
+
def PayStatus(self):
|
7443
|
+
"""是否付费
|
7444
|
+
:rtype: bool
|
7445
|
+
"""
|
7446
|
+
return self._PayStatus
|
7447
|
+
|
7448
|
+
@PayStatus.setter
|
7449
|
+
def PayStatus(self, PayStatus):
|
7450
|
+
self._PayStatus = PayStatus
|
7451
|
+
|
7452
|
+
@property
|
7453
|
+
def BigDealId(self):
|
7454
|
+
"""大订单ID
|
7455
|
+
:rtype: str
|
7456
|
+
"""
|
7457
|
+
return self._BigDealId
|
7458
|
+
|
7459
|
+
@BigDealId.setter
|
7460
|
+
def BigDealId(self, BigDealId):
|
7461
|
+
self._BigDealId = BigDealId
|
7462
|
+
|
7459
7463
|
|
7460
7464
|
def _deserialize(self, params):
|
7461
7465
|
self._LogId = params.get("LogId")
|
@@ -7465,6 +7469,8 @@ done 执行完成。
|
|
7465
7469
|
self._Success = params.get("Success")
|
7466
7470
|
self._Doing = params.get("Doing")
|
7467
7471
|
self._Failed = params.get("Failed")
|
7472
|
+
self._PayStatus = params.get("PayStatus")
|
7473
|
+
self._BigDealId = params.get("BigDealId")
|
7468
7474
|
memeber_set = set(params.keys())
|
7469
7475
|
for name, value in vars(self).items():
|
7470
7476
|
property_name = name[1:]
|
@@ -13128,6 +13128,10 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
13128
13128
|
:type InitiatorComponents: list of Component
|
13129
13129
|
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
13130
13130
|
:type FlowDisplayType: int
|
13131
|
+
:param _SignComponentConfig: 签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
13132
|
+
|
13133
|
+
- 签署控件 是否默认展示日期.
|
13134
|
+
:type SignComponentConfig: :class:`tencentcloud.ess.v20201111.models.SignComponentConfig`
|
13131
13135
|
"""
|
13132
13136
|
self._Operator = None
|
13133
13137
|
self._ResourceId = None
|
@@ -13149,6 +13153,7 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
13149
13153
|
self._Agent = None
|
13150
13154
|
self._InitiatorComponents = None
|
13151
13155
|
self._FlowDisplayType = None
|
13156
|
+
self._SignComponentConfig = None
|
13152
13157
|
|
13153
13158
|
@property
|
13154
13159
|
def Operator(self):
|
@@ -13410,6 +13415,19 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
13410
13415
|
def FlowDisplayType(self, FlowDisplayType):
|
13411
13416
|
self._FlowDisplayType = FlowDisplayType
|
13412
13417
|
|
13418
|
+
@property
|
13419
|
+
def SignComponentConfig(self):
|
13420
|
+
"""签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
13421
|
+
|
13422
|
+
- 签署控件 是否默认展示日期.
|
13423
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.SignComponentConfig`
|
13424
|
+
"""
|
13425
|
+
return self._SignComponentConfig
|
13426
|
+
|
13427
|
+
@SignComponentConfig.setter
|
13428
|
+
def SignComponentConfig(self, SignComponentConfig):
|
13429
|
+
self._SignComponentConfig = SignComponentConfig
|
13430
|
+
|
13413
13431
|
|
13414
13432
|
def _deserialize(self, params):
|
13415
13433
|
if params.get("Operator") is not None:
|
@@ -13455,6 +13473,9 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
13455
13473
|
obj._deserialize(item)
|
13456
13474
|
self._InitiatorComponents.append(obj)
|
13457
13475
|
self._FlowDisplayType = params.get("FlowDisplayType")
|
13476
|
+
if params.get("SignComponentConfig") is not None:
|
13477
|
+
self._SignComponentConfig = SignComponentConfig()
|
13478
|
+
self._SignComponentConfig._deserialize(params.get("SignComponentConfig"))
|
13458
13479
|
memeber_set = set(params.keys())
|
13459
13480
|
for name, value in vars(self).items():
|
13460
13481
|
property_name = name[1:]
|
@@ -25385,7 +25406,7 @@ false:有序签
|
|
25385
25406
|
:param _AutoSignScene: 个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
25386
25407
|
|
25387
25408
|
:type AutoSignScene: str
|
25388
|
-
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
25409
|
+
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
25389
25410
|
:type FlowDisplayType: int
|
25390
25411
|
"""
|
25391
25412
|
self._FlowName = None
|
@@ -25577,7 +25598,7 @@ false:有序签
|
|
25577
25598
|
|
25578
25599
|
@property
|
25579
25600
|
def FlowDisplayType(self):
|
25580
|
-
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
25601
|
+
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
25581
25602
|
:rtype: int
|
25582
25603
|
"""
|
25583
25604
|
return self._FlowDisplayType
|
@@ -30806,6 +30827,52 @@ CONTRACT:合同专用章
|
|
30806
30827
|
|
30807
30828
|
|
30808
30829
|
|
30830
|
+
class SignComponentConfig(AbstractModel):
|
30831
|
+
"""签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
30832
|
+
|
30833
|
+
- 签署控件是否默认展示日期.
|
30834
|
+
|
30835
|
+
"""
|
30836
|
+
|
30837
|
+
def __init__(self):
|
30838
|
+
r"""
|
30839
|
+
:param _HideDate: 签署控件默认属性配置,是否默认展示签署日期, 在页面中可以进行修改。
|
30840
|
+
|
30841
|
+
- false 展示签署日期(默认)
|
30842
|
+
- true 不展示签署日期
|
30843
|
+
。
|
30844
|
+
:type HideDate: bool
|
30845
|
+
"""
|
30846
|
+
self._HideDate = None
|
30847
|
+
|
30848
|
+
@property
|
30849
|
+
def HideDate(self):
|
30850
|
+
"""签署控件默认属性配置,是否默认展示签署日期, 在页面中可以进行修改。
|
30851
|
+
|
30852
|
+
- false 展示签署日期(默认)
|
30853
|
+
- true 不展示签署日期
|
30854
|
+
。
|
30855
|
+
:rtype: bool
|
30856
|
+
"""
|
30857
|
+
return self._HideDate
|
30858
|
+
|
30859
|
+
@HideDate.setter
|
30860
|
+
def HideDate(self, HideDate):
|
30861
|
+
self._HideDate = HideDate
|
30862
|
+
|
30863
|
+
|
30864
|
+
def _deserialize(self, params):
|
30865
|
+
self._HideDate = params.get("HideDate")
|
30866
|
+
memeber_set = set(params.keys())
|
30867
|
+
for name, value in vars(self).items():
|
30868
|
+
property_name = name[1:]
|
30869
|
+
if property_name in memeber_set:
|
30870
|
+
memeber_set.remove(property_name)
|
30871
|
+
if len(memeber_set) > 0:
|
30872
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
30873
|
+
|
30874
|
+
|
30875
|
+
|
30809
30876
|
class SignQrCode(AbstractModel):
|
30810
30877
|
"""签署二维码的基本信息,用于创建二维码,用户可扫描该二维码进行签署操作。
|
30811
30878
|
|
@@ -1086,7 +1086,7 @@ class BaseFlowInfo(AbstractModel):
|
|
1086
1086
|
:type NeedCreateReview: bool
|
1087
1087
|
:param _Components: 填写控件:文件发起使用
|
1088
1088
|
:type Components: list of Component
|
1089
|
-
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
1089
|
+
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
1090
1090
|
|
1091
1091
|
:type FlowDisplayType: int
|
1092
1092
|
"""
|
@@ -1256,7 +1256,7 @@ class BaseFlowInfo(AbstractModel):
|
|
1256
1256
|
|
1257
1257
|
@property
|
1258
1258
|
def FlowDisplayType(self):
|
1259
|
-
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
1259
|
+
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
1260
1260
|
|
1261
1261
|
:rtype: int
|
1262
1262
|
"""
|
@@ -6490,6 +6490,10 @@ class ChannelCreatePrepareFlowRequest(AbstractModel):
|
|
6490
6490
|
:type Organization: :class:`tencentcloud.essbasic.v20210526.models.OrganizationInfo`
|
6491
6491
|
:param _Operator: 操作人(用户)信息,不用传
|
6492
6492
|
:type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
|
6493
|
+
:param _SignComponentConfig: 签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
6494
|
+
|
6495
|
+
- 签署控件 是否默认展示日期.
|
6496
|
+
:type SignComponentConfig: :class:`tencentcloud.essbasic.v20210526.models.SignComponentConfig`
|
6493
6497
|
"""
|
6494
6498
|
self._ResourceType = None
|
6495
6499
|
self._FlowInfo = None
|
@@ -6501,6 +6505,7 @@ class ChannelCreatePrepareFlowRequest(AbstractModel):
|
|
6501
6505
|
self._NeedPreview = None
|
6502
6506
|
self._Organization = None
|
6503
6507
|
self._Operator = None
|
6508
|
+
self._SignComponentConfig = None
|
6504
6509
|
|
6505
6510
|
@property
|
6506
6511
|
def ResourceType(self):
|
@@ -6640,6 +6645,19 @@ class ChannelCreatePrepareFlowRequest(AbstractModel):
|
|
6640
6645
|
|
6641
6646
|
self._Operator = Operator
|
6642
6647
|
|
6648
|
+
@property
|
6649
|
+
def SignComponentConfig(self):
|
6650
|
+
"""签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
6651
|
+
|
6652
|
+
- 签署控件 是否默认展示日期.
|
6653
|
+
:rtype: :class:`tencentcloud.essbasic.v20210526.models.SignComponentConfig`
|
6654
|
+
"""
|
6655
|
+
return self._SignComponentConfig
|
6656
|
+
|
6657
|
+
@SignComponentConfig.setter
|
6658
|
+
def SignComponentConfig(self, SignComponentConfig):
|
6659
|
+
self._SignComponentConfig = SignComponentConfig
|
6660
|
+
|
6643
6661
|
|
6644
6662
|
def _deserialize(self, params):
|
6645
6663
|
self._ResourceType = params.get("ResourceType")
|
@@ -6667,6 +6685,9 @@ class ChannelCreatePrepareFlowRequest(AbstractModel):
|
|
6667
6685
|
if params.get("Operator") is not None:
|
6668
6686
|
self._Operator = UserInfo()
|
6669
6687
|
self._Operator._deserialize(params.get("Operator"))
|
6688
|
+
if params.get("SignComponentConfig") is not None:
|
6689
|
+
self._SignComponentConfig = SignComponentConfig()
|
6690
|
+
self._SignComponentConfig._deserialize(params.get("SignComponentConfig"))
|
6670
6691
|
memeber_set = set(params.keys())
|
6671
6692
|
for name, value in vars(self).items():
|
6672
6693
|
property_name = name[1:]
|
@@ -22529,7 +22550,7 @@ class FlowFileInfo(AbstractModel):
|
|
22529
22550
|
:type CustomShowMap: str
|
22530
22551
|
:param _NeedSignReview: 本企业(发起方企业)是否需要签署审批
|
22531
22552
|
:type NeedSignReview: bool
|
22532
|
-
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
22553
|
+
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
22533
22554
|
:type FlowDisplayType: int
|
22534
22555
|
"""
|
22535
22556
|
self._FileIds = None
|
@@ -22684,7 +22705,7 @@ class FlowFileInfo(AbstractModel):
|
|
22684
22705
|
|
22685
22706
|
@property
|
22686
22707
|
def FlowDisplayType(self):
|
22687
|
-
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
22708
|
+
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
22688
22709
|
:rtype: int
|
22689
22710
|
"""
|
22690
22711
|
return self._FlowDisplayType
|
@@ -23121,7 +23142,7 @@ class FlowInfo(AbstractModel):
|
|
23121
23142
|
<ul><li> **E_PRESCRIPTION_AUTO_SIGN**:电子处方单(医疗自动签) </li><li> **OTHER** : 通用场景</li></ul>
|
23122
23143
|
注: `个人自动签名场景是白名单功能,使用前请与对接的客户经理联系沟通。`
|
23123
23144
|
:type AutoSignScene: str
|
23124
|
-
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
23145
|
+
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
23125
23146
|
:type FlowDisplayType: int
|
23126
23147
|
"""
|
23127
23148
|
self._FlowName = None
|
@@ -23349,7 +23370,7 @@ class FlowInfo(AbstractModel):
|
|
23349
23370
|
|
23350
23371
|
@property
|
23351
23372
|
def FlowDisplayType(self):
|
23352
|
-
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
23373
|
+
"""在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
23353
23374
|
:rtype: int
|
23354
23375
|
"""
|
23355
23376
|
return self._FlowDisplayType
|
@@ -27789,6 +27810,52 @@ class ResourceUrlInfo(AbstractModel):
|
|
27789
27810
|
|
27790
27811
|
|
27791
27812
|
|
27813
|
+
class SignComponentConfig(AbstractModel):
|
27814
|
+
"""签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
27815
|
+
|
27816
|
+
- 签署控件 是否默认展示日期.
|
27817
|
+
|
27818
|
+
"""
|
27819
|
+
|
27820
|
+
def __init__(self):
|
27821
|
+
r"""
|
27822
|
+
:param _HideDate: 签署控件默认属性配置,是否默认展示签署日期, 在页面中可以进行修改。
|
27823
|
+
|
27824
|
+
- false 展示签署日期(默认)
|
27825
|
+
- true 不展示签署日期
|
27826
|
+
。
|
27827
|
+
:type HideDate: bool
|
27828
|
+
"""
|
27829
|
+
self._HideDate = None
|
27830
|
+
|
27831
|
+
@property
|
27832
|
+
def HideDate(self):
|
27833
|
+
"""签署控件默认属性配置,是否默认展示签署日期, 在页面中可以进行修改。
|
27834
|
+
|
27835
|
+
- false 展示签署日期(默认)
|
27836
|
+
- true 不展示签署日期
|
27837
|
+
。
|
27838
|
+
:rtype: bool
|
27839
|
+
"""
|
27840
|
+
return self._HideDate
|
27841
|
+
|
27842
|
+
@HideDate.setter
|
27843
|
+
def HideDate(self, HideDate):
|
27844
|
+
self._HideDate = HideDate
|
27845
|
+
|
27846
|
+
|
27847
|
+
def _deserialize(self, params):
|
27848
|
+
self._HideDate = params.get("HideDate")
|
27849
|
+
memeber_set = set(params.keys())
|
27850
|
+
for name, value in vars(self).items():
|
27851
|
+
property_name = name[1:]
|
27852
|
+
if property_name in memeber_set:
|
27853
|
+
memeber_set.remove(property_name)
|
27854
|
+
if len(memeber_set) > 0:
|
27855
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27856
|
+
|
27857
|
+
|
27858
|
+
|
27792
27859
|
class SignQrCode(AbstractModel):
|
27793
27860
|
"""签署二维码的基本信息,用于创建二维码,用户可扫描该二维码进行签署操作。
|
27794
27861
|
|
@@ -290,6 +290,31 @@ class HunyuanClient(AbstractClient):
|
|
290
290
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
291
291
|
|
292
292
|
|
293
|
+
def GroupChatCompletions(self, request):
|
294
|
+
"""如需使用OpenAI兼容接口, 请参考文档:[OpenAI 兼容接口](https://cloud.tencent.com/document/product/1729/111007)
|
295
|
+
|
296
|
+
腾讯混元大模型是由腾讯研发的大语言模型,具备强大的中文创作能力,复杂语境下的逻辑推理能力,以及可靠的任务执行能力。本接口支持流式或非流式调用,当使用流式调用时为 SSE 协议。
|
297
|
+
|
298
|
+
1. 本接口暂不支持返回图片内容。
|
299
|
+
2. 默认该接口下单账号限制并发数为 5 路,如您有提高并发限制的需求请 [购买](https://buy.cloud.tencent.com/hunyuan) 。
|
300
|
+
3. 请使用 SDK 调用本接口,每种开发语言的 SDK Git 仓库 examples/hunyuan/v20230901/ 目录下有提供示例供参考。SDK 链接在文档下方 “**开发者资源 - SDK**” 部分提供。
|
301
|
+
4. 我们推荐您使用 API Explorer,方便快速地在线调试接口和下载各语言的示例代码,[点击打开](https://console.cloud.tencent.com/api/explorer?Product=hunyuan&Version=2023-09-01&Action=ChatCompletions)。
|
302
|
+
|
303
|
+
:param request: Request instance for GroupChatCompletions.
|
304
|
+
:type request: :class:`tencentcloud.hunyuan.v20230901.models.GroupChatCompletionsRequest`
|
305
|
+
:rtype: :class:`tencentcloud.hunyuan.v20230901.models.GroupChatCompletionsResponse`
|
306
|
+
|
307
|
+
"""
|
308
|
+
try:
|
309
|
+
params = request._serialize()
|
310
|
+
return self._call_and_deserialize("GroupChatCompletions", params, models.GroupChatCompletionsResponse, headers=request.headers)
|
311
|
+
except Exception as e:
|
312
|
+
if isinstance(e, TencentCloudSDKException):
|
313
|
+
raise
|
314
|
+
else:
|
315
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
316
|
+
|
317
|
+
|
293
318
|
def QueryHunyuanImageChatJob(self, request):
|
294
319
|
"""混元生图(多轮对话)接口基于混元大模型,将根据输入的文本描述生成图像,支持通过多轮对话的方式不断调整图像内容。分为提交任务和查询任务2个接口。
|
295
320
|
提交任务:输入文本和前置对话 ID 等,提交一个混元生图多轮对话异步任务,获得任务 ID。
|