tencentcloud-sdk-python 3.0.1409__py2.py3-none-any.whl → 3.0.1411__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 (60) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ams/v20201229/models.py +16 -189
  3. tencentcloud/apm/v20210622/models.py +15 -0
  4. tencentcloud/bh/v20230418/bh_client.py +138 -0
  5. tencentcloud/bh/v20230418/errorcodes.py +3 -0
  6. tencentcloud/bh/v20230418/models.py +991 -67
  7. tencentcloud/ccc/v20200210/models.py +2 -2
  8. tencentcloud/cdb/v20170320/cdb_client.py +27 -21
  9. tencentcloud/cdb/v20170320/errorcodes.py +0 -3
  10. tencentcloud/cdb/v20170320/models.py +294 -214
  11. tencentcloud/ctem/__init__.py +0 -0
  12. tencentcloud/ctem/v20231128/__init__.py +0 -0
  13. tencentcloud/ctem/v20231128/ctem_client.py +601 -0
  14. tencentcloud/ctem/v20231128/errorcodes.py +75 -0
  15. tencentcloud/ctem/v20231128/models.py +10459 -0
  16. tencentcloud/cwp/v20180228/models.py +165 -0
  17. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  18. tencentcloud/cynosdb/v20190107/models.py +45 -0
  19. tencentcloud/dlc/v20210125/dlc_client.py +3 -1
  20. tencentcloud/dlc/v20210125/models.py +24 -7
  21. tencentcloud/dnspod/v20210323/errorcodes.py +1 -1
  22. tencentcloud/dsgc/v20190723/dsgc_client.py +1 -3
  23. tencentcloud/dsgc/v20190723/models.py +342 -15
  24. tencentcloud/emr/v20190103/models.py +155 -0
  25. tencentcloud/es/v20180416/errorcodes.py +42 -0
  26. tencentcloud/ess/v20201111/models.py +33 -4
  27. tencentcloud/hunyuan/v20230901/models.py +17 -2
  28. tencentcloud/ims/v20201229/models.py +2 -30
  29. tencentcloud/iotexplorer/v20190423/models.py +4 -4
  30. tencentcloud/iotvideo/v20201215/models.py +2 -2
  31. tencentcloud/iotvideo/v20211125/models.py +2 -2
  32. tencentcloud/kms/v20190118/errorcodes.py +36 -0
  33. tencentcloud/kms/v20190118/kms_client.py +345 -0
  34. tencentcloud/kms/v20190118/models.py +3437 -1534
  35. tencentcloud/lighthouse/v20200324/errorcodes.py +9 -0
  36. tencentcloud/lke/v20231130/lke_client.py +92 -0
  37. tencentcloud/lke/v20231130/models.py +2782 -622
  38. tencentcloud/mongodb/v20190725/models.py +15 -0
  39. tencentcloud/mps/v20190612/models.py +217 -18
  40. tencentcloud/mqtt/v20240516/errorcodes.py +3 -0
  41. tencentcloud/mqtt/v20240516/models.py +255 -0
  42. tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
  43. tencentcloud/redis/v20180412/models.py +6 -6
  44. tencentcloud/ses/v20201002/models.py +0 -8
  45. tencentcloud/tcss/v20201101/models.py +15 -0
  46. tencentcloud/thpc/v20230321/models.py +47 -2
  47. tencentcloud/tione/v20211111/models.py +15 -0
  48. tencentcloud/tke/v20180525/models.py +19 -0
  49. tencentcloud/trocket/v20230308/models.py +624 -354
  50. tencentcloud/trocket/v20230308/trocket_client.py +28 -5
  51. tencentcloud/vm/v20210922/models.py +45 -172
  52. tencentcloud/vpc/v20170312/models.py +15 -0
  53. tencentcloud/waf/v20180125/models.py +110 -18
  54. tencentcloud/wedata/v20210820/models.py +1003 -4
  55. tencentcloud/wedata/v20210820/wedata_client.py +71 -2
  56. {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/METADATA +1 -1
  57. {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/RECORD +60 -55
  58. {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/LICENSE +0 -0
  59. {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/WHEEL +0 -0
  60. {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/top_level.txt +0 -0
@@ -11541,6 +11541,8 @@ class SlowLogPattern(AbstractModel):
11541
11541
  r"""
11542
11542
  :param _Pattern: 慢日志模式
11543
11543
  :type Pattern: str
11544
+ :param _QueryHash: queryHash
11545
+ :type QueryHash: str
11544
11546
  :param _MaxTime: 最大执行时间
11545
11547
  :type MaxTime: int
11546
11548
  :param _AverageTime: 平均执行时间
@@ -11549,6 +11551,7 @@ class SlowLogPattern(AbstractModel):
11549
11551
  :type Total: int
11550
11552
  """
11551
11553
  self._Pattern = None
11554
+ self._QueryHash = None
11552
11555
  self._MaxTime = None
11553
11556
  self._AverageTime = None
11554
11557
  self._Total = None
@@ -11564,6 +11567,17 @@ class SlowLogPattern(AbstractModel):
11564
11567
  def Pattern(self, Pattern):
11565
11568
  self._Pattern = Pattern
11566
11569
 
11570
+ @property
11571
+ def QueryHash(self):
11572
+ """queryHash
11573
+ :rtype: str
11574
+ """
11575
+ return self._QueryHash
11576
+
11577
+ @QueryHash.setter
11578
+ def QueryHash(self, QueryHash):
11579
+ self._QueryHash = QueryHash
11580
+
11567
11581
  @property
11568
11582
  def MaxTime(self):
11569
11583
  """最大执行时间
@@ -11600,6 +11614,7 @@ class SlowLogPattern(AbstractModel):
11600
11614
 
11601
11615
  def _deserialize(self, params):
11602
11616
  self._Pattern = params.get("Pattern")
11617
+ self._QueryHash = params.get("QueryHash")
11603
11618
  self._MaxTime = params.get("MaxTime")
11604
11619
  self._AverageTime = params.get("AverageTime")
11605
11620
  self._Total = params.get("Total")
@@ -40971,12 +40971,16 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
40971
40971
  :param _Paragraphs: 分段结果。
40972
40972
  注意:此字段可能返回 null,表示取不到有效值。
40973
40973
  :type Paragraphs: list of AiParagraphInfo
40974
+ :param _MindMapUrl: 摘要思维导图地址
40975
+ 注意:此字段可能返回 null,表示取不到有效值。
40976
+ :type MindMapUrl: str
40974
40977
  """
40975
40978
  self._Description = None
40976
40979
  self._Confidence = None
40977
40980
  self._Title = None
40978
40981
  self._Keywords = None
40979
40982
  self._Paragraphs = None
40983
+ self._MindMapUrl = None
40980
40984
 
40981
40985
  @property
40982
40986
  def Description(self):
@@ -41034,6 +41038,18 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
41034
41038
  def Paragraphs(self, Paragraphs):
41035
41039
  self._Paragraphs = Paragraphs
41036
41040
 
41041
+ @property
41042
+ def MindMapUrl(self):
41043
+ """摘要思维导图地址
41044
+ 注意:此字段可能返回 null,表示取不到有效值。
41045
+ :rtype: str
41046
+ """
41047
+ return self._MindMapUrl
41048
+
41049
+ @MindMapUrl.setter
41050
+ def MindMapUrl(self, MindMapUrl):
41051
+ self._MindMapUrl = MindMapUrl
41052
+
41037
41053
 
41038
41054
  def _deserialize(self, params):
41039
41055
  self._Description = params.get("Description")
@@ -41046,6 +41062,7 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
41046
41062
  obj = AiParagraphInfo()
41047
41063
  obj._deserialize(item)
41048
41064
  self._Paragraphs.append(obj)
41065
+ self._MindMapUrl = params.get("MindMapUrl")
41049
41066
  memeber_set = set(params.keys())
41050
41067
  for name, value in vars(self).items():
41051
41068
  property_name = name[1:]
@@ -59354,21 +59371,38 @@ class SubtitleTemplate(AbstractModel):
59354
59371
  :param _Path: 要压制到视频中的字幕文件地址。
59355
59372
  注意:此字段可能返回 null,表示取不到有效值。
59356
59373
  :type Path: str
59357
- :param _StreamIndex: 指定要压制到视频中的字幕轨道,如果有指定Path,则Path 优先级更高。Path 和 StreamIndex 至少指定一个。
59374
+ :param _StreamIndex: 指定要压制到视频中的字幕轨道,Path 和 StreamIndex 至少指定一个;如果指定了Path,则优先使用Path。
59375
+ Streamindex的取值须与源文件中的字幕轨索引一致。例如,源文件中的字幕轨为stream#0:3,则StreamIndex应为3,否则可能导致任务处理失败。
59376
+
59377
+
59358
59378
  注意:此字段可能返回 null,表示取不到有效值。
59359
59379
  :type StreamIndex: int
59360
- :param _FontType: 字体类型,
59380
+ :param _FontType: 字体类型,支持:
59361
59381
  <li>hei.ttf:黑体</li>
59362
59382
  <li>song.ttf:宋体</li>
59363
- <li>simkai.ttf:楷体</li>
59383
+ <li>kai.ttf(推荐)或 simkai.ttf:楷体</li>
59384
+ <li>msyh.ttf:微软雅黑</li>
59385
+ <li>msyhbd.ttf:微软雅黑加粗</li>
59386
+ <li>hkjgt.ttf:华康金刚体</li>
59387
+ <li>dhttx.ttf:典黑体特细</li>
59388
+ <li>xqgdzt.ttf:喜鹊古字典体</li>
59389
+ <li>qpcyt.ttf:巧拼超圆体</li>
59364
59390
  <li>arial.ttf:仅支持英文</li>
59365
- 默认hei.ttf
59391
+ <li>dinalternate.ttf:DIN Alternate Bold</li>
59392
+ <li>helveticalt.ttf:Helvetica</li>
59393
+ <li>helveticains.ttf:Helvetica Inserat</li>
59394
+ <li>trajanpro.ttf:TrajanPro-Bold</li>
59395
+ <li>korean.ttf:韩语</li>
59396
+ <li>japanese.ttf:日语</li>
59397
+ <li>thai.ttf:泰语</li>
59398
+ 默认:hei.ttf 黑体。
59366
59399
  注意:此字段可能返回 null,表示取不到有效值。
59367
59400
  :type FontType: str
59368
59401
  :param _FontSize: 字体大小,格式:Npx,N 为数值,不指定则以字幕文件中为准。
59402
+ 默认源视频高度的5%。
59369
59403
  注意:此字段可能返回 null,表示取不到有效值。
59370
59404
  :type FontSize: str
59371
- :param _FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)
59405
+ :param _FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
59372
59406
  注意:此字段可能返回 null,表示取不到有效值。
59373
59407
  :type FontColor: str
59374
59408
  :param _FontAlpha: 文字透明度,取值范围:(0, 1]
@@ -59377,6 +59411,47 @@ class SubtitleTemplate(AbstractModel):
59377
59411
  默认值:1。
59378
59412
  注意:此字段可能返回 null,表示取不到有效值。
59379
59413
  :type FontAlpha: float
59414
+ :param _YPos: 字幕y轴坐标位置,指定此参数会忽略字幕文件自带坐标;支持像素和百分比格式:
59415
+
59416
+ - 像素:Npx,N范围:[0,4096]。
59417
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕y坐标=10%*源视频高度。
59418
+
59419
+ 默认值:源视频高度*4%。
59420
+ 注意:坐标轴原点在源视频中轴线底部,字幕基准点在字幕中轴线底部,参考下图:
59421
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59422
+
59423
+ 注意:此字段可能返回 null,表示取不到有效值。
59424
+ :type YPos: str
59425
+ :param _BoardY: 字幕背景底板的y轴坐标位置;支持像素和百分比格式:
59426
+
59427
+ - 像素:Npx,N范围:[0,4096]。
59428
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕背景底板y坐标=10%*源视频高度。
59429
+
59430
+ 不传表示不开启字幕背景底板。
59431
+ 注意:坐标轴原点位于源视频的中轴线底部,字幕背景底板的基准点在其中轴线底部,参考下图:
59432
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59433
+
59434
+ 注意:此字段可能返回 null,表示取不到有效值。
59435
+ :type BoardY: str
59436
+ :param _BoardWidth: 底板的宽度,单位为像素,取值范围:[0,4096]。
59437
+ 默认源视频宽像素的90%。
59438
+
59439
+ 注意:此字段可能返回 null,表示取不到有效值。
59440
+ :type BoardWidth: int
59441
+ :param _BoardHeight: 底板的高度。单位为像素,取值范围:[0,4096]。
59442
+ 默认为源视频高像素的15%。
59443
+ 注意:此字段可能返回 null,表示取不到有效值。
59444
+ :type BoardHeight: int
59445
+ :param _BoardColor: 底板颜色。格式:0xRRGGBB,
59446
+ 默认值:0x000000(黑色)。
59447
+ 注意:此字段可能返回 null,表示取不到有效值。
59448
+ :type BoardColor: str
59449
+ :param _BoardAlpha: 字幕背景板透明度,取值范围:[0, 1]
59450
+ <li>0:完全透明</li>
59451
+ <li>1:完全不透明</li>
59452
+ 默认值:0.8。
59453
+ 注意:此字段可能返回 null,表示取不到有效值。
59454
+ :type BoardAlpha: float
59380
59455
  """
59381
59456
  self._Path = None
59382
59457
  self._StreamIndex = None
@@ -59384,6 +59459,12 @@ class SubtitleTemplate(AbstractModel):
59384
59459
  self._FontSize = None
59385
59460
  self._FontColor = None
59386
59461
  self._FontAlpha = None
59462
+ self._YPos = None
59463
+ self._BoardY = None
59464
+ self._BoardWidth = None
59465
+ self._BoardHeight = None
59466
+ self._BoardColor = None
59467
+ self._BoardAlpha = None
59387
59468
 
59388
59469
  @property
59389
59470
  def Path(self):
@@ -59399,7 +59480,10 @@ class SubtitleTemplate(AbstractModel):
59399
59480
 
59400
59481
  @property
59401
59482
  def StreamIndex(self):
59402
- """指定要压制到视频中的字幕轨道,如果有指定Path,则Path 优先级更高。Path 和 StreamIndex 至少指定一个。
59483
+ """指定要压制到视频中的字幕轨道,Path 和 StreamIndex 至少指定一个;如果指定了Path,则优先使用Path。
59484
+ Streamindex的取值须与源文件中的字幕轨索引一致。例如,源文件中的字幕轨为stream#0:3,则StreamIndex应为3,否则可能导致任务处理失败。
59485
+
59486
+
59403
59487
  注意:此字段可能返回 null,表示取不到有效值。
59404
59488
  :rtype: int
59405
59489
  """
@@ -59411,12 +59495,25 @@ class SubtitleTemplate(AbstractModel):
59411
59495
 
59412
59496
  @property
59413
59497
  def FontType(self):
59414
- """字体类型,
59498
+ """字体类型,支持:
59415
59499
  <li>hei.ttf:黑体</li>
59416
59500
  <li>song.ttf:宋体</li>
59417
- <li>simkai.ttf:楷体</li>
59501
+ <li>kai.ttf(推荐)或 simkai.ttf:楷体</li>
59502
+ <li>msyh.ttf:微软雅黑</li>
59503
+ <li>msyhbd.ttf:微软雅黑加粗</li>
59504
+ <li>hkjgt.ttf:华康金刚体</li>
59505
+ <li>dhttx.ttf:典黑体特细</li>
59506
+ <li>xqgdzt.ttf:喜鹊古字典体</li>
59507
+ <li>qpcyt.ttf:巧拼超圆体</li>
59418
59508
  <li>arial.ttf:仅支持英文</li>
59419
- 默认hei.ttf
59509
+ <li>dinalternate.ttf:DIN Alternate Bold</li>
59510
+ <li>helveticalt.ttf:Helvetica</li>
59511
+ <li>helveticains.ttf:Helvetica Inserat</li>
59512
+ <li>trajanpro.ttf:TrajanPro-Bold</li>
59513
+ <li>korean.ttf:韩语</li>
59514
+ <li>japanese.ttf:日语</li>
59515
+ <li>thai.ttf:泰语</li>
59516
+ 默认:hei.ttf 黑体。
59420
59517
  注意:此字段可能返回 null,表示取不到有效值。
59421
59518
  :rtype: str
59422
59519
  """
@@ -59429,6 +59526,7 @@ class SubtitleTemplate(AbstractModel):
59429
59526
  @property
59430
59527
  def FontSize(self):
59431
59528
  """字体大小,格式:Npx,N 为数值,不指定则以字幕文件中为准。
59529
+ 默认源视频高度的5%。
59432
59530
  注意:此字段可能返回 null,表示取不到有效值。
59433
59531
  :rtype: str
59434
59532
  """
@@ -59440,7 +59538,7 @@ class SubtitleTemplate(AbstractModel):
59440
59538
 
59441
59539
  @property
59442
59540
  def FontColor(self):
59443
- """字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)
59541
+ """字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
59444
59542
  注意:此字段可能返回 null,表示取不到有效值。
59445
59543
  :rtype: str
59446
59544
  """
@@ -59465,6 +59563,101 @@ class SubtitleTemplate(AbstractModel):
59465
59563
  def FontAlpha(self, FontAlpha):
59466
59564
  self._FontAlpha = FontAlpha
59467
59565
 
59566
+ @property
59567
+ def YPos(self):
59568
+ """字幕y轴坐标位置,指定此参数会忽略字幕文件自带坐标;支持像素和百分比格式:
59569
+
59570
+ - 像素:Npx,N范围:[0,4096]。
59571
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕y坐标=10%*源视频高度。
59572
+
59573
+ 默认值:源视频高度*4%。
59574
+ 注意:坐标轴原点在源视频中轴线底部,字幕基准点在字幕中轴线底部,参考下图:
59575
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59576
+
59577
+ 注意:此字段可能返回 null,表示取不到有效值。
59578
+ :rtype: str
59579
+ """
59580
+ return self._YPos
59581
+
59582
+ @YPos.setter
59583
+ def YPos(self, YPos):
59584
+ self._YPos = YPos
59585
+
59586
+ @property
59587
+ def BoardY(self):
59588
+ """字幕背景底板的y轴坐标位置;支持像素和百分比格式:
59589
+
59590
+ - 像素:Npx,N范围:[0,4096]。
59591
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕背景底板y坐标=10%*源视频高度。
59592
+
59593
+ 不传表示不开启字幕背景底板。
59594
+ 注意:坐标轴原点位于源视频的中轴线底部,字幕背景底板的基准点在其中轴线底部,参考下图:
59595
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59596
+
59597
+ 注意:此字段可能返回 null,表示取不到有效值。
59598
+ :rtype: str
59599
+ """
59600
+ return self._BoardY
59601
+
59602
+ @BoardY.setter
59603
+ def BoardY(self, BoardY):
59604
+ self._BoardY = BoardY
59605
+
59606
+ @property
59607
+ def BoardWidth(self):
59608
+ """底板的宽度,单位为像素,取值范围:[0,4096]。
59609
+ 默认源视频宽像素的90%。
59610
+
59611
+ 注意:此字段可能返回 null,表示取不到有效值。
59612
+ :rtype: int
59613
+ """
59614
+ return self._BoardWidth
59615
+
59616
+ @BoardWidth.setter
59617
+ def BoardWidth(self, BoardWidth):
59618
+ self._BoardWidth = BoardWidth
59619
+
59620
+ @property
59621
+ def BoardHeight(self):
59622
+ """底板的高度。单位为像素,取值范围:[0,4096]。
59623
+ 默认为源视频高像素的15%。
59624
+ 注意:此字段可能返回 null,表示取不到有效值。
59625
+ :rtype: int
59626
+ """
59627
+ return self._BoardHeight
59628
+
59629
+ @BoardHeight.setter
59630
+ def BoardHeight(self, BoardHeight):
59631
+ self._BoardHeight = BoardHeight
59632
+
59633
+ @property
59634
+ def BoardColor(self):
59635
+ """底板颜色。格式:0xRRGGBB,
59636
+ 默认值:0x000000(黑色)。
59637
+ 注意:此字段可能返回 null,表示取不到有效值。
59638
+ :rtype: str
59639
+ """
59640
+ return self._BoardColor
59641
+
59642
+ @BoardColor.setter
59643
+ def BoardColor(self, BoardColor):
59644
+ self._BoardColor = BoardColor
59645
+
59646
+ @property
59647
+ def BoardAlpha(self):
59648
+ """字幕背景板透明度,取值范围:[0, 1]
59649
+ <li>0:完全透明</li>
59650
+ <li>1:完全不透明</li>
59651
+ 默认值:0.8。
59652
+ 注意:此字段可能返回 null,表示取不到有效值。
59653
+ :rtype: float
59654
+ """
59655
+ return self._BoardAlpha
59656
+
59657
+ @BoardAlpha.setter
59658
+ def BoardAlpha(self, BoardAlpha):
59659
+ self._BoardAlpha = BoardAlpha
59660
+
59468
59661
 
59469
59662
  def _deserialize(self, params):
59470
59663
  self._Path = params.get("Path")
@@ -59473,6 +59666,12 @@ class SubtitleTemplate(AbstractModel):
59473
59666
  self._FontSize = params.get("FontSize")
59474
59667
  self._FontColor = params.get("FontColor")
59475
59668
  self._FontAlpha = params.get("FontAlpha")
59669
+ self._YPos = params.get("YPos")
59670
+ self._BoardY = params.get("BoardY")
59671
+ self._BoardWidth = params.get("BoardWidth")
59672
+ self._BoardHeight = params.get("BoardHeight")
59673
+ self._BoardColor = params.get("BoardColor")
59674
+ self._BoardAlpha = params.get("BoardAlpha")
59476
59675
  memeber_set = set(params.keys())
59477
59676
  for name, value in vars(self).items():
59478
59677
  property_name = name[1:]
@@ -64494,10 +64693,10 @@ class WatermarkTemplate(AbstractModel):
64494
64693
  :param _UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
64495
64694
  :type UpdateTime: str
64496
64695
  :param _CoordinateOrigin: 原点位置,可选值:
64497
- <li>topLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64498
- <li>topRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64499
- <li>bottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64500
- <li>bottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下。;</li>
64696
+ <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64697
+ <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64698
+ <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64699
+ <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
64501
64700
  :type CoordinateOrigin: str
64502
64701
  """
64503
64702
  self._Definition = None
@@ -64646,10 +64845,10 @@ class WatermarkTemplate(AbstractModel):
64646
64845
  @property
64647
64846
  def CoordinateOrigin(self):
64648
64847
  """原点位置,可选值:
64649
- <li>topLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64650
- <li>topRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64651
- <li>bottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64652
- <li>bottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下。;</li>
64848
+ <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64849
+ <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64850
+ <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64851
+ <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
64653
64852
  :rtype: str
64654
64853
  """
64655
64854
  return self._CoordinateOrigin
@@ -83,6 +83,9 @@ RESOURCENOTFOUND_CERTIFICATE = 'ResourceNotFound.Certificate'
83
83
  # ResourceNotFound.Instance
84
84
  RESOURCENOTFOUND_INSTANCE = 'ResourceNotFound.Instance'
85
85
 
86
+ # ResourceNotFound.Message
87
+ RESOURCENOTFOUND_MESSAGE = 'ResourceNotFound.Message'
88
+
86
89
  # NoAuthenticator
87
90
  RESOURCENOTFOUND_NOAUTHENTICATOR = 'ResourceNotFound.NoAuthenticator'
88
91
 
@@ -5263,6 +5263,210 @@ class DescribeMessageByTopicResponse(AbstractModel):
5263
5263
  self._RequestId = params.get("RequestId")
5264
5264
 
5265
5265
 
5266
+ class DescribeMessageDetailsRequest(AbstractModel):
5267
+ """DescribeMessageDetails请求参数结构体
5268
+
5269
+ """
5270
+
5271
+ def __init__(self):
5272
+ r"""
5273
+ :param _InstanceId: 腾讯云MQTT实例ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)接口或控制台获得。
5274
+ :type InstanceId: str
5275
+ :param _MessageId: 消息ID
5276
+ :type MessageId: str
5277
+ :param _Subscription: 订阅表达式
5278
+ :type Subscription: str
5279
+ """
5280
+ self._InstanceId = None
5281
+ self._MessageId = None
5282
+ self._Subscription = None
5283
+
5284
+ @property
5285
+ def InstanceId(self):
5286
+ """腾讯云MQTT实例ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)接口或控制台获得。
5287
+ :rtype: str
5288
+ """
5289
+ return self._InstanceId
5290
+
5291
+ @InstanceId.setter
5292
+ def InstanceId(self, InstanceId):
5293
+ self._InstanceId = InstanceId
5294
+
5295
+ @property
5296
+ def MessageId(self):
5297
+ """消息ID
5298
+ :rtype: str
5299
+ """
5300
+ return self._MessageId
5301
+
5302
+ @MessageId.setter
5303
+ def MessageId(self, MessageId):
5304
+ self._MessageId = MessageId
5305
+
5306
+ @property
5307
+ def Subscription(self):
5308
+ """订阅表达式
5309
+ :rtype: str
5310
+ """
5311
+ return self._Subscription
5312
+
5313
+ @Subscription.setter
5314
+ def Subscription(self, Subscription):
5315
+ self._Subscription = Subscription
5316
+
5317
+
5318
+ def _deserialize(self, params):
5319
+ self._InstanceId = params.get("InstanceId")
5320
+ self._MessageId = params.get("MessageId")
5321
+ self._Subscription = params.get("Subscription")
5322
+ memeber_set = set(params.keys())
5323
+ for name, value in vars(self).items():
5324
+ property_name = name[1:]
5325
+ if property_name in memeber_set:
5326
+ memeber_set.remove(property_name)
5327
+ if len(memeber_set) > 0:
5328
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5329
+
5330
+
5331
+
5332
+ class DescribeMessageDetailsResponse(AbstractModel):
5333
+ """DescribeMessageDetails返回参数结构体
5334
+
5335
+ """
5336
+
5337
+ def __init__(self):
5338
+ r"""
5339
+ :param _Body: 消息体
5340
+ :type Body: str
5341
+ :param _UserProperties: 用户自定义属性
5342
+ :type UserProperties: list of UserProperty
5343
+ :param _StoreTimestamp: 消息存储时间,毫秒级时间戳。
5344
+ :type StoreTimestamp: int
5345
+ :param _MessageId: 消息ID
5346
+ :type MessageId: str
5347
+ :param _ClientId: 生产者地址
5348
+ :type ClientId: str
5349
+ :param _Qos: Topic
5350
+ :type Qos: str
5351
+ :param _OriginTopic: 源topic
5352
+ :type OriginTopic: str
5353
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5354
+ :type RequestId: str
5355
+ """
5356
+ self._Body = None
5357
+ self._UserProperties = None
5358
+ self._StoreTimestamp = None
5359
+ self._MessageId = None
5360
+ self._ClientId = None
5361
+ self._Qos = None
5362
+ self._OriginTopic = None
5363
+ self._RequestId = None
5364
+
5365
+ @property
5366
+ def Body(self):
5367
+ """消息体
5368
+ :rtype: str
5369
+ """
5370
+ return self._Body
5371
+
5372
+ @Body.setter
5373
+ def Body(self, Body):
5374
+ self._Body = Body
5375
+
5376
+ @property
5377
+ def UserProperties(self):
5378
+ """用户自定义属性
5379
+ :rtype: list of UserProperty
5380
+ """
5381
+ return self._UserProperties
5382
+
5383
+ @UserProperties.setter
5384
+ def UserProperties(self, UserProperties):
5385
+ self._UserProperties = UserProperties
5386
+
5387
+ @property
5388
+ def StoreTimestamp(self):
5389
+ """消息存储时间,毫秒级时间戳。
5390
+ :rtype: int
5391
+ """
5392
+ return self._StoreTimestamp
5393
+
5394
+ @StoreTimestamp.setter
5395
+ def StoreTimestamp(self, StoreTimestamp):
5396
+ self._StoreTimestamp = StoreTimestamp
5397
+
5398
+ @property
5399
+ def MessageId(self):
5400
+ """消息ID
5401
+ :rtype: str
5402
+ """
5403
+ return self._MessageId
5404
+
5405
+ @MessageId.setter
5406
+ def MessageId(self, MessageId):
5407
+ self._MessageId = MessageId
5408
+
5409
+ @property
5410
+ def ClientId(self):
5411
+ """生产者地址
5412
+ :rtype: str
5413
+ """
5414
+ return self._ClientId
5415
+
5416
+ @ClientId.setter
5417
+ def ClientId(self, ClientId):
5418
+ self._ClientId = ClientId
5419
+
5420
+ @property
5421
+ def Qos(self):
5422
+ """Topic
5423
+ :rtype: str
5424
+ """
5425
+ return self._Qos
5426
+
5427
+ @Qos.setter
5428
+ def Qos(self, Qos):
5429
+ self._Qos = Qos
5430
+
5431
+ @property
5432
+ def OriginTopic(self):
5433
+ """源topic
5434
+ :rtype: str
5435
+ """
5436
+ return self._OriginTopic
5437
+
5438
+ @OriginTopic.setter
5439
+ def OriginTopic(self, OriginTopic):
5440
+ self._OriginTopic = OriginTopic
5441
+
5442
+ @property
5443
+ def RequestId(self):
5444
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5445
+ :rtype: str
5446
+ """
5447
+ return self._RequestId
5448
+
5449
+ @RequestId.setter
5450
+ def RequestId(self, RequestId):
5451
+ self._RequestId = RequestId
5452
+
5453
+
5454
+ def _deserialize(self, params):
5455
+ self._Body = params.get("Body")
5456
+ if params.get("UserProperties") is not None:
5457
+ self._UserProperties = []
5458
+ for item in params.get("UserProperties"):
5459
+ obj = UserProperty()
5460
+ obj._deserialize(item)
5461
+ self._UserProperties.append(obj)
5462
+ self._StoreTimestamp = params.get("StoreTimestamp")
5463
+ self._MessageId = params.get("MessageId")
5464
+ self._ClientId = params.get("ClientId")
5465
+ self._Qos = params.get("Qos")
5466
+ self._OriginTopic = params.get("OriginTopic")
5467
+ self._RequestId = params.get("RequestId")
5468
+
5469
+
5266
5470
  class DescribeMessageListRequest(AbstractModel):
5267
5471
  """DescribeMessageList请求参数结构体
5268
5472
 
@@ -10408,6 +10612,57 @@ class UpdateAuthorizationPolicyPriorityResponse(AbstractModel):
10408
10612
  self._RequestId = params.get("RequestId")
10409
10613
 
10410
10614
 
10615
+ class UserProperty(AbstractModel):
10616
+ """map结构返回
10617
+
10618
+ """
10619
+
10620
+ def __init__(self):
10621
+ r"""
10622
+ :param _Key: key
10623
+ :type Key: str
10624
+ :param _Value: value
10625
+ :type Value: str
10626
+ """
10627
+ self._Key = None
10628
+ self._Value = None
10629
+
10630
+ @property
10631
+ def Key(self):
10632
+ """key
10633
+ :rtype: str
10634
+ """
10635
+ return self._Key
10636
+
10637
+ @Key.setter
10638
+ def Key(self, Key):
10639
+ self._Key = Key
10640
+
10641
+ @property
10642
+ def Value(self):
10643
+ """value
10644
+ :rtype: str
10645
+ """
10646
+ return self._Value
10647
+
10648
+ @Value.setter
10649
+ def Value(self, Value):
10650
+ self._Value = Value
10651
+
10652
+
10653
+ def _deserialize(self, params):
10654
+ self._Key = params.get("Key")
10655
+ self._Value = params.get("Value")
10656
+ memeber_set = set(params.keys())
10657
+ for name, value in vars(self).items():
10658
+ property_name = name[1:]
10659
+ if property_name in memeber_set:
10660
+ memeber_set.remove(property_name)
10661
+ if len(memeber_set) > 0:
10662
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10663
+
10664
+
10665
+
10411
10666
  class VpcInfo(AbstractModel):
10412
10667
  """VPC信息
10413
10668