tencentcloud-sdk-python 3.0.1443__py2.py3-none-any.whl → 3.0.1444__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (38) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +2 -2
  3. tencentcloud/clb/v20180317/models.py +422 -26
  4. tencentcloud/cls/v20201016/cls_client.py +1 -1
  5. tencentcloud/cls/v20201016/models.py +148 -112
  6. tencentcloud/keewidb/v20220308/errorcodes.py +3 -0
  7. tencentcloud/keewidb/v20220308/models.py +2 -2
  8. tencentcloud/lcic/v20220817/errorcodes.py +15 -0
  9. tencentcloud/lcic/v20220817/models.py +67 -16
  10. tencentcloud/lkeap/v20240522/errorcodes.py +1 -1
  11. tencentcloud/mongodb/v20190725/models.py +4 -4
  12. tencentcloud/mps/v20190612/models.py +64 -0
  13. tencentcloud/ocr/v20181119/models.py +31 -16
  14. tencentcloud/postgres/v20170312/errorcodes.py +0 -12
  15. tencentcloud/postgres/v20170312/models.py +191 -1527
  16. tencentcloud/postgres/v20170312/postgres_client.py +0 -75
  17. tencentcloud/sts/v20180813/sts_client.py +21 -7
  18. tencentcloud/tcbr/v20220217/models.py +151 -0
  19. tencentcloud/tcss/v20201101/models.py +45 -0
  20. tencentcloud/tke/v20180525/models.py +17 -2
  21. tencentcloud/trabbit/v20230418/models.py +60 -0
  22. tencentcloud/trocket/v20230308/models.py +319 -0
  23. tencentcloud/trocket/v20230308/trocket_client.py +25 -0
  24. tencentcloud/trtc/v20190722/errorcodes.py +3 -0
  25. tencentcloud/trtc/v20190722/models.py +6 -4
  26. tencentcloud/tsf/v20180326/errorcodes.py +9 -0
  27. tencentcloud/tsf/v20180326/models.py +761 -517
  28. tencentcloud/vod/v20180717/models.py +63 -10
  29. tencentcloud/vod/v20180717/vod_client.py +1 -0
  30. tencentcloud/waf/v20180125/errorcodes.py +6 -0
  31. tencentcloud/waf/v20180125/models.py +1926 -744
  32. tencentcloud/waf/v20180125/waf_client.py +161 -0
  33. tencentcloud/wedata/v20210820/models.py +204 -0
  34. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/METADATA +1 -1
  35. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/RECORD +38 -38
  36. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/LICENSE +0 -0
  37. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/WHEEL +0 -0
  38. {tencentcloud_sdk_python-3.0.1443.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/top_level.txt +0 -0
@@ -137,6 +137,9 @@ RESOURCEUNAVAILABLE_CALLOSSERROR = 'ResourceUnavailable.CallOssError'
137
137
  # 实例配置错误。
138
138
  RESOURCEUNAVAILABLE_INSTANCECONFERROR = 'ResourceUnavailable.InstanceConfError'
139
139
 
140
+ # 实例已经被回收了。
141
+ RESOURCEUNAVAILABLE_INSTANCEDELETED = 'ResourceUnavailable.InstanceDeleted'
142
+
140
143
  # 实例已经被其它流程锁定。
141
144
  RESOURCEUNAVAILABLE_INSTANCELOCKEDERROR = 'ResourceUnavailable.InstanceLockedError'
142
145
 
@@ -6743,7 +6743,7 @@ class ModifyInstanceRequest(AbstractModel):
6743
6743
  :type InstanceNames: list of str
6744
6744
  :param _ProjectId: 实例新的项目 ID。
6745
6745
  :type ProjectId: int
6746
- :param _AutoRenews: 包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</ul>
6746
+ :param _AutoRenews: 包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</li></ul>
6747
6747
  :type AutoRenews: list of int
6748
6748
  """
6749
6749
  self._Operation = None
@@ -6798,7 +6798,7 @@ class ModifyInstanceRequest(AbstractModel):
6798
6798
 
6799
6799
  @property
6800
6800
  def AutoRenews(self):
6801
- """包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</ul>
6801
+ """包年包月计费的续费模式。<b>InstanceIds</b>数组和<b>AutoRenews</b>数组中的修改值对应。<ul><li>0:默认状态,指手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</li></ul>
6802
6802
  :rtype: list of int
6803
6803
  """
6804
6804
  return self._AutoRenews
@@ -62,6 +62,9 @@ INVALIDPARAMETER_CONTENT = 'InvalidParameter.Content'
62
62
  # css/js地址无法访问
63
63
  INVALIDPARAMETER_CSSORJS = 'InvalidParameter.CssOrJs'
64
64
 
65
+ # DisableRecord参数错误
66
+ INVALIDPARAMETER_DISABLERECORD = 'InvalidParameter.DisableRecord'
67
+
65
68
  # 结束时间不能早于开始时间。
66
69
  INVALIDPARAMETER_ENDTIME = 'InvalidParameter.EndTime'
67
70
 
@@ -80,6 +83,15 @@ INVALIDPARAMETER_GROUPTEACHERSNOTEXIST = 'InvalidParameter.GroupTeachersNotExist
80
83
  # 群组类型错误
81
84
  INVALIDPARAMETER_GROUPTYPEINVALID = 'InvalidParameter.GroupTypeInvalid'
82
85
 
86
+ # LiveType参数错误
87
+ INVALIDPARAMETER_LIVETYPE = 'InvalidParameter.LiveType'
88
+
89
+ # MaxMicNumber参数错误
90
+ INVALIDPARAMETER_MAXMICNUMBER = 'InvalidParameter.MaxMicNumber'
91
+
92
+ # RecordLayout参数错误
93
+ INVALIDPARAMETER_RECORDLAYOUT = 'InvalidParameter.RecordLayout'
94
+
83
95
  # room类型错误
84
96
  INVALIDPARAMETER_ROOMTYPEINVALID = 'InvalidParameter.RoomTypeInvalid'
85
97
 
@@ -154,3 +166,6 @@ UNKNOWNPARAMETER = 'UnknownParameter'
154
166
 
155
167
  # 操作不支持。
156
168
  UNSUPPORTEDOPERATION = 'UnsupportedOperation'
169
+
170
+ # 套餐包版本不支持
171
+ UNSUPPORTEDOPERATION_VERSION = 'UnsupportedOperation.Version'
@@ -2200,8 +2200,10 @@ class CreateRoomRequest(AbstractModel):
2200
2200
  :type VideoOrientation: int
2201
2201
  :param _IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
2202
2202
  :type IsGradingRequiredPostClass: int
2203
- :param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放)注:大班课的布局(layout)只有三分屏
2203
+ :param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
2204
2204
  :type RoomType: int
