tencentcloud-sdk-python 3.0.1269__py2.py3-none-any.whl → 3.0.1270__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 (32) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/af/v20200226/af_client.py +3 -1
  3. tencentcloud/billing/v20180709/models.py +2 -2
  4. tencentcloud/ckafka/v20190819/models.py +2 -2
  5. tencentcloud/cwp/v20180228/models.py +16 -0
  6. tencentcloud/ess/v20201111/models.py +27 -0
  7. tencentcloud/essbasic/v20210526/models.py +27 -0
  8. tencentcloud/faceid/v20180301/models.py +4 -0
  9. tencentcloud/iai/v20180301/models.py +12 -12
  10. tencentcloud/iap/__init__.py +0 -0
  11. tencentcloud/iap/v20240713/__init__.py +0 -0
  12. tencentcloud/iap/v20240713/errorcodes.py +48 -0
  13. tencentcloud/iap/v20240713/iap_client.py +164 -0
  14. tencentcloud/iap/v20240713/models.py +762 -0
  15. tencentcloud/lcic/v20220817/models.py +12 -6
  16. tencentcloud/live/v20180801/errorcodes.py +15 -0
  17. tencentcloud/live/v20180801/live_client.py +185 -0
  18. tencentcloud/live/v20180801/models.py +3372 -1460
  19. tencentcloud/mps/v20190612/models.py +32 -0
  20. tencentcloud/redis/v20180412/models.py +314 -216
  21. tencentcloud/redis/v20180412/redis_client.py +47 -47
  22. tencentcloud/tat/v20201028/models.py +10 -10
  23. tencentcloud/tke/v20220501/tke_client.py +2 -2
  24. tencentcloud/tse/v20201207/models.py +311 -6
  25. tencentcloud/vpc/v20170312/errorcodes.py +3 -0
  26. tencentcloud/vpc/v20170312/models.py +769 -32
  27. tencentcloud/vpc/v20170312/vpc_client.py +93 -1
  28. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1270.dist-info}/METADATA +1 -1
  29. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1270.dist-info}/RECORD +32 -27
  30. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1270.dist-info}/LICENSE +0 -0
  31. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1270.dist-info}/WHEEL +0 -0
  32. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1270.dist-info}/top_level.txt +0 -0
@@ -49868,12 +49868,17 @@ class SegmentRecognitionItem(AbstractModel):
49868
49868
  :param _SegmentUrl: 拆条片段URL。
49869
49869
  注意:此字段可能返回 null,表示取不到有效值。
49870
49870
  :type SegmentUrl: str
49871
+ :param _CovImgUrl: 拆条片段封面。
49872
+ 注意:此字段可能返回 null,表示取不到有效值。
49873
+ :type CovImgUrl: str
49871
49874
  :param _Title: 分段标题。
49872
49875
  注意:此字段可能返回 null,表示取不到有效值。
49873
49876
  :type Title: str
49874
49877
  :param _Summary: 分段概要。
49875
49878
  注意:此字段可能返回 null,表示取不到有效值。
49876
49879
  :type Summary: str
49880
+ :param _Keywords: 分段关键词。
49881
+ :type Keywords: list of str
49877
49882
  :param _BeginTime: 直播切片对应直播起始时间点,采用 ISO 日期格式。
49878
49883
  注意:此字段可能返回 null,表示取不到有效值。
49879
49884
  :type BeginTime: str
@@ -49885,8 +49890,10 @@ class SegmentRecognitionItem(AbstractModel):
49885
49890
  self._StartTimeOffset = None
49886
49891
  self._EndTimeOffset = None
49887
49892
  self._SegmentUrl = None
49893
+ self._CovImgUrl = None
49888
49894
  self._Title = None
49889
49895
  self._Summary = None
49896
+ self._Keywords = None
49890
49897
  self._BeginTime = None
49891
49898
  self._EndTime = None
49892
49899
 
@@ -49935,6 +49942,18 @@ class SegmentRecognitionItem(AbstractModel):
49935
49942
  def SegmentUrl(self, SegmentUrl):
49936
49943
  self._SegmentUrl = SegmentUrl
49937
49944
 
49945
+ @property
49946
+ def CovImgUrl(self):
49947
+ """拆条片段封面。
49948
+ 注意:此字段可能返回 null,表示取不到有效值。
49949
+ :rtype: str
49950
+ """
49951
+ return self._CovImgUrl
49952
+
49953
+ @CovImgUrl.setter
49954
+ def CovImgUrl(self, CovImgUrl):
49955
+ self._CovImgUrl = CovImgUrl
49956
+
49938
49957
  @property
49939
49958
  def Title(self):
49940
49959
  """分段标题。
@@ -49959,6 +49978,17 @@ class SegmentRecognitionItem(AbstractModel):
49959
49978
  def Summary(self, Summary):
49960
49979
  self._Summary = Summary
49961
49980
 
49981
+ @property
49982
+ def Keywords(self):
49983
+ """分段关键词。
49984
+ :rtype: list of str
49985
+ """
49986
+ return self._Keywords
49987
+
49988
+ @Keywords.setter
49989
+ def Keywords(self, Keywords):
49990
+ self._Keywords = Keywords
49991
+
49962
49992
  @property
49963
49993
  def BeginTime(self):
49964
49994
  """直播切片对应直播起始时间点,采用 ISO 日期格式。
@@ -49989,8 +50019,10 @@ class SegmentRecognitionItem(AbstractModel):
49989
50019
  self._StartTimeOffset = params.get("StartTimeOffset")
49990
50020
  self._EndTimeOffset = params.get("EndTimeOffset")
49991
50021
  self._SegmentUrl = params.get("SegmentUrl")
50022
+ self._CovImgUrl = params.get("CovImgUrl")
49992
50023
  self._Title = params.get("Title")
49993
50024
  self._Summary = params.get("Summary")
50025
+ self._Keywords = params.get("Keywords")
49994
50026
  self._BeginTime = params.get("BeginTime")
49995
50027
  self._EndTime = params.get("EndTime")
49996
50028
  memeber_set = set(params.keys())