tencentcloud-sdk-python-live 3.0.1130__tar.gz → 3.0.1132__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-live might be problematic. Click here for more details.
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud/live/v20180801/models.py +37 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1132/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1130/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1130 → tencentcloud-sdk-python-live-3.0.1132}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1132"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -4176,6 +4176,8 @@ class CreateLiveStreamMonitorRequest(AbstractModel):
|
|
|
4176
4176
|
:type AllowMonitorReport: int
|
|
4177
4177
|
:param _AiFormatDiagnose: 是否开启格式诊断。
|
|
4178
4178
|
:type AiFormatDiagnose: int
|
|
4179
|
+
:param _AiQualityControl: 是否开启内容质检。
|
|
4180
|
+
:type AiQualityControl: int
|
|
4179
4181
|
"""
|
|
4180
4182
|
self._OutputInfo = None
|
|
4181
4183
|
self._InputList = None
|
|
@@ -4189,6 +4191,7 @@ class CreateLiveStreamMonitorRequest(AbstractModel):
|
|
|
4189
4191
|
self._CheckStreamLowFrameRate = None
|
|
4190
4192
|
self._AllowMonitorReport = None
|
|
4191
4193
|
self._AiFormatDiagnose = None
|
|
4194
|
+
self._AiQualityControl = None
|
|
4192
4195
|
|
|
4193
4196
|
@property
|
|
4194
4197
|
def OutputInfo(self):
|
|
@@ -4286,6 +4289,14 @@ class CreateLiveStreamMonitorRequest(AbstractModel):
|
|
|
4286
4289
|
def AiFormatDiagnose(self, AiFormatDiagnose):
|
|
4287
4290
|
self._AiFormatDiagnose = AiFormatDiagnose
|
|
4288
4291
|
|
|
4292
|
+
@property
|
|
4293
|
+
def AiQualityControl(self):
|
|
4294
|
+
return self._AiQualityControl
|
|
4295
|
+
|
|
4296
|
+
@AiQualityControl.setter
|
|
4297
|
+
def AiQualityControl(self, AiQualityControl):
|
|
4298
|
+
self._AiQualityControl = AiQualityControl
|
|
4299
|
+
|
|
4289
4300
|
|
|
4290
4301
|
def _deserialize(self, params):
|
|
4291
4302
|
if params.get("OutputInfo") is not None:
|
|
@@ -4309,6 +4320,7 @@ class CreateLiveStreamMonitorRequest(AbstractModel):
|
|
|
4309
4320
|
self._CheckStreamLowFrameRate = params.get("CheckStreamLowFrameRate")
|
|
4310
4321
|
self._AllowMonitorReport = params.get("AllowMonitorReport")
|
|
4311
4322
|
self._AiFormatDiagnose = params.get("AiFormatDiagnose")
|
|
4323
|
+
self._AiQualityControl = params.get("AiQualityControl")
|
|
4312
4324
|
memeber_set = set(params.keys())
|
|
4313
4325
|
for name, value in vars(self).items():
|
|
4314
4326
|
property_name = name[1:]
|
|
@@ -18133,6 +18145,9 @@ class LiveStreamMonitorInfo(AbstractModel):
|
|
|
18133
18145
|
:param _AiFormatDiagnose: 是否开启格式诊断
|
|
18134
18146
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
18135
18147
|
:type AiFormatDiagnose: int
|
|
18148
|
+
:param _AiQualityControl: 是否开启内容质检。
|
|
18149
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18150
|
+
:type AiQualityControl: int
|
|
18136
18151
|
"""
|
|
18137
18152
|
self._MonitorId = None
|
|
18138
18153
|
self._MonitorName = None
|
|
@@ -18153,6 +18168,7 @@ class LiveStreamMonitorInfo(AbstractModel):
|
|
|
18153
18168
|
self._AiOcrInputIndexList = None
|
|
18154
18169
|
self._AllowMonitorReport = None
|
|
18155
18170
|
self._AiFormatDiagnose = None
|
|
18171
|
+
self._AiQualityControl = None
|
|
18156
18172
|
|
|
18157
18173
|
@property
|
|
18158
18174
|
def MonitorId(self):
|
|
@@ -18306,6 +18322,14 @@ class LiveStreamMonitorInfo(AbstractModel):
|
|
|
18306
18322
|
def AiFormatDiagnose(self, AiFormatDiagnose):
|
|
18307
18323
|
self._AiFormatDiagnose = AiFormatDiagnose
|
|
18308
18324
|
|
|
18325
|
+
@property
|
|
18326
|
+
def AiQualityControl(self):
|
|
18327
|
+
return self._AiQualityControl
|
|
18328
|
+
|
|
18329
|
+
@AiQualityControl.setter
|
|
18330
|
+
def AiQualityControl(self, AiQualityControl):
|
|
18331
|
+
self._AiQualityControl = AiQualityControl
|
|
18332
|
+
|
|
18309
18333
|
|
|
18310
18334
|
def _deserialize(self, params):
|
|
18311
18335
|
self._MonitorId = params.get("MonitorId")
|
|
@@ -18336,6 +18360,7 @@ class LiveStreamMonitorInfo(AbstractModel):
|
|
|
18336
18360
|
self._AiOcrInputIndexList = params.get("AiOcrInputIndexList")
|
|
18337
18361
|
self._AllowMonitorReport = params.get("AllowMonitorReport")
|
|
18338
18362
|
self._AiFormatDiagnose = params.get("AiFormatDiagnose")
|
|
18363
|
+
self._AiQualityControl = params.get("AiQualityControl")
|
|
18339
18364
|
memeber_set = set(params.keys())
|
|
18340
18365
|
for name, value in vars(self).items():
|
|
18341
18366
|
property_name = name[1:]
|
|
@@ -20366,6 +20391,8 @@ class ModifyLiveStreamMonitorRequest(AbstractModel):
|
|
|
20366
20391
|
:type AllowMonitorReport: int
|
|
20367
20392
|
:param _AiFormatDiagnose: 是否开启格式诊断。
|
|
20368
20393
|
:type AiFormatDiagnose: int
|
|
20394
|
+
:param _AiQualityControl: 是否开启内容质检。
|
|
20395
|
+
:type AiQualityControl: int
|
|
20369
20396
|
"""
|
|
20370
20397
|
self._MonitorId = None
|
|
20371
20398
|
self._MonitorName = None
|
|
@@ -20380,6 +20407,7 @@ class ModifyLiveStreamMonitorRequest(AbstractModel):
|
|
|
20380
20407
|
self._CheckStreamLowFrameRate = None
|
|
20381
20408
|
self._AllowMonitorReport = None
|
|
20382
20409
|
self._AiFormatDiagnose = None
|
|
20410
|
+
self._AiQualityControl = None
|
|
20383
20411
|
|
|
20384
20412
|
@property
|
|
20385
20413
|
def MonitorId(self):
|
|
@@ -20485,6 +20513,14 @@ class ModifyLiveStreamMonitorRequest(AbstractModel):
|
|
|
20485
20513
|
def AiFormatDiagnose(self, AiFormatDiagnose):
|
|
20486
20514
|
self._AiFormatDiagnose = AiFormatDiagnose
|
|
20487
20515
|
|
|
20516
|
+
@property
|
|
20517
|
+
def AiQualityControl(self):
|
|
20518
|
+
return self._AiQualityControl
|
|
20519
|
+
|
|
20520
|
+
@AiQualityControl.setter
|
|
20521
|
+
def AiQualityControl(self, AiQualityControl):
|
|
20522
|
+
self._AiQualityControl = AiQualityControl
|
|
20523
|
+
|
|
20488
20524
|
|
|
20489
20525
|
def _deserialize(self, params):
|
|
20490
20526
|
self._MonitorId = params.get("MonitorId")
|
|
@@ -20509,6 +20545,7 @@ class ModifyLiveStreamMonitorRequest(AbstractModel):
|
|
|
20509
20545
|
self._CheckStreamLowFrameRate = params.get("CheckStreamLowFrameRate")
|
|
20510
20546
|
self._AllowMonitorReport = params.get("AllowMonitorReport")
|
|
20511
20547
|
self._AiFormatDiagnose = params.get("AiFormatDiagnose")
|
|
20548
|
+
self._AiQualityControl = params.get("AiQualityControl")
|
|
20512
20549
|
memeber_set = set(params.keys())
|
|
20513
20550
|
for name, value in vars(self).items():
|
|
20514
20551
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1132
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1130
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|