2205
+ :param _Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
2206
+ :type Guests: list of str
2205
2207
  :param _EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
2206
2208
  :type EndDelayTime: int
2207
2209
  :param _LiveType: 直播类型:0 常规(默认)1 伪直播 2 RTMP推流直播
@@ -2212,8 +2214,12 @@ class CreateRoomRequest(AbstractModel):
2212
2214
  :type EnableAutoStart: int
2213
2215
  :param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
2214
2216
  :type RecordBackground: str
2215
- :param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。
2216
- 数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
2217
+ :param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
2218
+
2219
+ 自定义场景参数的含义。如下:
2220
+ scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。
2221
+ lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi)
2222
+ customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
2217
2223
  :type RecordScene: str
2218
2224
  :param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
2219
2225
  :type RecordLang: str
@@ -2246,6 +2252,7 @@ class CreateRoomRequest(AbstractModel):
2246
2252
  self._VideoOrientation = None
2247
2253
  self._IsGradingRequiredPostClass = None
2248
2254
  self._RoomType = None
2255
+ self._Guests = None
2249
2256
  self._EndDelayTime = None
2250
2257
  self._LiveType = None
2251
2258
  self._RecordLiveUrl = None
@@ -2508,7 +2515,7 @@ class CreateRoomRequest(AbstractModel):
2508
2515
 
2509
2516
  @property
2510
2517
  def RoomType(self):
2511
- """课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放)注:大班课的布局(layout)只有三分屏
2518
+ """课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
2512
2519
  :rtype: int
2513
2520
  """
2514
2521
  return self._RoomType
@@ -2517,6 +2524,17 @@ class CreateRoomRequest(AbstractModel):
2517
2524
  def RoomType(self, RoomType):
2518
2525
  self._RoomType = RoomType
2519
2526
 
2527
+ @property
2528
+ def Guests(self):
2529
+ """嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
2530
+ :rtype: list of str
2531
+ """
2532
+ return self._Guests
2533
+
2534
+ @Guests.setter
2535
+ def Guests(self, Guests):
2536
+ self._Guests = Guests
2537
+
2520
2538
  @property
2521
2539
  def EndDelayTime(self):
2522
2540
  """拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
