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.
Files changed (31) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/antiddos/v20200309/models.py +13 -1
  3. tencentcloud/ccc/v20200210/models.py +18 -0
  4. tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +24 -1
  5. tencentcloud/cdwdoris/v20211228/models.py +196 -4
  6. tencentcloud/cfg/v20210820/models.py +1 -1
  7. tencentcloud/cls/v20201016/models.py +14 -1
  8. tencentcloud/cwp/v20180228/models.py +84 -0
  9. tencentcloud/cynosdb/v20190107/models.py +26 -0
  10. tencentcloud/essbasic/v20210526/models.py +3 -1
  11. tencentcloud/facefusion/v20220927/models.py +13 -4
  12. tencentcloud/lcic/v20220817/lcic_client.py +23 -0
  13. tencentcloud/lcic/v20220817/models.py +261 -0
  14. tencentcloud/lke/v20231130/models.py +2 -2
  15. tencentcloud/mna/v20210119/models.py +26 -0
  16. tencentcloud/mongodb/v20190725/models.py +13 -5
  17. tencentcloud/monitor/v20180724/models.py +13 -0
  18. tencentcloud/ocr/v20181119/models.py +14 -0
  19. tencentcloud/rum/v20210622/models.py +12 -0
  20. tencentcloud/scf/v20180416/models.py +3 -3
  21. tencentcloud/ssl/v20191205/errorcodes.py +3 -0
  22. tencentcloud/ssl/v20191205/ssl_client.py +1 -1
  23. tencentcloud/tag/v20180813/models.py +33 -33
  24. tencentcloud/tmt/v20180321/models.py +6 -6
  25. tencentcloud/vod/v20180717/models.py +5 -5
  26. tencentcloud/vod/v20180717/vod_client.py +2 -2
  27. {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/METADATA +1 -1
  28. {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/RECORD +31 -31
  29. {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/LICENSE +0 -0
  30. {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/WHEEL +0 -0
  31. {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/top_level.txt +0 -0
@@ -4417,6 +4417,129 @@ class DescribeQuestionListResponse(AbstractModel):
4417
4417
  self._RequestId = params.get("RequestId")
4418
4418
 
4419
4419
 
4420
+ class DescribeRecordStreamRequest(AbstractModel):
4421
+ """DescribeRecordStream请求参数结构体
4422
+
4423
+ """
4424
+
4425
+ def __init__(self):
4426
+ r"""
4427
+ :param _SdkAppId: 学校ID
4428
+ :type SdkAppId: int
4429
+ :param _RoomId: 房间ID
4430
+ :type RoomId: int
4431
+ """
4432
+ self._SdkAppId = None
4433
+ self._RoomId = None
4434
+
4435
+ @property
4436
+ def SdkAppId(self):
4437
+ return self._SdkAppId
4438
+
4439
+ @SdkAppId.setter
4440
+ def SdkAppId(self, SdkAppId):
4441
+ self._SdkAppId = SdkAppId
4442
+
4443
+ @property
4444
+ def RoomId(self):
4445
+ return self._RoomId
4446
+
4447
+ @RoomId.setter
4448
+ def RoomId(self, RoomId):
4449
+ self._RoomId = RoomId
4450
+
4451
+
4452
+ def _deserialize(self, params):
4453
+ self._SdkAppId = params.get("SdkAppId")
4454
+ self._RoomId = params.get("RoomId")
4455
+ memeber_set = set(params.keys())
4456
+ for name, value in vars(self).items():
4457
+ property_name = name[1:]
4458
+ if property_name in memeber_set:
4459
+ memeber_set.remove(property_name)
4460
+ if len(memeber_set) > 0:
4461
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4462
+
4463
+
4464
+
4465
+ class DescribeRecordStreamResponse(AbstractModel):
4466
+ """DescribeRecordStream返回参数结构体
4467
+
4468
+ """
4469
+
4470
+ def __init__(self):
4471
+ r"""
4472
+ :param _SchoolId: 学校ID
4473
+ :type SchoolId: int
4474
+ :param _ClassId: 课堂ID
4475
+ :type ClassId: int
4476
+ :param _ClassType: 课堂类型
4477
+ :type ClassType: int
4478
+ :param _StreamInfo: 用户流信息
4479
+ :type StreamInfo: list of SingleStreamInfo
4480
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4481
+ :type RequestId: str
4482
+ """
4483
+ self._SchoolId = None
4484
+ self._ClassId = None
4485
+ self._ClassType = None
4486
+ self._StreamInfo = None
4487
+ self._RequestId = None
4488
+
4489
+ @property
4490
+ def SchoolId(self):
4491
+ return self._SchoolId
4492
+
4493
+ @SchoolId.setter
4494
+ def SchoolId(self, SchoolId):
4495
+ self._SchoolId = SchoolId
4496
+
4497
+ @property
4498
+ def ClassId(self):
4499
+ return self._ClassId
4500
+
4501
+ @ClassId.setter
4502
+ def ClassId(self, ClassId):
4503
+ self._ClassId = ClassId
4504
+
4505
+ @property
4506
+ def ClassType(self):
4507
+ return self._ClassType
4508
+
4509
+ @ClassType.setter
4510
+ def ClassType(self, ClassType):
4511
+ self._ClassType = ClassType
4512
+
4513
+ @property
4514
+ def StreamInfo(self):
4515
+ return self._StreamInfo
4516
+
4517
+ @StreamInfo.setter
4518
+ def StreamInfo(self, StreamInfo):
4519
+ self._StreamInfo = StreamInfo
4520
+
4521
+ @property
4522
+ def RequestId(self):
4523
+ return self._RequestId
4524
+
4525
+ @RequestId.setter
4526
+ def RequestId(self, RequestId):
4527
+ self._RequestId = RequestId
4528
+
4529
+
4530
+ def _deserialize(self, params):
4531
+ self._SchoolId = params.get("SchoolId")
4532
+ self._ClassId = params.get("ClassId")
4533
+ self._ClassType = params.get("ClassType")
4534
+ if params.get("StreamInfo") is not None:
4535
+ self._StreamInfo = []
4536
+ for item in params.get("StreamInfo"):
4537
+ obj = SingleStreamInfo()
4538
+ obj._deserialize(item)
4539
+ self._StreamInfo.append(obj)
4540
+ self._RequestId = params.get("RequestId")
4541
+
4542
+
4420
4543
  class DescribeRoomForbiddenUserRequest(AbstractModel):
4421
4544
  """DescribeRoomForbiddenUser请求参数结构体
4422
4545
 
@@ -10121,6 +10244,144 @@ class SetWatermarkResponse(AbstractModel):
10121
10244
  self._RequestId = params.get("RequestId")
10122
10245
 
10123
10246
 
10247
+ class SingleStreamInfo(AbstractModel):
10248
+ """录制流信息
10249
+
10250
+ """
10251
+
10252
+ def __init__(self):
10253
+ r"""
10254
+ :param _UserId: 用户ID
10255
+ 注意:此字段可能返回 null,表示取不到有效值。
10256
+ :type UserId: str
10257
+ :param _StartTime: 开始时间
10258
+ 注意:此字段可能返回 null,表示取不到有效值。
10259
+ :type StartTime: int
10260
+ :param _StopTime: 结束时间
10261
+ 注意:此字段可能返回 null,表示取不到有效值。
10262
+ :type StopTime: int
10263
+ :param _Duration: 总时长
10264
+ 注意:此字段可能返回 null,表示取不到有效值。
10265
+ :type Duration: int
10266
+ :param _FileFormat: 文件格式
10267
+ 注意:此字段可能返回 null,表示取不到有效值。
10268
+ :type FileFormat: str
10269
+ :param _RecordUrl: 流url
10270
+ 注意:此字段可能返回 null,表示取不到有效值。
10271
+ :type RecordUrl: str
10272
+ :param _RecordSize: 流大小
10273
+ 注意:此字段可能返回 null,表示取不到有效值。
10274
+ :type RecordSize: int
10275
+ :param _VideoId: 流ID
10276
+ 注意:此字段可能返回 null,表示取不到有效值。
10277
+ :type VideoId: str
10278
+ :param _Role: 流类型
10279
+ 注意:此字段可能返回 null,表示取不到有效值。
10280
+ :type Role: str
10281
+ """
10282
+ self._UserId = None
10283
+ self._StartTime = None
10284
+ self._StopTime = None
10285
+ self._Duration = None
10286
+ self._FileFormat = None
10287
+ self._RecordUrl = None
10288
+ self._RecordSize = None
10289
+ self._VideoId = None
10290
+ self._Role = None
10291
+
10292
+ @property
10293
+ def UserId(self):
10294
+ return self._UserId
10295
+
10296
+ @UserId.setter
10297
+ def UserId(self, UserId):
10298
+ self._UserId = UserId
10299
+
10300
+ @property
10301
+ def StartTime(self):
10302
+ return self._StartTime
10303
+
10304
+ @StartTime.setter
10305
+ def StartTime(self, StartTime):
10306
+ self._StartTime = StartTime
10307
+
10308
+ @property
10309
+ def StopTime(self):
10310
+ return self._StopTime
10311
+
10312
+ @StopTime.setter
10313
+ def StopTime(self, StopTime):
10314
+ self._StopTime = StopTime
10315
+
10316
+ @property
10317
+ def Duration(self):
10318
+ return self._Duration
10319
+
10320
+ @Duration.setter
10321
+ def Duration(self, Duration):
10322
+ self._Duration = Duration
10323
+
10324
+ @property
10325
+ def FileFormat(self):
10326
+ return self._FileFormat
10327
+
10328
+ @FileFormat.setter
10329
+ def FileFormat(self, FileFormat):
10330
+ self._FileFormat = FileFormat
10331
+
10332
+ @property
10333
+ def RecordUrl(self):
10334
+ return self._RecordUrl
10335
+
10336
+ @RecordUrl.setter
10337
+ def RecordUrl(self, RecordUrl):
10338
+ self._RecordUrl = RecordUrl
10339
+
10340
+ @property
10341
+ def RecordSize(self):
10342
+ return self._RecordSize
10343
+
10344
+ @RecordSize.setter
10345
+ def RecordSize(self, RecordSize):
10346
+ self._RecordSize = RecordSize
10347
+
10348
+ @property
10349
+ def VideoId(self):
10350
+ return self._VideoId
10351
+
10352
+ @VideoId.setter
10353
+ def VideoId(self, VideoId):
10354
+ self._VideoId = VideoId
10355
+
10356
+ @property
10357
+ def Role(self):
10358
+ return self._Role
10359
+
10360
+ @Role.setter
10361
+ def Role(self, Role):
10362
+ self._Role = Role
10363
+
10364
+
10365
+ def _deserialize(self, params):
10366
+ self._UserId = params.get("UserId")
10367
+ self._StartTime = params.get("StartTime")
10368
+ self._StopTime = params.get("StopTime")
10369
+ self._Duration = params.get("Duration")
10370
+ self._FileFormat = params.get("FileFormat")
10371
+ self._RecordUrl = params.get("RecordUrl")
10372
+ self._RecordSize = params.get("RecordSize")
10373
+ self._VideoId = params.get("VideoId")
10374
+ self._Role = params.get("Role")
10375
+ memeber_set = set(params.keys())
10376
+ for name, value in vars(self).items():
10377
+ property_name = name[1:]
10378
+ if property_name in memeber_set:
10379
+ memeber_set.remove(property_name)
10380
+ if len(memeber_set) > 0:
10381
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10382
+
10383
+
10384
+
10124
10385
  class StartRoomRequest(AbstractModel):
10125
10386
  """StartRoom请求参数结构体
10126
10387
 
@@ -9161,7 +9161,7 @@ class ListDocRequest(AbstractModel):
9161
9161
 
9162
9162
  def __init__(self):
9163
9163
  r"""
9164
- :param _BotBizId: 机器人ID
9164
+ :param _BotBizId: 应用ID
9165
9165
  :type BotBizId: str
9166
9166
  :param _PageNumber: 页码
9167
9167
  :type PageNumber: int
@@ -9169,7 +9169,7 @@ class ListDocRequest(AbstractModel):
9169
9169
  :type PageSize: int
9170
9170
  :param _Query: 查询内容
9171
9171
  :type Query: str
9172
- :param _Status: 文档状态: 7 审核中、8 审核失败、10 待发布、11 发布中、12 已发布、13 学习中、14 学习失败 20 已过期
9172
+ :param _Status: 文档状态: 1-未生成 2-生成中 3-生成成功 4-生成失败 5-删除中 6-删除成功 7-审核中 8-审核失败 9-审核成功 10-待发布 11-发布中 12-已发布 13-学习中 14-学习失败 15-更新中 16-更新失败 17-解析中 18-解析失败 19-导入失败 20-已过期 21-超量失效 22-超量失效恢复
9173
9173
  :type Status: list of int
9174
9174
  """
9175
9175
  self._BotBizId = None
@@ -1552,6 +1552,12 @@ class DeviceBaseInfo(AbstractModel):
1552
1552
  :param _FlowTrunc: 设备无流量包处理方式,0: 按量付费,1: 截断加速
1553
1553
  注意:此字段可能返回 null,表示取不到有效值。
1554
1554
  :type FlowTrunc: int
1555
+ :param _Sn: 设备sn
1556
+ 注意:此字段可能返回 null,表示取不到有效值。
1557
+ :type Sn: str
1558
+ :param _Vendor: 厂商
1559
+ 注意:此字段可能返回 null,表示取不到有效值。
1560
+ :type Vendor: str
1555
1561
  """
1556
1562
  self._DeviceId = None
1557
1563
  self._DeviceName = None
@@ -1564,6 +1570,8 @@ class DeviceBaseInfo(AbstractModel):
1564
1570
  self._GroupId = None
1565
1571
  self._GroupName = None
1566
1572
  self._FlowTrunc = None
1573
+ self._Sn = None
1574
+ self._Vendor = None
1567
1575
 
1568
1576
  @property
1569
1577
  def DeviceId(self):
@@ -1653,6 +1661,22 @@ class DeviceBaseInfo(AbstractModel):
1653
1661
  def FlowTrunc(self, FlowTrunc):
1654
1662
  self._FlowTrunc = FlowTrunc
1655
1663
 
1664
+ @property
1665
+ def Sn(self):
1666
+ return self._Sn
1667
+
1668
+ @Sn.setter
1669
+ def Sn(self, Sn):
1670
+ self._Sn = Sn
1671
+
1672
+ @property
1673
+ def Vendor(self):
1674
+ return self._Vendor
1675
+
1676
+ @Vendor.setter
1677
+ def Vendor(self, Vendor):
1678
+ self._Vendor = Vendor
1679
+
1656
1680
 
1657
1681
  def _deserialize(self, params):
1658
1682
  self._DeviceId = params.get("DeviceId")
@@ -1666,6 +1690,8 @@ class DeviceBaseInfo(AbstractModel):
1666
1690
  self._GroupId = params.get("GroupId")
1667
1691
  self._GroupName = params.get("GroupName")
1668
1692
  self._FlowTrunc = params.get("FlowTrunc")
1693
+ self._Sn = params.get("Sn")
1694
+ self._Vendor = params.get("Vendor")
1669
1695
  memeber_set = set(params.keys())
1670
1696
  for name, value in vars(self).items():
1671
1697
  property_name = name[1:]
@@ -7428,9 +7428,11 @@ class ModifyDBInstanceSpecRequest(AbstractModel):
7428
7428
  :param _InstanceId: 实例 ID,例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
7429
7429
 
7430
7430
  :type InstanceId: str
7431
- :param _Memory: 实例配置变更后的内存大小。- 单位:GB。- 内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。<br>注意:节点变更时,输入实例当前的内存配置。
7431
+ :param _Memory: 实例配置变更后的内存大小。- 单位:GB。为空时,默认取实例当前的内存大小。<br> 注意:内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。
7432
7432
  :type Memory: int
7433
- :param _Volume: 实例配置变更后的硬盘大小,单位:GB。<ul><li>内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。</li><li>降配时,变更后的磁盘容量必须大于已用磁盘容量的1.2倍。</li></ul> 注意:节点变更时,输入实例当前的硬盘配置。
7433
+ :param _Volume: 实例配置变更后的硬盘大小,单位:GB。为空时,默认取当前实例的磁盘大小。
7434
+ - 内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。
7435
+ - 降配时,变更后的磁盘容量必须大于已用磁盘容量的1.2倍。
7434
7436
  :type Volume: int
7435
7437
  :param _OplogSize: (已废弃) 请使用ResizeOplog独立接口完成。
7436
7438
 
@@ -7438,16 +7440,22 @@ class ModifyDBInstanceSpecRequest(AbstractModel):
7438
7440
  - 单位:GB。
7439
7441
  - 默认 Oplog 占用容量为磁盘空间的10%。系统允许设置的 Oplog 容量范围为磁盘空间的[10%,90%]。
7440
7442
  :type OplogSize: int
7441
- :param _NodeNum: 实例变更后的节点数。- 变更节点类型包含:mongod节点 或 readonly 节点,mongos节点变更无需填写。变更节点类型,请查询参数**AddNodeList**或**RemoveNodeList**指定的类型。- 副本集节点数:取值范围请通过云数据库的售卖规格 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 接口返回的参数**MinNodeNum**与 **MaxNodeNum**获取。- 分片集群每个分片节点数:取值范围请通过云数据库的售卖规格 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 接口返回的参数**MinReplicateSetNodeNum**与**MaxReplicateSetNodeNum**获取。
7443
+ :param _NodeNum: 实例变更后mongod的节点数(不包含readonly节点数)。
7444
+ - 变更mongod CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
7445
+ - 变更 mongos CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
7446
+ - 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含readonl) 节点数量。
7447
+ - 副本集节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinNodeNum 与 MaxNodeNum 获取。
7448
+ - 分片集群每个分片节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinReplicateSetNodeNum 与 MaxReplicateSetNodeNum 获取。
7442
7449
  :type NodeNum: int
7443
- :param _ReplicateSetNum: 实例变更后的分片数。<ul><li>取值范围请通过云数据库的售卖规格 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 接口返回的参数**MinReplicateSetNum**与**MaxReplicateSetNum**获取。</li><li>该参数只能增加不能减少。</li></ul>
7450
+ :param _ReplicateSetNum: 实例变更后的分片数。
7451
+ - 取值范围请通过云数据库的售卖规格[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 接口返回的参数**MinReplicateSetNum**与**MaxReplicateSetNum**获取。- 该参数只能增加不能减少。
7444
7452
  :type ReplicateSetNum: int
7445
7453
  :param _InMaintenance: 实例配置变更的切换时间。
7446
7454
  - 0:调整完成时,立即执行变配任务。默认为0。
7447
7455
  - 1:在维护时间窗内,执行变配任务。
7448
7456
  **说明**:调整节点数和分片数不支持在<b>维护时间窗内</b>变更。
7449
7457
  :type InMaintenance: int
7450
- :param _MongosMemory: 分片实例配置变更后的mongos内存大小。- 单位:GB。
7458
+ :param _MongosMemory: 分片实例配置变更后的mongos内存大小。单位:GB。
7451
7459
  :type MongosMemory: str
7452
7460
  :param _AddNodeList: 新增节点列表,节点类型及可用区信息。
7453
7461
  :type AddNodeList: list of AddNodeList
@@ -32194,6 +32194,9 @@ class UserNotice(AbstractModel):
32194
32194
  :param _OnCallFormIDs: 值班表id列表
32195
32195
  注意:此字段可能返回 null,表示取不到有效值。
32196
32196
  :type OnCallFormIDs: list of str
32197
+ :param _VoiceConfirmKey: 电话按键确认
32198
+ 注意:此字段可能返回 null,表示取不到有效值。
32199
+ :type VoiceConfirmKey: str
32197
32200
  """
32198
32201
  self._ReceiverType = None
32199
32202
  self._StartTime = None
@@ -32209,6 +32212,7 @@ class UserNotice(AbstractModel):
32209
32212
  self._PhoneCallType = None
32210
32213
  self._Weekday = None
32211
32214
  self._OnCallFormIDs = None
32215
+ self._VoiceConfirmKey = None
32212
32216
 
32213
32217
  @property
32214
32218
  def ReceiverType(self):
@@ -32322,6 +32326,14 @@ class UserNotice(AbstractModel):
32322
32326
  def OnCallFormIDs(self, OnCallFormIDs):
32323
32327
  self._OnCallFormIDs = OnCallFormIDs
32324
32328
 
32329
+ @property
32330
+ def VoiceConfirmKey(self):
32331
+ return self._VoiceConfirmKey
32332
+
32333
+ @VoiceConfirmKey.setter
32334
+ def VoiceConfirmKey(self, VoiceConfirmKey):
32335
+ self._VoiceConfirmKey = VoiceConfirmKey
32336
+
32325
32337
 
32326
32338
  def _deserialize(self, params):
32327
32339
  self._ReceiverType = params.get("ReceiverType")
@@ -32338,6 +32350,7 @@ class UserNotice(AbstractModel):
32338
32350
  self._PhoneCallType = params.get("PhoneCallType")
32339
32351
  self._Weekday = params.get("Weekday")
32340
32352
  self._OnCallFormIDs = params.get("OnCallFormIDs")
32353
+ self._VoiceConfirmKey = params.get("VoiceConfirmKey")
32341
32354
  memeber_set = set(params.keys())
32342
32355
  for name, value in vars(self).items():
32343
32356
  property_name = name[1:]
@@ -3832,6 +3832,10 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
3832
3832
  :type BackPageName: str
3833
3833
  :param _BackPageCardCode: 驾驶证副页证号
3834
3834
  :type BackPageCardCode: str
3835
+ :param _DriverLicenseType: 驾驶证类型
3836
+ 电子驾驶证:Electronic
3837
+ 普通驾驶证:Normal
3838
+ :type DriverLicenseType: str
3835
3839
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3836
3840
  :type RequestId: str
3837
3841
  """
@@ -3856,6 +3860,7 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
3856
3860
  self._GenerateTime = None
3857
3861
  self._BackPageName = None
3858
3862
  self._BackPageCardCode = None
3863
+ self._DriverLicenseType = None
3859
3864
  self._RequestId = None
3860
3865
 
3861
3866
  @property
@@ -4026,6 +4031,14 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
4026
4031
  def BackPageCardCode(self, BackPageCardCode):
4027
4032
  self._BackPageCardCode = BackPageCardCode
4028
4033
 
4034
+ @property
4035
+ def DriverLicenseType(self):
4036
+ return self._DriverLicenseType
4037
+
4038
+ @DriverLicenseType.setter
4039
+ def DriverLicenseType(self, DriverLicenseType):
4040
+ self._DriverLicenseType = DriverLicenseType
4041
+
4029
4042
  @property
4030
4043
  def RequestId(self):
4031
4044
  return self._RequestId
@@ -4057,6 +4070,7 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
4057
4070
  self._GenerateTime = params.get("GenerateTime")
4058
4071
  self._BackPageName = params.get("BackPageName")
4059
4072
  self._BackPageCardCode = params.get("BackPageCardCode")
4073
+ self._DriverLicenseType = params.get("DriverLicenseType")
4060
4074
  self._RequestId = params.get("RequestId")
4061
4075
 
4062
4076
 
@@ -3603,6 +3603,8 @@ class DescribeDataLogUrlStatisticsRequest(AbstractModel):
3603
3603
  :type Browser: str
3604
3604
  :param _Env: 环境区分
3605
3605
  :type Env: str
3606
+ :param _ErrorMsg: js异常信息
3607
+ :type ErrorMsg: str
3606
3608
  """
3607
3609
  self._StartTime = None
3608
3610
  self._Type = None
@@ -3625,6 +3627,7 @@ class DescribeDataLogUrlStatisticsRequest(AbstractModel):
3625
3627
  self._Os = None
3626
3628
  self._Browser = None
3627
3629
  self._Env = None
3630
+ self._ErrorMsg = None
3628
3631
 
3629
3632
  @property
3630
3633
  def StartTime(self):
@@ -3794,6 +3797,14 @@ class DescribeDataLogUrlStatisticsRequest(AbstractModel):
3794
3797
  def Env(self, Env):
3795
3798
  self._Env = Env
3796
3799
 
3800
+ @property
3801
+ def ErrorMsg(self):
3802
+ return self._ErrorMsg
3803
+
3804
+ @ErrorMsg.setter
3805
+ def ErrorMsg(self, ErrorMsg):
3806
+ self._ErrorMsg = ErrorMsg
3807
+
3797
3808
 
3798
3809
  def _deserialize(self, params):
3799
3810
  self._StartTime = params.get("StartTime")
@@ -3817,6 +3828,7 @@ class DescribeDataLogUrlStatisticsRequest(AbstractModel):
3817
3828
  self._Os = params.get("Os")
3818
3829
  self._Browser = params.get("Browser")
3819
3830
  self._Env = params.get("Env")
3831
+ self._ErrorMsg = params.get("ErrorMsg")
3820
3832
  memeber_set = set(params.keys())
3821
3833
  for name, value in vars(self).items():
3822
3834
  property_name = name[1:]
@@ -10622,11 +10622,11 @@ class UpdateTriggerStatusRequest(AbstractModel):
10622
10622
  :type FunctionName: str
10623
10623
  :param _TriggerName: 触发器名称
10624
10624
  :type TriggerName: str
10625
- :param _Type: 触发器类型
10625
+ :param _Type: 触发器类型,触发器类型,目前只支持 timer、 cos 、 ckafka三种类型
10626
10626
  :type Type: str
10627
- :param _Qualifier: 函数的版本,默认为 $LATEST,建议填写 [$DEFAULT](https://cloud.tencent.com/document/product/583/36149#.E9.BB.98.E8.AE.A4.E5.88.AB.E5.90.8D)方便后续进行版本的灰度发布。
10627
+ :param _Qualifier: 触发器在创建时所指向的触发别名或版本,默认值为$LATEST
10628
10628
  :type Qualifier: str
10629
- :param _Namespace: 函数的命名空间
10629
+ :param _Namespace: 函数所在的命名空间,默认值为default
10630
10630
  :type Namespace: str
10631
10631
  :param _TriggerDesc: 如果更新的触发器类型为 COS 触发器,该字段为必填值,存放 JSON 格式的数据 {"event":"cos:ObjectCreated:*"},数据内容和 SetTrigger 接口中该字段的格式相同;如果更新的触发器类型为定时触发器或 CMQ 触发器,可以不指定该字段
10632
10632
  :type TriggerDesc: str
@@ -116,6 +116,9 @@ FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWDOWNLOAD = 'FailedOperation.Certificate
116
116
  # 证书状态不允许重新申请。
117
117
  FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWRESUBMIT = 'FailedOperation.CertificateStatusNotAllowResubmit'
118
118
 
119
+ # 证书关联云资源查询任务ID无效
120
+ FAILEDOPERATION_CERTIFICATESYNCTASKIDINVALID = 'FailedOperation.CertificateSyncTaskIdInvalid'
121
+
119
122
  # 无法查到当前证书类型详情。
120
123
  FAILEDOPERATION_CERTIFICATETYPEINFONOTFOUND = 'FailedOperation.CertificateTypeInfoNotFound'
121
124
 
@@ -395,7 +395,7 @@ class SslClient(AbstractClient):
395
395
 
396
396
 
397
397
  def DescribeCertificateBindResourceTaskDetail(self, request):
398
- """查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne
398
+ """查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos
399
399
 
400
400
  :param request: Request instance for DescribeCertificateBindResourceTaskDetail.
401
401
  :type request: :class:`tencentcloud.ssl.v20191205.models.DescribeCertificateBindResourceTaskDetailRequest`