tencentcloud-sdk-python-live 3.0.1317__tar.gz → 3.0.1319__tar.gz

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 (16) hide show
  1. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/setup.py +1 -1
  3. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud/live/v20180801/models.py +90 -0
  5. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-live-3.0.1319/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-live-3.0.1317/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/README.rst +0 -0
  9. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud/live/__init__.py +0 -0
  11. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud/live/v20180801/__init__.py +0 -0
  12. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud/live/v20180801/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud/live/v20180801/live_client.py +0 -0
  14. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-live-3.0.1317 → tencentcloud-sdk-python-live-3.0.1319}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1317
3
+ Version: 3.0.1319
4
4
  Summary: Tencent Cloud Live SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-live',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1317"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1319"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Live SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1317'
17
+ __version__ = '3.0.1319'
@@ -1794,6 +1794,10 @@ class CallBackTemplateInfo(AbstractModel):
1794
1794
  :param _AudioAuditNotifyUrl: 音频审核回调 URL。
1795
1795
  注意:此字段可能返回 null,表示取不到有效值。
1796
1796
  :type AudioAuditNotifyUrl: str
1797
+ :param _RecordExceptionNotifyUrl: 录制异常回调 URL。
1798
+ :type RecordExceptionNotifyUrl: str
1799
+ :param _RecordExceptionLevels: 录制异常回调级别,可选择:error: 错误。alarm: 告警。
1800
+ :type RecordExceptionLevels: list of str
1797
1801
  """
1798
1802
  self._TemplateId = None
1799
1803
  self._TemplateName = None
@@ -1807,6 +1811,8 @@ class CallBackTemplateInfo(AbstractModel):
1807
1811
  self._CallbackKey = None
1808
1812
  self._PushExceptionNotifyUrl = None
1809
1813
  self._AudioAuditNotifyUrl = None
1814
+ self._RecordExceptionNotifyUrl = None
1815
+ self._RecordExceptionLevels = None
1810
1816
 
1811
1817
  @property
1812
1818
  def TemplateId(self):
@@ -1942,6 +1948,28 @@ class CallBackTemplateInfo(AbstractModel):
1942
1948
  def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
1943
1949
  self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
1944
1950
 
1951
+ @property
1952
+ def RecordExceptionNotifyUrl(self):
1953
+ """录制异常回调 URL。
1954
+ :rtype: str
1955
+ """
1956
+ return self._RecordExceptionNotifyUrl
1957
+
1958
+ @RecordExceptionNotifyUrl.setter
1959
+ def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
1960
+ self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
1961
+
1962
+ @property
1963
+ def RecordExceptionLevels(self):
1964
+ """录制异常回调级别,可选择:error: 错误。alarm: 告警。
1965
+ :rtype: list of str
1966
+ """
1967
+ return self._RecordExceptionLevels
1968
+
1969
+ @RecordExceptionLevels.setter
1970
+ def RecordExceptionLevels(self, RecordExceptionLevels):
1971
+ self._RecordExceptionLevels = RecordExceptionLevels
1972
+
1945
1973
 
1946
1974
  def _deserialize(self, params):
1947
1975
  self._TemplateId = params.get("TemplateId")
@@ -1956,6 +1984,8 @@ class CallBackTemplateInfo(AbstractModel):
1956
1984
  self._CallbackKey = params.get("CallbackKey")
1957
1985
  self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
1958
1986
  self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
1987
+ self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
1988
+ self._RecordExceptionLevels = params.get("RecordExceptionLevels")
1959
1989
  memeber_set = set(params.keys())
1960
1990
  for name, value in vars(self).items():
1961
1991
  property_name = name[1:]
@@ -6167,6 +6197,10 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
6167
6197
  :type PushExceptionNotifyUrl: str
6168
6198
  :param _AudioAuditNotifyUrl: 音频审核回调 URL。
6169
6199
  :type AudioAuditNotifyUrl: str
6200
+ :param _RecordExceptionNotifyUrl: 录制异常回调 URL。
6201
+ :type RecordExceptionNotifyUrl: str
6202
+ :param _RecordExceptionLevels: 录制异常回调级别,可选择:error、warning、info。
6203
+ :type RecordExceptionLevels: list of str
6170
6204
  """
6171
6205
  self._TemplateName = None
6172
6206
  self._Description = None
@@ -6180,6 +6214,8 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
6180
6214
  self._StreamMixNotifyUrl = None
6181
6215
  self._PushExceptionNotifyUrl = None