@@ -2574,8 +2592,12 @@ class CreateRoomRequest(AbstractModel):
2574
2592
 
2575
2593
  @property
2576
2594
  def RecordScene(self):
2577
- """录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。
2578
- 数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
2595
+ """录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
2596
+
2597
+ 自定义场景参数的含义。如下:
2598
+ scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。
2599
+ lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi)
2600
+ customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
2579
2601
  :rtype: str
2580
2602
  """
2581
2603
  return self._RecordScene
@@ -2656,6 +2678,7 @@ class CreateRoomRequest(AbstractModel):
2656
2678
  self._VideoOrientation = params.get("VideoOrientation")
2657
2679
  self._IsGradingRequiredPostClass = params.get("IsGradingRequiredPostClass")
2658
2680
  self._RoomType = params.get("RoomType")
2681
+ self._Guests = params.get("Guests")
2659
2682
  self._EndDelayTime = params.get("EndDelayTime")
2660
2683
  self._LiveType = params.get("LiveType")
2661
2684
  self._RecordLiveUrl = params.get("RecordLiveUrl")
@@ -6258,7 +6281,7 @@ class DescribeRoomResponse(AbstractModel):
6258
6281
  :type VideoOrientation: int
6259
6282
  :param _IsGradingRequiredPostClass: 该课堂是否开启了课后评分功能。0:未开启 1:开启
6260
6283
  :type IsGradingRequiredPostClass: int
6261
- :param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (后续扩展)注:大班课的布局(layout)只有三分屏
6284
+ :param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
6262
6285
  :type RoomType: int
6263
6286
  :param _VideoDuration: 录制时长
6264
6287
  :type VideoDuration: int
@@ -6274,7 +6297,7 @@ class DescribeRoomResponse(AbstractModel):
6274
6297
  :type RecordBackground: str
6275
6298
  :param _RTMPStreamingURL: RTMP推流链接
6276
6299
  :type RTMPStreamingURL: str
6277
- :param _RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效
6300
+ :param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
6278
6301
  :type RecordScene: str
6279
6302
  :param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
6280
6303
  :type RecordLang: str
@@ -6286,6 +6309,8 @@ class DescribeRoomResponse(AbstractModel):
6286
6309
  :type WhiteBoardSnapshotMode: int
6287
6310
  :param _SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
6288
6311
  :type SubtitlesTranscription: int
6312
+ :param _Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
6313
+ :type Guests: list of str
6289
6314
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6290
6315
  :type RequestId: str
6291
6316
  """
@@ -6323,6 +6348,7 @@ class DescribeRoomResponse(AbstractModel):
6323
6348
  self._RecordLayout = None
6324
6349
  self._WhiteBoardSnapshotMode = None
6325
6350
  self._SubtitlesTranscription = None
6351
+ self._Guests = None
6326
6352
  self._RequestId = None
6327
6353
 
6328
6354
  @property
@@ -6559,7 +6585,7 @@ class DescribeRoomResponse(AbstractModel):
6559
6585
 
6560
6586
  @property
6561
6587
  def RoomType(self):
6562
- """课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (后续扩展)注:大班课的布局(layout)只有三分屏
6588
+ """课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
6563
6589
  :rtype: int
6564
6590
  """
6565
6591
  return self._RoomType
@@ -6647,7 +6673,7 @@ class DescribeRoomResponse(AbstractModel):
6647
6673
 
6648
6674
  @property
6649
6675
  def RecordScene(self):
6650
- """录制自定义场景,仅recordlayout=9的时候此参数有效
6676
+ """录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
6651
6677
  :rtype: str
6652
6678
  """
6653
6679
  return self._RecordScene
@@ -6711,6 +6737,17 @@ class DescribeRoomResponse(AbstractModel):
6711
6737
  def SubtitlesTranscription(self, SubtitlesTranscription):
6712
6738
  self._SubtitlesTranscription = SubtitlesTranscription
6713
6739
 
6740
+ @property
6741
+ def Guests(self):
6742
+ """嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
6743
+ :rtype: list of str
6744
+ """
6745
+ return self._Guests
6746
+
6747
+ @Guests.setter
6748
+ def Guests(self, Guests):
6749
+ self._Guests = Guests
6750
+
6714
6751
  @property
6715
6752
  def RequestId(self):
6716
6753
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -6758,6 +6795,7 @@ class DescribeRoomResponse(AbstractModel):
6758
6795
  self._RecordLayout = params.get("RecordLayout")
