tencentcloud-sdk-python-intl-en 3.0.1288__py2.py3-none-any.whl → 3.0.1291__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-intl-en might be problematic. Click here for more details.

Files changed (29) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ccc/v20200210/ccc_client.py +23 -0
  3. tencentcloud/ccc/v20200210/models.py +184 -0
  4. tencentcloud/clb/v20180317/clb_client.py +4 -4
  5. tencentcloud/clb/v20180317/errorcodes.py +9 -0
  6. tencentcloud/clb/v20180317/models.py +27 -2
  7. tencentcloud/cynosdb/v20190107/cynosdb_client.py +46 -0
  8. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  9. tencentcloud/cynosdb/v20190107/models.py +1286 -75
  10. tencentcloud/dlc/v20210125/dlc_client.py +69 -0
  11. tencentcloud/dlc/v20210125/models.py +504 -0
  12. tencentcloud/mdl/v20200326/models.py +191 -0
  13. tencentcloud/mongodb/v20190725/errorcodes.py +15 -0
  14. tencentcloud/mongodb/v20190725/models.py +1276 -463
  15. tencentcloud/mongodb/v20190725/mongodb_client.py +75 -6
  16. tencentcloud/monitor/v20180724/models.py +1351 -124
  17. tencentcloud/monitor/v20180724/monitor_client.py +118 -0
  18. tencentcloud/mps/v20190612/models.py +366 -62
  19. tencentcloud/quota/v20241204/models.py +17 -2
  20. tencentcloud/redis/v20180412/models.py +410 -168
  21. tencentcloud/redis/v20180412/redis_client.py +4 -4
  22. tencentcloud/wedata/v20250806/__init__.py +0 -0
  23. tencentcloud/wedata/v20250806/errorcodes.py +57 -0
  24. tencentcloud/wedata/v20250806/models.py +26375 -0
  25. tencentcloud/wedata/v20250806/wedata_client.py +1797 -0
  26. {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/METADATA +1 -1
  27. {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/RECORD +29 -25
  28. {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/WHEEL +0 -0
  29. {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/top_level.txt +0 -0
@@ -1829,10 +1829,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
1829
1829
  Note: supports Chinese characters, letters, digits, spaces, underscores (_), hyphens (-), periods (.), and parentheses. Max 64 characters.
1830
1830
  Note: This field may return null, indicating that no valid value can be obtained.
1831
1831
  :type SubtitleName: str
1832
+ :param _OutputFormat: Output format of the subtitle. valid values: "WebVTT", "TTML".
1833
+ Default value: "WebVTT".
1834
+ :type OutputFormat: str
1835
+ :param _DefaultTrack: Default subtitle track. specifies the current subtitle as the default track when true. a maximum of 1 default subtitle track can be specified.
1836
+ Default value: `false`.
1837
+ :type DefaultTrack: bool
1832
1838
  """
1833
1839
  self._Type = None
1834
1840
  self._Subtitle = None
1835
1841
  self._SubtitleName = None
1842
+ self._OutputFormat = None
1843
+ self._DefaultTrack = None
1836
1844
 
1837
1845
  @property
1838
1846
  def Type(self):
@@ -1874,6 +1882,30 @@ Note: This field may return null, indicating that no valid value can be obtained
1874
1882
  def SubtitleName(self, SubtitleName):
1875
1883
  self._SubtitleName = SubtitleName
1876
1884
 
1885
+ @property
1886
+ def OutputFormat(self):
1887
+ r"""Output format of the subtitle. valid values: "WebVTT", "TTML".
1888
+ Default value: "WebVTT".
1889
+ :rtype: str
1890
+ """
1891
+ return self._OutputFormat
1892
+
1893
+ @OutputFormat.setter
1894
+ def OutputFormat(self, OutputFormat):
1895
+ self._OutputFormat = OutputFormat
1896
+
1897
+ @property
1898
+ def DefaultTrack(self):
1899
+ r"""Default subtitle track. specifies the current subtitle as the default track when true. a maximum of 1 default subtitle track can be specified.
1900
+ Default value: `false`.
1901
+ :rtype: bool
1902
+ """
1903
+ return self._DefaultTrack
1904
+
1905
+ @DefaultTrack.setter
1906
+ def DefaultTrack(self, DefaultTrack):
1907
+ self._DefaultTrack = DefaultTrack
1908
+
1877
1909
 
1878
1910
  def _deserialize(self, params):
1879
1911
  self._Type = params.get("Type")
@@ -1881,6 +1913,8 @@ Note: This field may return null, indicating that no valid value can be obtained
1881
1913
  self._Subtitle = MediaInputInfo()
1882
1914
  self._Subtitle._deserialize(params.get("Subtitle"))
1883
1915
  self._SubtitleName = params.get("SubtitleName")
1916
+ self._OutputFormat = params.get("OutputFormat")
1917
+ self._DefaultTrack = params.get("DefaultTrack")
1884
1918
  memeber_set = set(params.keys())
1885
1919
  for name, value in vars(self).items():
1886
1920
  property_name = name[1:]
@@ -1901,13 +1935,14 @@ class AiAnalysisResult(AbstractModel):
1901
1935
  :param _Type: Task type. valid values:.
1902
1936
  <Li>Classification: intelligent classification.</li>.
1903
1937
  <Li>Cover: specifies the intelligent cover.</li>.
1904
- <Li>Tag: intelligent tag.</li>.
1905
- <Li>FrameTag: specifies intelligent frame-by-frame tagging.</li>.
1938
+ <Li>Tag: intelligent tagging.</li>.
1939
+ <Li>FrameTag: intelligent frame-by-frame tagging.</li>.
1906
1940
  <Li>Highlight: intelligent highlights</li>.
1907
1941
  <Li>DeLogo: intelligent removal.</li>.
1908
1942
  <li>Description: large model summarization.</li>
1909
1943
 
1910
1944
  <Li>Dubbing: intelligent dubbing.</li>.
1945
+ <Li>VideoRemake: specifies video deduplication.</li>.
1911
1946
  :type Type: str
1912
1947
  :param _ClassificationTask: Query result of intelligent categorization task in video content analysis, which is valid if task type is `Classification`.
1913
1948
  :type ClassificationTask: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskClassificationResult`
@@ -1938,6 +1973,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
1938
1973
  :param _DubbingTask: The query result of a Dubbing task for video content analysis, which is valid when the task type is Dubbing.
1939
1974
  Note: This field may return null, indicating that no valid value can be obtained.
1940
1975
  :type DubbingTask: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskDubbingResult`
1976
+ :param _VideoRemakeTask: The query result of a video content deduplication task, which is valid when the task type is VideoRemake.
1977
+ Note: This field may return null, indicating that no valid value can be obtained.
1978
+ :type VideoRemakeTask: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskVideoRemakeResult`
1941
1979
  """
1942
1980
  self._Type = None
1943
1981
  self._ClassificationTask = None
@@ -1951,19 +1989,21 @@ Note: This field may return null, indicating that no valid value can be obtained
1951
1989
  self._DescriptionTask = None
1952
1990
  self._HorizontalToVerticalTask = None
1953
1991
  self._DubbingTask = None
1992
+ self._VideoRemakeTask = None
1954
1993
 
1955
1994
  @property
1956
1995
  def Type(self):
1957
1996
  r"""Task type. valid values:.
1958
1997
  <Li>Classification: intelligent classification.</li>.
1959
1998
  <Li>Cover: specifies the intelligent cover.</li>.
1960
- <Li>Tag: intelligent tag.</li>.
1961
- <Li>FrameTag: specifies intelligent frame-by-frame tagging.</li>.
1999
+ <Li>Tag: intelligent tagging.</li>.
2000
+ <Li>FrameTag: intelligent frame-by-frame tagging.</li>.
1962
2001
  <Li>Highlight: intelligent highlights</li>.
1963
2002
  <Li>DeLogo: intelligent removal.</li>.
1964
2003
  <li>Description: large model summarization.</li>
1965
2004
 
1966
2005
  <Li>Dubbing: intelligent dubbing.</li>.
2006
+ <Li>VideoRemake: specifies video deduplication.</li>.
1967
2007
  :rtype: str
1968
2008
  """
1969
2009
  return self._Type
@@ -2100,6 +2140,18 @@ Note: This field may return null, indicating that no valid value can be obtained
2100
2140
  def DubbingTask(self, DubbingTask):
2101
2141
  self._DubbingTask = DubbingTask
2102
2142
 
2143
+ @property
2144
+ def VideoRemakeTask(self):
2145
+ r"""The query result of a video content deduplication task, which is valid when the task type is VideoRemake.
2146
+ Note: This field may return null, indicating that no valid value can be obtained.
2147
+ :rtype: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskVideoRemakeResult`
2148
+ """
2149
+ return self._VideoRemakeTask
2150
+
2151
+ @VideoRemakeTask.setter
2152
+ def VideoRemakeTask(self, VideoRemakeTask):
2153
+ self._VideoRemakeTask = VideoRemakeTask
2154
+
2103
2155
 
2104
2156
  def _deserialize(self, params):
2105
2157
  self._Type = params.get("Type")
@@ -2136,6 +2188,9 @@ Note: This field may return null, indicating that no valid value can be obtained
2136
2188
  if params.get("DubbingTask") is not None:
2137
2189
  self._DubbingTask = AiAnalysisTaskDubbingResult()
2138
2190
  self._DubbingTask._deserialize(params.get("DubbingTask"))
2191
+ if params.get("VideoRemakeTask") is not None:
2192
+ self._VideoRemakeTask = AiAnalysisTaskVideoRemakeResult()
2193
+ self._VideoRemakeTask._deserialize(params.get("VideoRemakeTask"))
2139
2194
  memeber_set = set(params.keys())
2140
2195
  for name, value in vars(self).items():
2141
2196
  property_name = name[1:]
@@ -4464,6 +4519,197 @@ class AiAnalysisTaskTagResult(AbstractModel):
4464
4519
 
4465
4520
 
4466
4521
 
4522
+ class AiAnalysisTaskVideoRemakeInput(AbstractModel):
4523
+ r"""Video deduplication task input type.
4524
+
4525
+ """
4526
+
4527
+ def __init__(self):
4528
+ r"""
4529
+ :param _Definition: Intelligent deduplication template ID.
4530
+ :type Definition: int
4531
+ """
4532
+ self._Definition = None
4533
+
4534
+ @property
4535
+ def Definition(self):
4536
+ r"""Intelligent deduplication template ID.
4537
+ :rtype: int
4538
+ """
4539
+ return self._Definition
4540
+
4541
+ @Definition.setter
4542
+ def Definition(self, Definition):
4543
+ self._Definition = Definition
4544
+
4545
+
4546
+ def _deserialize(self, params):
4547
+ self._Definition = params.get("Definition")
4548
+ memeber_set = set(params.keys())
4549
+ for name, value in vars(self).items():
4550
+ property_name = name[1:]
4551
+ if property_name in memeber_set:
4552
+ memeber_set.remove(property_name)
4553
+ if len(memeber_set) > 0:
4554
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4555
+
4556
+
4557
+
4558
+ class AiAnalysisTaskVideoRemakeOutput(AbstractModel):
4559
+ r"""Video deduplication result information.
4560
+
4561
+ """
4562
+
4563
+ def __init__(self):
4564
+ r"""
4565
+ :param _Path: Specifies the file path for intelligent video deduplication.
4566
+ :type Path: str
4567
+ :param _OutputStorage: Specifies the storage location for intelligent video deduplication.
4568
+ :type OutputStorage: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
4569
+ """
4570
+ self._Path = None
4571
+ self._OutputStorage = None
4572
+
4573
+ @property
4574
+ def Path(self):
4575
+ r"""Specifies the file path for intelligent video deduplication.
4576
+ :rtype: str
4577
+ """
4578
+ return self._Path
4579
+
4580
+ @Path.setter
4581
+ def Path(self, Path):
4582
+ self._Path = Path
4583
+
4584
+ @property
4585
+ def OutputStorage(self):
4586
+ r"""Specifies the storage location for intelligent video deduplication.
4587
+ :rtype: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
4588
+ """
4589
+ return self._OutputStorage
4590
+
4591
+ @OutputStorage.setter
4592
+ def OutputStorage(self, OutputStorage):
4593
+ self._OutputStorage = OutputStorage
4594
+
4595
+
4596
+ def _deserialize(self, params):
4597
+ self._Path = params.get("Path")
4598
+ if params.get("OutputStorage") is not None:
4599
+ self._OutputStorage = TaskOutputStorage()
4600
+ self._OutputStorage._deserialize(params.get("OutputStorage"))
4601
+ memeber_set = set(params.keys())
4602
+ for name, value in vars(self).items():
4603
+ property_name = name[1:]
4604
+ if property_name in memeber_set:
4605
+ memeber_set.remove(property_name)
4606
+ if len(memeber_set) > 0:
4607
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4608
+
4609
+
4610
+
4611
+ class AiAnalysisTaskVideoRemakeResult(AbstractModel):
4612
+ r"""Video deduplication result data structure.
4613
+
4614
+ """
4615
+
4616
+ def __init__(self):
4617
+ r"""
4618
+ :param _Status: Specifies the task status. valid values: `PROCESSING`, `SUCCESS`, and `FAIL`.
4619
+ :type Status: str
4620
+ :param _ErrCode: Error code. 0: success. other values: failure.
4621
+ :type ErrCode: int
4622
+ :param _Message: Error message.
4623
+ :type Message: str
4624
+ :param _Input: Deduplication task input.
4625
+ :type Input: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskVideoRemakeInput`
4626
+ :param _Output: Task output.
4627
+ Note: This field may return null, indicating that no valid value can be obtained.
4628
+ :type Output: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskVideoRemakeOutput`
4629
+ """
4630
+ self._Status = None
4631
+ self._ErrCode = None
4632
+ self._Message = None
4633
+ self._Input = None
4634
+ self._Output = None
4635
+
4636
+ @property
4637
+ def Status(self):
4638
+ r"""Specifies the task status. valid values: `PROCESSING`, `SUCCESS`, and `FAIL`.
4639
+ :rtype: str
4640
+ """
4641
+ return self._Status
4642
+
4643
+ @Status.setter
4644
+ def Status(self, Status):
4645
+ self._Status = Status
4646
+
4647
+ @property
4648
+ def ErrCode(self):
4649
+ r"""Error code. 0: success. other values: failure.
4650
+ :rtype: int
4651
+ """
4652
+ return self._ErrCode
4653
+
4654
+ @ErrCode.setter
4655
+ def ErrCode(self, ErrCode):
4656
+ self._ErrCode = ErrCode
4657
+
4658
+ @property
4659
+ def Message(self):
4660
+ r"""Error message.
4661
+ :rtype: str
4662
+ """
4663
+ return self._Message
4664
+
4665
+ @Message.setter
4666
+ def Message(self, Message):
4667
+ self._Message = Message
4668
+
4669
+ @property
4670
+ def Input(self):
4671
+ r"""Deduplication task input.
4672
+ :rtype: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskVideoRemakeInput`
4673
+ """
4674
+ return self._Input
4675
+
4676
+ @Input.setter
4677
+ def Input(self, Input):
4678
+ self._Input = Input
4679
+
4680
+ @property
4681
+ def Output(self):
4682
+ r"""Task output.
4683
+ Note: This field may return null, indicating that no valid value can be obtained.
4684
+ :rtype: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskVideoRemakeOutput`
4685
+ """
4686
+ return self._Output
4687
+
4688
+ @Output.setter
4689
+ def Output(self, Output):
4690
+ self._Output = Output
4691
+
4692
+
4693
+ def _deserialize(self, params):
4694
+ self._Status = params.get("Status")
4695
+ self._ErrCode = params.get("ErrCode")
4696
+ self._Message = params.get("Message")
4697
+ if params.get("Input") is not None:
4698
+ self._Input = AiAnalysisTaskVideoRemakeInput()
4699
+ self._Input._deserialize(params.get("Input"))
4700
+ if params.get("Output") is not None:
4701
+ self._Output = AiAnalysisTaskVideoRemakeOutput()
4702
+ self._Output._deserialize(params.get("Output"))
4703
+ memeber_set = set(params.keys())
4704
+ for name, value in vars(self).items():
4705
+ property_name = name[1:]
4706
+ if property_name in memeber_set:
4707
+ memeber_set.remove(property_name)
4708
+ if len(memeber_set) > 0:
4709
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4710
+
4711
+
4712
+
4467
4713
  class AiContentReviewResult(AbstractModel):
4468
4714
  r"""Content audit result
4469
4715
 
@@ -17092,7 +17338,13 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
17092
17338
  :type Name: str
17093
17339
  :param _Comment: Template description, with a length limit of 256 characters.
17094
17340
  :type Comment: str
17095
- :param _RecordType: Recording type. Valid values: video: audio and video recording; audio: audio recording; auto: automatic detection. If it is left blank, the default value video is used.
17341
+ :param _RecordType: Recording type. Valid values:
17342
+
17343
+ - video: audio and video recording;
17344
+ - audio: audio recording;
17345
+ - auto: automatic detection;
17346
+
17347
+ If it is left blank, "video" will be used as the default value.
17096
17348
  :type RecordType: str
17097
17349
  """
17098
17350
  self._HLSConfigure = None
@@ -17147,7 +17399,13 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
17147
17399
 
17148
17400
  @property
17149
17401
  def RecordType(self):
17150
- r"""Recording type. Valid values: video: audio and video recording; audio: audio recording; auto: automatic detection. If it is left blank, the default value video is used.
17402
+ r"""Recording type. Valid values:
17403
+
17404
+ - video: audio and video recording;
17405
+ - audio: audio recording;
17406
+ - auto: automatic detection;
17407
+
17408
+ If it is left blank, "video" will be used as the default value.
17151
17409
  :rtype: str
17152
17410
  """
17153
17411
  return self._RecordType
@@ -24463,8 +24721,13 @@ class DescribeTasksRequest(AbstractModel):
24463
24721
 
24464
24722
  def __init__(self):
24465
24723
  r"""
24466
- :param _Status: Filter: Task status. Valid values: WAITING (waiting), PROCESSING (processing), FINISH (completed).
24724
+ :param _Status: Filters task status. available values:.
24725
+ -WAITING.
24726
+ -PROCESSING (processing).
24727
+ -FINISH (completed).
24467
24728
  :type Status: str
24729
+ :param _SubTaskHasFailed: Indicates whether there is a subtask failure when the task is complete.
24730
+ :type SubTaskHasFailed: bool
24468
24731
  :param _Limit: Number of returned entries. Default value: 10. Maximum value: 100.
24469
24732
  :type Limit: int
24470
24733
  :param _ScrollToken: Scrolling identifier which is used for pulling in batches. If a single request cannot pull all the data entries, the API will return `ScrollToken`, and if the next request carries it, the next pull will start from the next entry.
@@ -24475,6 +24738,7 @@ class DescribeTasksRequest(AbstractModel):
24475
24738
  :type EndTime: str
24476
24739
  """
24477
24740
  self._Status = None
24741
+ self._SubTaskHasFailed = None
24478
24742
  self._Limit = None
24479
24743
  self._ScrollToken = None
24480
24744
  self._StartTime = None
@@ -24482,7 +24746,10 @@ class DescribeTasksRequest(AbstractModel):
24482
24746
 
24483
24747
  @property
24484
24748
  def Status(self):
24485
- r"""Filter: Task status. Valid values: WAITING (waiting), PROCESSING (processing), FINISH (completed).
24749
+ r"""Filters task status. available values:.
24750
+ -WAITING.
24751
+ -PROCESSING (processing).
24752
+ -FINISH (completed).
24486
24753
  :rtype: str
24487
24754
  """
24488
24755
  return self._Status
@@ -24491,6 +24758,17 @@ class DescribeTasksRequest(AbstractModel):
24491
24758
  def Status(self, Status):
24492
24759
  self._Status = Status
24493
24760
 
24761
+ @property
24762
+ def SubTaskHasFailed(self):
24763
+ r"""Indicates whether there is a subtask failure when the task is complete.
24764
+ :rtype: bool
24765
+ """
24766
+ return self._SubTaskHasFailed
24767
+
24768
+ @SubTaskHasFailed.setter
24769
+ def SubTaskHasFailed(self, SubTaskHasFailed):
24770
+ self._SubTaskHasFailed = SubTaskHasFailed
24771
+
24494
24772
  @property
24495
24773
  def Limit(self):
24496
24774
  r"""Number of returned entries. Default value: 10. Maximum value: 100.
@@ -24538,6 +24816,7 @@ class DescribeTasksRequest(AbstractModel):
24538
24816
 
24539
24817
  def _deserialize(self, params):
24540
24818
  self._Status = params.get("Status")
24819
+ self._SubTaskHasFailed = params.get("SubTaskHasFailed")
24541
24820
  self._Limit = params.get("Limit")
24542
24821
  self._ScrollToken = params.get("ScrollToken")
24543
24822
  self._StartTime = params.get("StartTime")
@@ -41076,6 +41355,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
41076
41355
  :type Timestamp: int
41077
41356
  :param _Sign: Event notification security signature. Sign = MD5 (Timestamp + NotifyKey). Note: Media Processing Service concatenates Timestamp and NotifyKey from TaskNotifyConfig as a string and calculates the Sign value through MD5. This value is included in the notification message. Your backend server can verify whether the Sign is correct using the same algorithm, to confirm whether the message is indeed from the Media Processing Service backend.
41078
41357
  :type Sign: str
41358
+ :param _BatchTaskEvent: Batch processing task information. this field has a value only when EventType is BatchTask.
41359
+ Note: This field may return null, indicating that no valid value can be obtained.
41360
+ :type BatchTaskEvent: :class:`tencentcloud.mps.v20190612.models.BatchSubTaskResult`
41079
41361
  :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
41080
41362
  :type RequestId: str
41081
41363
  """
@@ -41087,6 +41369,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
41087
41369
  self._ScheduleTaskEvent = None
41088
41370
  self._Timestamp = None
41089
41371
  self._Sign = None
41372
+ self._BatchTaskEvent = None
41090
41373
  self._RequestId = None
41091
41374
 
41092
41375
  @property
@@ -41186,6 +41469,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
41186
41469
  def Sign(self, Sign):
41187
41470
  self._Sign = Sign
41188
41471
 
41472
+ @property
41473
+ def BatchTaskEvent(self):
41474
+ r"""Batch processing task information. this field has a value only when EventType is BatchTask.
41475
+ Note: This field may return null, indicating that no valid value can be obtained.
41476
+ :rtype: :class:`tencentcloud.mps.v20190612.models.BatchSubTaskResult`
41477
+ """
41478
+ return self._BatchTaskEvent
41479
+
41480
+ @BatchTaskEvent.setter
41481
+ def BatchTaskEvent(self, BatchTaskEvent):
41482
+ self._BatchTaskEvent = BatchTaskEvent
41483
+
41189
41484
  @property
41190
41485
  def RequestId(self):
41191
41486
  r"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
@@ -41213,6 +41508,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
41213
41508
  self._ScheduleTaskEvent._deserialize(params.get("ScheduleTaskEvent"))
41214
41509
  self._Timestamp = params.get("Timestamp")
41215
41510
  self._Sign = params.get("Sign")
41511
+ if params.get("BatchTaskEvent") is not None:
41512
+ self._BatchTaskEvent = BatchSubTaskResult()
41513
+ self._BatchTaskEvent._deserialize(params.get("BatchTaskEvent"))
41216
41514
  self._RequestId = params.get("RequestId")
41217
41515
 
41218
41516
 
@@ -44130,23 +44428,25 @@ class QualityControlResult(AbstractModel):
44130
44428
 
44131
44429
  def __init__(self):
44132
44430
  r"""
44133
- :param _Type: The issue type. Valid values:
44134
- `Jitter`
44135
- `Blur`
44136
- `LowLighting`
44137
- `HighLighting` (overexposure)
44138
- `CrashScreen` (video corruption)
44139
- `BlackWhiteEdge`
44140
- `SolidColorScreen` (blank screen)
44141
- `Noise`
44142
- `Mosaic` (pixelation)
44143
- `QRCode`
44144
- `AppletCode` (Weixin Mini Program code)
44145
- `BarCode`
44146
- `LowVoice`
44147
- `HighVoice`
44148
- `NoVoice`
44149
- `LowEvaluation` (low no-reference video quality score)
44431
+ :param _Type: Exception type. valid values:.
44432
+ Jitter: jitter.
44433
+ Blur: specifies the blur effect.
44434
+ LowLighting: specifies low light.
44435
+ HighLighting: overexposure.
44436
+ CrashScreen: specifies screen glitch.
44437
+ BlackWhiteEdge: specifies the black and white edges.
44438
+ SolidColorScreen: specifies the solid color screen.
44439
+ Noise: specifies the noise.
44440
+ Mosaic: mosaic.
44441
+ QRCode: specifies the qr code.
44442
+ AppletCode: specifies the mini program code.
44443
+ BarCode: specifies the barcode.
44444
+ LowVoice: specifies the bass.
44445
+ HighVoice: specifies high voice detection.
44446
+ NoVoice: specifies mute.
44447
+ LowEvaluation: specifies the video no-reference score (MOS) is below the threshold.
44448
+ AudioEvaluation: specifies the audio no-reference scoring (MOS) is below the threshold.
44449
+ AudioNoise: specifies the audio noise.
44150
44450
  :type Type: str
44151
44451
  :param _QualityControlItems: The information of a checked segment in quality control.
44152
44452
  :type QualityControlItems: list of QualityControlItem
@@ -44156,23 +44456,25 @@ class QualityControlResult(AbstractModel):
44156
44456
 
44157
44457
  @property
44158
44458
  def Type(self):
44159
- r"""The issue type. Valid values:
44160
- `Jitter`
44161
- `Blur`
44162
- `LowLighting`
44163
- `HighLighting` (overexposure)
44164
- `CrashScreen` (video corruption)
44165
- `BlackWhiteEdge`
44166
- `SolidColorScreen` (blank screen)
44167
- `Noise`
44168
- `Mosaic` (pixelation)
44169
- `QRCode`
44170
- `AppletCode` (Weixin Mini Program code)
44171
- `BarCode`
44172
- `LowVoice`
44173
- `HighVoice`
44174
- `NoVoice`
44175
- `LowEvaluation` (low no-reference video quality score)
44459
+ r"""Exception type. valid values:.
44460
+ Jitter: jitter.
44461
+ Blur: specifies the blur effect.
44462
+ LowLighting: specifies low light.
44463
+ HighLighting: overexposure.
44464
+ CrashScreen: specifies screen glitch.
44465
+ BlackWhiteEdge: specifies the black and white edges.
44466
+ SolidColorScreen: specifies the solid color screen.
44467
+ Noise: specifies the noise.
44468
+ Mosaic: mosaic.
44469
+ QRCode: specifies the qr code.
44470
+ AppletCode: specifies the mini program code.
44471
+ BarCode: specifies the barcode.
44472
+ LowVoice: specifies the bass.
44473
+ HighVoice: specifies high voice detection.
44474
+ NoVoice: specifies mute.
44475
+ LowEvaluation: specifies the video no-reference score (MOS) is below the threshold.
44476
+ AudioEvaluation: specifies the audio no-reference scoring (MOS) is below the threshold.
44477
+ AudioNoise: specifies the audio noise.
44176
44478
  :rtype: str
44177
44479
  """
44178
44480
  return self._Type
@@ -47802,11 +48104,11 @@ class SimpleAesDrm(AbstractModel):
47802
48104
  :param _Uri: The URI of decryption key.
47803
48105
  Note: This field may return null, indicating that no valid values can be obtained.
47804
48106
  :type Uri: str
47805
- :param _Key: The encryption key (a 32-byte string).
47806
- Note: This field may return null, indicating that no valid values can be obtained.
48107
+ :param _Key: Encryption key (32-byte hexadecimal string).
48108
+ Note: This field may return null, indicating that no valid value can be obtained.
47807
48109
  :type Key: str
47808
- :param _Vector: The initialization vector for encryption (a 32-byte string).
47809
- Note: This field may return null, indicating that no valid values can be obtained.
48110
+ :param _Vector: Initialization vector for encryption (32-byte hexadecimal string).
48111
+ Note: This field may return null, indicating that no valid value can be obtained.
47810
48112
  :type Vector: str
47811
48113
  """
47812
48114
  self._Uri = None
@@ -47827,8 +48129,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
47827
48129
 
47828
48130
  @property
47829
48131
  def Key(self):
47830
- r"""The encryption key (a 32-byte string).
47831
- Note: This field may return null, indicating that no valid values can be obtained.
48132
+ r"""Encryption key (32-byte hexadecimal string).
48133
+ Note: This field may return null, indicating that no valid value can be obtained.
47832
48134
  :rtype: str
47833
48135
  """
47834
48136
  return self._Key
@@ -47839,8 +48141,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
47839
48141
 
47840
48142
  @property
47841
48143
  def Vector(self):
47842
- r"""The initialization vector for encryption (a 32-byte string).
47843
- Note: This field may return null, indicating that no valid values can be obtained.
48144
+ r"""Initialization vector for encryption (32-byte hexadecimal string).
48145
+ Note: This field may return null, indicating that no valid value can be obtained.
47844
48146
  :rtype: str
47845
48147
  """
47846
48148
  return self._Vector
@@ -48668,12 +48970,13 @@ Advanced edition: better effectiveness, suitable for mini-drama and reality styl
48668
48970
  - basic
48669
48971
  - advanced
48670
48972
  :type WatermarkModel: str
48671
- :param _AutoAreas: Specifies automatic removal of a custom region.
48672
- Specifies the use of an AI model to automatically detect and erase existing targets in the specified region.
48673
- Note that this parameter will not take effect when the removal method is custom.
48973
+ :param _AutoAreas: Automatically erase the custom region.
48974
+ Automatically detects and erases the targeted removal in the specified region using the AI model.
48975
+ Note that this parameter will not take effect when the removal method is custom. to modify the template, input [] for the clean-up region. if not provided, the template region information remains unchanged.
48674
48976
  :type AutoAreas: list of EraseArea
48675
- :param _CustomAreas: Specifies erasure of a custom region.
48676
- Detects and directly performs removal within a specified time range for the selected region.
48977
+ :param _CustomAreas: Specifies the removal of a custom region.
48978
+ Specifies to directly perform removal without detection and recognition within a selected time range for the specified region.
48979
+ Note: when modifying the template, pass [] to clear the region. the template region information remains unchanged if not passed.
48677
48980
  :type CustomAreas: list of EraseTimeArea
48678
48981
  """
48679
48982
  self._WatermarkEraseMethod = None
@@ -48717,9 +49020,9 @@ Advanced edition: better effectiveness, suitable for mini-drama and reality styl
48717
49020
 
48718
49021
  @property
48719
49022
  def AutoAreas(self):
48720
- r"""Specifies automatic removal of a custom region.
48721
- Specifies the use of an AI model to automatically detect and erase existing targets in the specified region.
48722
- Note that this parameter will not take effect when the removal method is custom.
49023
+ r"""Automatically erase the custom region.
49024
+ Automatically detects and erases the targeted removal in the specified region using the AI model.
49025
+ Note that this parameter will not take effect when the removal method is custom. to modify the template, input [] for the clean-up region. if not provided, the template region information remains unchanged.
48723
49026
  :rtype: list of EraseArea
48724
49027
  """
48725
49028
  return self._AutoAreas
@@ -48730,8 +49033,9 @@ Note that this parameter will not take effect when the removal method is custom.
48730
49033
 
48731
49034
  @property
48732
49035
  def CustomAreas(self):
48733
- r"""Specifies erasure of a custom region.
48734
- Detects and directly performs removal within a specified time range for the selected region.
49036
+ r"""Specifies the removal of a custom region.
49037
+ Specifies to directly perform removal without detection and recognition within a selected time range for the specified region.
49038
+ Note: when modifying the template, pass [] to clear the region. the template region information remains unchanged if not passed.
48735
49039
  :rtype: list of EraseTimeArea
48736
49040
  """
48737
49041
  return self._CustomAreas
@@ -50547,7 +50851,7 @@ It supports 1 to 128 characters consisting of digits, letters, underscores (_),
50547
50851
 
50548
50852
  Note: different DRM manufacturers have different limitations on the number of substreams. for example, PallyCon limits the number of substreams to no more than 5, and DRMtoday only supports encryption of up to 9 substreams.
50549
50853
  :type KeyServerUrl: str
50550
- :param _Vector: Encryption initialization vector (32-byte string). the field content is user-customized.
50854
+ :param _Vector: Initialization vector for encryption (32-byte hexadecimal string). the field content is user-customized.
50551
50855
  :type Vector: str
50552
50856
  :param _EncryptionMethod: Encryption method. cbcs: default method of FairPlay; cenc: default method of PlayReady and Widevine.
50553
50857
 
@@ -50593,7 +50897,7 @@ Note: different DRM manufacturers have different limitations on the number of su
50593
50897
 
50594
50898
  @property
50595
50899
  def Vector(self):
50596
- r"""Encryption initialization vector (32-byte string). the field content is user-customized.
50900
+ r"""Initialization vector for encryption (32-byte hexadecimal string). the field content is user-customized.
50597
50901
  :rtype: str
50598
50902
  """
50599
50903
  return self._Vector