6182
6216
  self._AudioAuditNotifyUrl = None
6217
+ self._RecordExceptionNotifyUrl = None
6218
+ self._RecordExceptionLevels = None
6183
6219
 
6184
6220
  @property
6185
6221
  def TemplateName(self):
@@ -6324,6 +6360,28 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
6324
6360
  def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
6325
6361
  self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
6326
6362
 
6363
+ @property
6364
+ def RecordExceptionNotifyUrl(self):
6365
+ """录制异常回调 URL。
6366
+ :rtype: str
6367
+ """
6368
+ return self._RecordExceptionNotifyUrl
6369
+
6370
+ @RecordExceptionNotifyUrl.setter
6371
+ def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
6372
+ self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
6373
+
6374
+ @property
6375
+ def RecordExceptionLevels(self):
6376
+ """录制异常回调级别,可选择:error、warning、info。
6377
+ :rtype: list of str
6378
+ """
6379
+ return self._RecordExceptionLevels
6380
+
6381
+ @RecordExceptionLevels.setter
6382
+ def RecordExceptionLevels(self, RecordExceptionLevels):
6383
+ self._RecordExceptionLevels = RecordExceptionLevels
6384
+
6327
6385
 
6328
6386
  def _deserialize(self, params):
6329
6387
  self._TemplateName = params.get("TemplateName")
@@ -6338,6 +6396,8 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
6338
6396
  self._StreamMixNotifyUrl = params.get("StreamMixNotifyUrl")
6339
6397
  self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
6340
6398
  self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
6399
+ self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
6400
+ self._RecordExceptionLevels = params.get("RecordExceptionLevels")
6341
6401
  memeber_set = set(params.keys())
6342
6402
  for name, value in vars(self).items():
6343
6403
  property_name = name[1:]
@@ -28757,6 +28817,10 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
28757
28817
  :type PushExceptionNotifyUrl: str
28758
28818
  :param _AudioAuditNotifyUrl: 音频审核回调 URL。
28759
28819
  :type AudioAuditNotifyUrl: str
28820
+ :param _RecordExceptionNotifyUrl: 录制异常回调 URL。
28821
+ :type RecordExceptionNotifyUrl: str
28822
+ :param _RecordExceptionLevels: 录制异常回调级别,可选择:error、warning、info。
28823
+ :type RecordExceptionLevels: list of str
28760
28824
  """
28761
28825
  self._TemplateId = None
28762
28826
  self._TemplateName = None
@@ -28770,6 +28834,8 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
28770
28834
  self._CallbackKey = None
28771
28835
  self._PushExceptionNotifyUrl = None
28772
28836
  self._AudioAuditNotifyUrl = None
28837
+ self._RecordExceptionNotifyUrl = None
28838
+ self._RecordExceptionLevels = None
28773
28839
 
28774
28840
  @property
28775
28841
  def TemplateId(self):
@@ -28904,6 +28970,28 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
28904
28970
  def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
28905
28971
  self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
28906
28972
 
28973
+ @property
28974
+ def RecordExceptionNotifyUrl(self):
28975
+ """录制异常回调 URL。
28976
+ :rtype: str
28977
+ """
28978
+ return self._RecordExceptionNotifyUrl
28979
+
28980
+ @RecordExceptionNotifyUrl.setter
28981
+ def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
28982
+ self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
28983
+
28984
+ @property
28985
+ def RecordExceptionLevels(self):
28986
+ """录制异常回调级别,可选择:error、warning、info。
28987
+ :rtype: list of str
28988
+ """
28989
+ return self._RecordExceptionLevels
28990
+
28991
+ @RecordExceptionLevels.setter
28992
+ def RecordExceptionLevels(self, RecordExceptionLevels):
28993
+ self._RecordExceptionLevels = RecordExceptionLevels
28994
+
28907
28995
 
28908
28996
  def _deserialize(self, params):
28909
28997
  self._TemplateId = params.get("TemplateId")
@@ -28918,6 +29006,8 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
28918
29006
  self._CallbackKey = params.get("CallbackKey")
28919
29007
  self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
28920
29008
  self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
29009
+ self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
29010
+ self._RecordExceptionLevels = params.get("RecordExceptionLevels")
28921
29011
  memeber_set = set(params.keys())
28922
29012
  for name, value in vars(self).items():
28923
29013
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1317
3
+ Version: 3.0.1319
4
4
  Summary: Tencent Cloud Live SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1319
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1317