6759
6796
  self._WhiteBoardSnapshotMode = params.get("WhiteBoardSnapshotMode")
6760
6797
  self._SubtitlesTranscription = params.get("SubtitlesTranscription")
6798
+ self._Guests = params.get("Guests")
6761
6799
  self._RequestId = params.get("RequestId")
6762
6800
 
6763
6801
 
@@ -11638,8 +11676,7 @@ class RoomInfo(AbstractModel):
11638
11676
  :type VideoOrientation: int
11639
11677
  :param _IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
11640
11678
  :type IsGradingRequiredPostClass: int
11641
- :param _RoomType: 房间类型: 0 小班课(默认值); 1 大班课; 2 1V1 (后续扩展)
11642
- 注:大班课的布局(layout)只有三分屏
11679
+ :param _RoomType: 课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
11643
11680
  :type RoomType: int
11644
11681
  :param _EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
11645
11682
  :type EndDelayTime: int
@@ -11651,7 +11688,7 @@ class RoomInfo(AbstractModel):
11651
11688
  :type EnableAutoStart: int
11652
11689
  :param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
11653
11690
  :type RecordBackground: str
11654
- :param _RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
11691
+ :param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
11655
11692
  :type RecordScene: str
11656
11693
  :param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
11657
11694
  :type RecordLang: str
@@ -11661,6 +11698,8 @@ class RoomInfo(AbstractModel):
11661
11698
  :type WhiteBoardSnapshotMode: int
11662
11699
  :param _SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
11663
11700
  :type SubtitlesTranscription: int
11701
+ :param _Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
11702
+ :type Guests: list of str
11664
11703
  """
11665
11704
  self._Name = None
11666
11705
  self._StartTime = None
@@ -11693,6 +11732,7 @@ class RoomInfo(AbstractModel):
11693
11732
  self._RecordStream = None
11694
11733
  self._WhiteBoardSnapshotMode = None
11695
11734
  self._SubtitlesTranscription = None
11735
+ self._Guests = None
11696
11736
 
11697
11737
  @property
11698
11738
  def Name(self):
@@ -11923,8 +11963,7 @@ class RoomInfo(AbstractModel):
11923
11963
 
11924
11964
  @property
11925
11965
  def RoomType(self):
11926
- """房间类型: 0 小班课(默认值); 1 大班课; 2 1V1 (后续扩展)
11927
- 注:大班课的布局(layout)只有三分屏
11966
+ """课堂类型: 0 小班课(默认值); 1 大班课; 2 1V1 (预留参数,暂未开放); 3 圆桌会议 注:大班课的布局(layout)只有三分屏
11928
11967
  :rtype: int
11929
11968
  """
11930
11969
  return self._RoomType
@@ -11990,7 +12029,7 @@ class RoomInfo(AbstractModel):
11990
12029
 
11991
12030
  @property
11992
12031
  def RecordScene(self):
11993
- """录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
12032
+ """录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。自定义场景参数的含义。如下: scene:自定义js/css对应的场景值。如scene=recordScene,会加载 recordScene 场景对应的 js/css,这样就可以自定义录制页面的元素。 lng:录制页面对应的语种。如lng=en,则录制界面为en。(枚举值:en,zh,zh-TW,jp,ar,kr,vi) customToken:录制页面中涉及客户自己的服务需要鉴权时进行配置。一般情况下,无需配置。
11994
12033
  :rtype: str
11995
12034
  """
11996
12035
  return self._RecordScene
@@ -12047,6 +12086,17 @@ class RoomInfo(AbstractModel):
12047
12086
  def SubtitlesTranscription(self, SubtitlesTranscription):
12048
12087
  self._SubtitlesTranscription = SubtitlesTranscription
12049
12088
 
12089
+ @property
12090
+ def Guests(self):
12091
+ """嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
12092
+ :rtype: list of str
12093
+ """
12094
+ return self._Guests
12095
+
12096
+ @Guests.setter
12097
+ def Guests(self, Guests):
12098
+ self._Guests = Guests
12099
+
12050
12100
 
12051
12101
  def _deserialize(self, params):
12052
12102
  self._Name = params.get("Name")
@@ -12080,6 +12130,7 @@ class RoomInfo(AbstractModel):
12080
12130
  self._RecordStream = params.get("RecordStream")
12081
12131
  self._WhiteBoardSnapshotMode = params.get("WhiteBoardSnapshotMode")
12082
12132
  self._SubtitlesTranscription = params.get("SubtitlesTranscription")
12133
+ self._Guests = params.get("Guests")
12083
12134
  memeber_set = set(params.keys())
12084
12135
  for name, value in vars(self).items():
12085
12136
  property_name = name[1:]
@@ -26,7 +26,7 @@ FAILEDOPERATION_ENGINESERVERERROR = 'FailedOperation.EngineServerError'
26
26
  # FailedOperation.FileDecodeFailed
27
27
  FAILEDOPERATION_FILEDECODEFAILED = 'FailedOperation.FileDecodeFailed'
28
28
 
29
- # FailedOperation.ImageDecodeFailed
29
+ # 图片解码失败
30
30
  FAILEDOPERATION_IMAGEDECODEFAILED = 'FailedOperation.ImageDecodeFailed'
31
31
 
32
32
  # 暂不支持解析该文件
@@ -88,7 +88,7 @@ class AssignProjectRequest(AbstractModel):
88
88
  r"""
89
89
  :param _InstanceIds: 实例 ID 列表,请登录[MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
90
90
  :type InstanceIds: list of str
91
- :param _ProjectId: 项目ID,用户已创建项目的唯一ID,非自定义
91
+ :param _ProjectId: 项目ID,用户已创建项目的唯一ID。请在控制台账号中心的项目管理中复制项目 ID。
92
92
  :type ProjectId: int
93
93
  """
94
94
  self._InstanceIds = None
@@ -107,7 +107,7 @@ class AssignProjectRequest(AbstractModel):
107
107
 
108
108
  @property
109
109
  def ProjectId(self):
110
- """项目ID,用户已创建项目的唯一ID,非自定义
110
+ """项目ID,用户已创建项目的唯一ID。请在控制台账号中心的项目管理中复制项目 ID。
111
111
  :rtype: int
112
112
  """
113
113
  return self._ProjectId
@@ -137,7 +137,7 @@ class AssignProjectResponse(AbstractModel):
137
137
 
138
138
  def __init__(self):
139
139
  r"""
140
- :param _FlowIds: 返回的异步任务ID列表
140
+ :param _FlowIds: 返回的异步任务ID列表。
141
141
  :type FlowIds: list of int non-negative
142
142
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
143
143
  :type RequestId: str
@@ -147,7 +147,7 @@ class AssignProjectResponse(AbstractModel):
147
147
 
148
148
  @property
149
149
  def FlowIds(self):
150
- """返回的异步任务ID列表
150
+ """返回的异步任务ID列表。
151
151
  :rtype: list of int non-negative
152
152
  """
153
153
  return self._FlowIds
@@ -36564,6 +36564,10 @@ class HighlightSegmentItem(AbstractModel):
36564
36564
  :type BeginTime: str
36565
36565
  :param _EndTime: 直播切片对应直播结束时间点,采用 ISO 日期格式。
36566
36566
  :type EndTime: str
36567
+ :param _Title: 集锦标题。
36568
+ :type Title: str
36569
+ :param _Summary: 集锦概要。
36570
+ :type Summary: str
36567
36571
  """
36568
36572
  self._Confidence = None
36569
36573
  self._StartTimeOffset = None
@@ -36571,6 +36575,8 @@ class HighlightSegmentItem(AbstractModel):
36571
36575
  self._SegmentTags = None
36572
36576
  self._BeginTime = None
36573
36577
  self._EndTime = None
36578
+ self._Title = None
36579
+ self._Summary = None
36574
36580
 
36575
36581
  @property
36576
36582
  def Confidence(self):
@@ -36639,6 +36645,28 @@ class HighlightSegmentItem(AbstractModel):
36639
36645
  def EndTime(self, EndTime):
36640
36646
  self._EndTime = EndTime
36641
36647
 
36648
+ @property
36649
+ def Title(self):
36650
+ """集锦标题。
36651
+ :rtype: str
36652
+ """
36653
+ return self._Title
36654
+
36655
+ @Title.setter
36656
+ def Title(self, Title):
36657
+ self._Title = Title
36658
+
36659
+ @property
36660
+ def Summary(self):
36661
+ """集锦概要。
36662
+ :rtype: str
36663
+ """
36664
+ return self._Summary
36665
+
36666
+ @Summary.setter
36667
+ def Summary(self, Summary):
36668
+ self._Summary = Summary
36669
+
36642
36670
 
36643
36671
  def _deserialize(self, params):
36644
36672
  self._Confidence = params.get("Confidence")
@@ -36647,6 +36675,8 @@ class HighlightSegmentItem(AbstractModel):
36647
36675
  self._SegmentTags = params.get("SegmentTags")
36648
36676
  self._BeginTime = params.get("BeginTime")
36649
36677
  self._EndTime = params.get("EndTime")
36678
+ self._Title = params.get("Title")
36679
+ self._Summary = params.get("Summary")
36650
36680
  memeber_set = set(params.keys())
36651
36681
  for name, value in vars(self).items():
36652
36682
  property_name = name[1:]
@@ -42057,12 +42087,20 @@ class MediaAiAnalysisHighlightItem(AbstractModel):
42057
42087
  :type Duration: float
42058
42088
  :param _SegmentSet: 智能精彩集锦子片段列表。
42059
42089
  :type SegmentSet: list of HighlightSegmentItem
42090
+ :param _HighlightUrl: 智能精彩集锦地址。
42091
+ 注意:此字段可能返回 null,表示取不到有效值。
42092
+ :type HighlightUrl: str
42093
+ :param _CovImgUrl: 智能精彩集锦封面地址。
42094
+ 注意:此字段可能返回 null,表示取不到有效值。
42095
+ :type CovImgUrl: str
42060
42096
  """
42061
42097
  self._HighlightPath = None
42062
42098
  self._CovImgPath = None
42063
42099
  self._Confidence = None
42064
42100
  self._Duration = None
42065
42101
  self._SegmentSet = None
42102
+ self._HighlightUrl = None
42103
+ self._CovImgUrl = None
42066
42104
 
42067
42105
  @property
42068
42106
  def HighlightPath(self):
@@ -42119,6 +42157,30 @@ class MediaAiAnalysisHighlightItem(AbstractModel):
42119
42157
  def SegmentSet(self, SegmentSet):
42120
42158
  self._SegmentSet = SegmentSet
42121
42159
 
42160
+ @property
42161
+ def HighlightUrl(self):
42162
+ """智能精彩集锦地址。
42163
+ 注意:此字段可能返回 null,表示取不到有效值。
42164
+ :rtype: str
42165
+ """
42166
+ return self._HighlightUrl
42167
+
42168
+ @HighlightUrl.setter
42169
+ def HighlightUrl(self, HighlightUrl):
42170
+ self._HighlightUrl = HighlightUrl
42171
+
42172
+ @property
42173
+ def CovImgUrl(self):
42174
+ """智能精彩集锦封面地址。
42175
+ 注意:此字段可能返回 null,表示取不到有效值。
42176
+ :rtype: str
42177
+ """
42178
+ return self._CovImgUrl
42179
+
42180
+ @CovImgUrl.setter
42181
+ def CovImgUrl(self, CovImgUrl):
42182
+ self._CovImgUrl = CovImgUrl
42183
+
42122
42184
 
42123
42185
  def _deserialize(self, params):
42124
42186
  self._HighlightPath = params.get("HighlightPath")
@@ -42131,6 +42193,8 @@ class MediaAiAnalysisHighlightItem(AbstractModel):
42131
42193
  obj = HighlightSegmentItem()
42132
42194
  obj._deserialize(item)
42133
42195
  self._SegmentSet.append(obj)
42196
+ self._HighlightUrl = params.get("HighlightUrl")
42197
+ self._CovImgUrl = params.get("CovImgUrl")
42134
42198
  memeber_set = set(params.keys())
42135
42199
  for name, value in vars(self).items():
42136
42200
  property_name = name[1:]
@@ -8090,7 +8090,7 @@ RideHailingDriverLicense -- 网约车驾驶证
8090
8090
  RideHailingTransportLicense -- 网约车运输证
8091
8091
  WayBill -- 快递运单
8092
8092
  AccountOpeningPermit -- 银行开户许可证
8093
- InvoiceEng -- 海外发票模版
8093
+ InvoiceEng -- 国际发票模板
8094
8094
  Coin --钱币识别模板
8095
8095
  OnboardingDocuments -- 入职材料识别
8096
8096
  PropertyOwnershipCertificate -- 房产证识别
@@ -8188,7 +8188,7 @@ RideHailingDriverLicense -- 网约车驾驶证
8188
8188
  RideHailingTransportLicense -- 网约车运输证
8189
8189
  WayBill -- 快递运单
8190
8190
  AccountOpeningPermit -- 银行开户许可证
8191
- InvoiceEng -- 海外发票模版
8191
+ InvoiceEng -- 国际发票模板
8192
8192
  Coin --钱币识别模板
8193
8193
  OnboardingDocuments -- 入职材料识别
8194
8194
  PropertyOwnershipCertificate -- 房产证识别
@@ -8350,7 +8350,7 @@ ReceiptWeightNote -- 磅单收货单识别模板
8350
8350
  :type EnableCoord: bool
8351
8351
  :param _OutputParentKey: 是否开启父子key识别,默认是
8352
8352
  :type OutputParentKey: bool
8353
- :param _ConfigAdvanced: 模版的单个属性配置
8353
+ :param _ConfigAdvanced: 模板的单个属性配置
8354
8354
  :type ConfigAdvanced: :class:`tencentcloud.ocr.v20181119.models.ConfigAdvanced`
8355
8355
  """
8356
8356
  self._ImageUrl = None
@@ -8470,7 +8470,7 @@ ReceiptWeightNote -- 磅单收货单识别模板
8470
8470
 
8471
8471
  @property
8472
8472
  def ConfigAdvanced(self):
8473
- """模版的单个属性配置
8473
+ """模板的单个属性配置
8474
8474
  :rtype: :class:`tencentcloud.ocr.v20181119.models.ConfigAdvanced`
8475
8475
  """
8476
8476
  return self._ConfigAdvanced
@@ -8624,7 +8624,7 @@ flase:输出默认字段+自定义字段
8624
8624
  :type ReturnFullText: bool
8625
8625
  :param _ConfigId: 配置id支持:
8626
8626
  General -- 通用场景
8627
- InvoiceEng -- 国际invoice模版
8627
+ InvoiceEng -- 国际invoice模板
8628
8628
  WayBillEng --海运订单模板
8629
8629
  CustomsDeclaration -- 进出口报关单
8630
8630
  WeightNote -- 磅单
@@ -8634,18 +8634,18 @@ EntrustmentBook -- 海运托书
8634
8634
  Statement -- 对账单识别模板
8635
8635
  BookingConfirmation -- 配舱通知书识别模板
8636
8636
  AirWayBill -- 航空运单识别模板
8637
- Table -- 表格模版
8637
+ Table -- 表格模板
8638
8638
  SteelLabel -- 实物标签识别模板
8639
8639
  CarInsurance -- 车辆保险单识别模板
8640
8640
  MultiRealEstateCertificate -- 房产材料识别模板
8641
8641
  MultiRealEstateMaterial -- 房产证明识别模板
8642
- HongKongUtilityBill -- 香港水电煤单识别模板
8642
+ HongKongUtilityBill -- 中国香港水电煤单识别模板
8643
8643
  :type ConfigId: str
8644
8644
  :param _EnableCoord: 是否开启全文字段坐标值的识别
8645
8645
  :type EnableCoord: bool
8646
8646
  :param _OutputParentKey: 是否开启父子key识别,默认是
8647
8647
  :type OutputParentKey: bool
8648
- :param _ConfigAdvanced: 模版的单个属性配置
8648
+ :param _ConfigAdvanced: 模板的单个属性配置
8649
8649
  :type ConfigAdvanced: :class:`tencentcloud.ocr.v20181119.models.ConfigAdvanced`
8650
8650
  :param _OutputLanguage: cn时,添加的key为中文
8651
8651
  en时,添加的key为英语
@@ -8735,7 +8735,7 @@ flase:输出默认字段+自定义字段
8735
8735
  def ConfigId(self):
8736
8736
  """配置id支持:
8737
8737
  General -- 通用场景
8738
- InvoiceEng -- 国际invoice模版
8738
+ InvoiceEng -- 国际invoice模板
8739
8739
  WayBillEng --海运订单模板
8740
8740
  CustomsDeclaration -- 进出口报关单
8741
8741
  WeightNote -- 磅单
@@ -8745,12 +8745,12 @@ EntrustmentBook -- 海运托书
8745
8745
  Statement -- 对账单识别模板
8746
8746
  BookingConfirmation -- 配舱通知书识别模板
8747
8747
  AirWayBill -- 航空运单识别模板
8748
- Table -- 表格模版
8748
+ Table -- 表格模板
8749
8749
  SteelLabel -- 实物标签识别模板
8750
8750
  CarInsurance -- 车辆保险单识别模板
8751
8751
  MultiRealEstateCertificate -- 房产材料识别模板
8752
8752
  MultiRealEstateMaterial -- 房产证明识别模板
8753
- HongKongUtilityBill -- 香港水电煤单识别模板
8753
+ HongKongUtilityBill -- 中国香港水电煤单识别模板
8754
8754
  :rtype: str
8755
8755
  """
8756
8756
  return self._ConfigId
@@ -8783,7 +8783,7 @@ HongKongUtilityBill -- 香港水电煤单识别模板
8783
8783
 
8784
8784
  @property
8785
8785
  def ConfigAdvanced(self):
8786
- """模版的单个属性配置
8786
+ """模板的单个属性配置
8787
8787
  :rtype: :class:`tencentcloud.ocr.v20181119.models.ConfigAdvanced`
8788
8788
  """
8789
8789
  return self._ConfigAdvanced
@@ -10596,6 +10596,8 @@ class GeneralAccurateOCRRequest(AbstractModel):
10596
10596
  :type PdfPageNumber: int
10597
10597
  :param _EnableDetectText: 文本检测开关,默认为true。设置为false可直接进行单行识别,适用于仅包含正向单行文本的图片场景。
10598
10598
  :type EnableDetectText: bool
10599
+ :param _ConfigID: 配置ID支持: OCR -- 通用场景 MulOCR--多语种场景
10600
+ :type ConfigID: str
10599
10601
  """
10600
10602
  self._ImageBase64 = None
10601
10603
  self._ImageUrl = None
@@ -10604,6 +10606,7 @@ class GeneralAccurateOCRRequest(AbstractModel):
10604
10606
  self._IsPdf = None
10605
10607
  self._PdfPageNumber = None
10606
10608
  self._EnableDetectText = None
10609
+ self._ConfigID = None
10607
10610
 
10608
10611
  @property
10609
10612
  def ImageBase64(self):
@@ -10682,6 +10685,17 @@ class GeneralAccurateOCRRequest(AbstractModel):
10682
10685
  def EnableDetectText(self, EnableDetectText):
10683
10686
  self._EnableDetectText = EnableDetectText
10684
10687
 
10688
+ @property
10689
+ def ConfigID(self):
10690
+ """配置ID支持: OCR -- 通用场景 MulOCR--多语种场景
10691
+ :rtype: str
10692
+ """
10693
+ return self._ConfigID
10694
+
10695
+ @ConfigID.setter
10696
+ def ConfigID(self, ConfigID):
10697
+ self._ConfigID = ConfigID
10698
+
10685
10699
 
10686
10700
  def _deserialize(self, params):
10687
10701
  self._ImageBase64 = params.get("ImageBase64")
@@ -10691,6 +10705,7 @@ class GeneralAccurateOCRRequest(AbstractModel):
10691
10705
  self._IsPdf = params.get("IsPdf")
10692
10706
  self._PdfPageNumber = params.get("PdfPageNumber")
10693
10707
  self._EnableDetectText = params.get("EnableDetectText")
10708
+ self._ConfigID = params.get("ConfigID")
10694
10709
  memeber_set = set(params.keys())
10695
10710
  for name, value in vars(self).items():
10696
10711
  property_name = name[1:]
@@ -12533,10 +12548,10 @@ class HandwritingEssayOCRRequest(AbstractModel):
12533
12548
  :param _PdfPageNumber: 需要识别的PDF页面的对应页码,仅支持PDF单页识别,当上传文件为PDF且IsPdf参数值为true时有效,默认值为前3页。
12534
12549
  :type PdfPageNumber: int
12535
12550
  :param _ConfigId: 配置id支持:
12536
- ArticleRecognize -- 手写作文模版
12551
+ ArticleRecognize -- 手写作文模板
12537
12552
  默认:ArticleRecognize
12538
12553
  :type ConfigId: str
12539
- :param _Scene: 模版的单个属性配置
12554
+ :param _Scene: 模板的单个属性配置
12540
12555
  :type Scene: str
12541
12556
  """
12542
12557
  self._ImageUrl = None
@@ -12581,7 +12596,7 @@ ArticleRecognize -- 手写作文模版
12581
12596
  @property
12582
12597
  def ConfigId(self):
12583
12598
  """配置id支持:
12584
- ArticleRecognize -- 手写作文模版
12599
+ ArticleRecognize -- 手写作文模板
12585
12600
  默认:ArticleRecognize
12586
12601
  :rtype: str
12587
12602
  """
@@ -12593,7 +12608,7 @@ ArticleRecognize -- 手写作文模版
12593
12608
 
12594
12609
  @property
12595
12610
  def Scene(self):
12596
- """模版的单个属性配置
12611
+ """模板的单个属性配置
12597
12612
  :rtype: str
12598
12613
  """
12599
12614
  return self._Scene