tencentcloud-sdk-python-mps 3.0.1432__tar.gz → 3.0.1433__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-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/setup.py +1 -1
  3. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud/mps/v20190612/models.py +105 -2
  5. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-mps-3.0.1433/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-mps-3.0.1432/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/README.rst +0 -0
  9. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-mps-3.0.1432 → tencentcloud-sdk-python-mps-3.0.1433}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1432
3
+ Version: 3.0.1433
4
4
  Summary: Tencent Cloud Mps 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-mps',
11
- install_requires=["tencentcloud-sdk-python-common>=3.0.1432,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1433,<4.0.0"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Mps 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.1432'
17
+ __version__ = '3.0.1433'
@@ -17340,6 +17340,8 @@ class CreateInput(AbstractModel):
17340
17340
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputRISTSettings`
17341
17341
  :param _InputRegion: 输入节点的地区
17342
17342
  :type InputRegion: str
17343
+ :param _FailOverOption: 冷热备相关
17344
+ :type FailOverOption: :class:`tencentcloud.mps.v20190612.models.FailOverOption`
17343
17345
  """
17344
17346
  self._InputName = None
17345
17347
  self._Protocol = None
@@ -17356,6 +17358,7 @@ class CreateInput(AbstractModel):
17356
17358
  self._Zones = None
17357
17359
  self._RISTSettings = None
17358
17360
  self._InputRegion = None
17361
+ self._FailOverOption = None
17359
17362
 
17360
17363
  @property
17361
17364
  def InputName(self):
@@ -17522,6 +17525,17 @@ class CreateInput(AbstractModel):
17522
17525
  def InputRegion(self, InputRegion):
17523
17526
  self._InputRegion = InputRegion
17524
17527
 
17528
+ @property
17529
+ def FailOverOption(self):
17530
+ """冷热备相关
17531
+ :rtype: :class:`tencentcloud.mps.v20190612.models.FailOverOption`
17532
+ """
17533
+ return self._FailOverOption
17534
+
17535
+ @FailOverOption.setter
17536
+ def FailOverOption(self, FailOverOption):
17537
+ self._FailOverOption = FailOverOption
17538
+
17525
17539
 
17526
17540
  def _deserialize(self, params):
17527
17541
  self._InputName = params.get("InputName")
@@ -17553,6 +17567,9 @@ class CreateInput(AbstractModel):
17553
17567
  self._RISTSettings = CreateInputRISTSettings()
17554
17568
  self._RISTSettings._deserialize(params.get("RISTSettings"))
17555
17569
  self._InputRegion = params.get("InputRegion")
17570
+ if params.get("FailOverOption") is not None:
17571
+ self._FailOverOption = FailOverOption()
17572
+ self._FailOverOption._deserialize(params.get("FailOverOption"))
17556
17573
  memeber_set = set(params.keys())
17557
17574
  for name, value in vars(self).items():
17558
17575
  property_name = name[1:]
@@ -19272,11 +19289,14 @@ class CreateQualityControlTemplateRequest(AbstractModel):
19272
19289
  :param _RecordFormat: 录制文件格式。可选值:
19273
19290
  <li>PNG: PNG图片</li>
19274
19291
  :type RecordFormat: str
19292
+ :param _Strategy: 媒体质检抽检策略。
19293
+ :type Strategy: :class:`tencentcloud.mps.v20190612.models.QualityControlStrategy`
19275
19294
  """
19276
19295
  self._Name = None
19277
19296
  self._QualityControlItemSet = None
19278
19297
  self._Comment = None
19279
19298
  self._RecordFormat = None
19299
+ self._Strategy = None
19280
19300
 
19281
19301
  @property
19282
19302
  def Name(self):
@@ -19323,6 +19343,17 @@ class CreateQualityControlTemplateRequest(AbstractModel):
19323
19343
  def RecordFormat(self, RecordFormat):
19324
19344
  self._RecordFormat = RecordFormat
19325
19345
 
19346
+ @property
19347
+ def Strategy(self):
19348
+ """媒体质检抽检策略。
19349
+ :rtype: :class:`tencentcloud.mps.v20190612.models.QualityControlStrategy`
19350
+ """
19351
+ return self._Strategy
19352
+
19353
+ @Strategy.setter
19354
+ def Strategy(self, Strategy):
19355
+ self._Strategy = Strategy
19356
+
19326
19357
 
19327
19358
  def _deserialize(self, params):
19328
19359
  self._Name = params.get("Name")
@@ -19334,6 +19365,9 @@ class CreateQualityControlTemplateRequest(AbstractModel):
19334
19365
  self._QualityControlItemSet.append(obj)
19335
19366
  self._Comment = params.get("Comment")
19336
19367
  self._RecordFormat = params.get("RecordFormat")
19368
+ if params.get("Strategy") is not None:
19369
+ self._Strategy = QualityControlStrategy()
19370
+ self._Strategy._deserialize(params.get("Strategy"))
19337
19371
  memeber_set = set(params.keys())
19338
19372
  for name, value in vars(self).items():
19339
19373
  property_name = name[1:]
@@ -28222,7 +28256,6 @@ class DescribeQualityControlTemplatesResponse(AbstractModel):
28222
28256
  :param _TotalCount: 符合过滤条件的记录总数。
28223
28257
  :type TotalCount: int
28224
28258
  :param _QualityControlTemplateSet: 媒体质检模板详情列表。
28225
- 注意:此字段可能返回 null,表示取不到有效值。
28226
28259
  :type QualityControlTemplateSet: list of QualityControlTemplate
28227
28260
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
28228
28261
  :type RequestId: str
@@ -28245,7 +28278,6 @@ class DescribeQualityControlTemplatesResponse(AbstractModel):
28245
28278
  @property
28246
28279
  def QualityControlTemplateSet(self):
28247
28280
  """媒体质检模板详情列表。
28248
- 注意:此字段可能返回 null,表示取不到有效值。
28249
28281
  :rtype: list of QualityControlTemplate
28250
28282
  """
28251
28283
  return self._QualityControlTemplateSet
@@ -34507,6 +34539,43 @@ class FaceEnhanceConfig(AbstractModel):
34507
34539
 
34508
34540
 
34509
34541
 
34542
+ class FailOverOption(AbstractModel):
34543
+ """type FailOverOption struct
34544
+ { FailOverType string json:"FailOverType" // 新增 冷/热备 COLDSTANDBY、HOTSTANDBY }
34545
+
34546
+ """
34547
+
34548
+ def __init__(self):
34549
+ r"""
34550
+ :param _FailOverType: 热备
34551
+ :type FailOverType: str
34552
+ """
34553
+ self._FailOverType = None
34554
+
34555
+ @property
34556
+ def FailOverType(self):
34557
+ """热备
34558
+ :rtype: str
34559
+ """
34560
+ return self._FailOverType
34561
+
34562
+ @FailOverType.setter
34563
+ def FailOverType(self, FailOverType):
34564
+ self._FailOverType = FailOverType
34565
+
34566
+
34567
+ def _deserialize(self, params):
34568
+ self._FailOverType = params.get("FailOverType")
34569
+ memeber_set = set(params.keys())
34570
+ for name, value in vars(self).items():
34571
+ property_name = name[1:]
34572
+ if property_name in memeber_set:
34573
+ memeber_set.remove(property_name)
34574
+ if len(memeber_set) > 0:
34575
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
34576
+
34577
+
34578
+
34510
34579
  class FlowAudio(AbstractModel):
34511
34580
  """流的音频数据。
34512
34581
 
@@ -46766,6 +46835,8 @@ class ModifyInput(AbstractModel):
46766
46835
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputRISTSettings`
46767
46836
  :param _InputRegion: 输入节点的地区
46768
46837
  :type InputRegion: str
46838
+ :param _FailOverOption: 冷热备相关
46839
+ :type FailOverOption: :class:`tencentcloud.mps.v20190612.models.FailOverOption`
46769
46840
  """
46770
46841
  self._InputId = None
46771
46842
  self._InputName = None
@@ -46783,6 +46854,7 @@ class ModifyInput(AbstractModel):
46783
46854
  self._Zones = None
46784
46855
  self._RISTSettings = None
46785
46856
  self._InputRegion = None
46857
+ self._FailOverOption = None
46786
46858
 
46787
46859
  @property
46788
46860
  def InputId(self):
@@ -46960,6 +47032,17 @@ class ModifyInput(AbstractModel):
46960
47032
  def InputRegion(self, InputRegion):
46961
47033
  self._InputRegion = InputRegion
46962
47034
 
47035
+ @property
47036
+ def FailOverOption(self):
47037
+ """冷热备相关
47038
+ :rtype: :class:`tencentcloud.mps.v20190612.models.FailOverOption`
47039
+ """
47040
+ return self._FailOverOption
47041
+
47042
+ @FailOverOption.setter
47043
+ def FailOverOption(self, FailOverOption):
47044
+ self._FailOverOption = FailOverOption
47045
+
46963
47046
 
46964
47047
  def _deserialize(self, params):
46965
47048
  self._InputId = params.get("InputId")
@@ -46992,6 +47075,9 @@ class ModifyInput(AbstractModel):
46992
47075
  self._RISTSettings = CreateInputRISTSettings()
46993
47076
  self._RISTSettings._deserialize(params.get("RISTSettings"))
46994
47077
  self._InputRegion = params.get("InputRegion")
47078
+ if params.get("FailOverOption") is not None:
47079
+ self._FailOverOption = FailOverOption()
47080
+ self._FailOverOption._deserialize(params.get("FailOverOption"))
46995
47081
  memeber_set = set(params.keys())
46996
47082
  for name, value in vars(self).items():
46997
47083
  property_name = name[1:]
@@ -47592,12 +47678,15 @@ class ModifyQualityControlTemplateRequest(AbstractModel):
47592
47678
  :param _RecordFormat: 录制文件格式。可选值:
47593
47679
  <li>PNG: PNG图片</li>
47594
47680
  :type RecordFormat: str
47681
+ :param _Strategy: 媒体质检抽检策略。
47682
+ :type Strategy: :class:`tencentcloud.mps.v20190612.models.QualityControlStrategy`
47595
47683
  """
47596
47684
  self._Definition = None
47597
47685
  self._Name = None
47598
47686
  self._Comment = None
47599
47687
  self._QualityControlItemSet = None
47600
47688
  self._RecordFormat = None
47689
+ self._Strategy = None
47601
47690
 
47602
47691
  @property
47603
47692
  def Definition(self):
@@ -47655,6 +47744,17 @@ class ModifyQualityControlTemplateRequest(AbstractModel):
47655
47744
  def RecordFormat(self, RecordFormat):
47656
47745
  self._RecordFormat = RecordFormat
47657
47746
 
47747
+ @property
47748
+ def Strategy(self):
47749
+ """媒体质检抽检策略。
47750
+ :rtype: :class:`tencentcloud.mps.v20190612.models.QualityControlStrategy`
47751
+ """
47752
+ return self._Strategy
47753
+
47754
+ @Strategy.setter
47755
+ def Strategy(self, Strategy):
47756
+ self._Strategy = Strategy
47757
+
47658
47758
 
47659
47759
  def _deserialize(self, params):
47660
47760
  self._Definition = params.get("Definition")
@@ -47667,6 +47767,9 @@ class ModifyQualityControlTemplateRequest(AbstractModel):
47667
47767
  obj._deserialize(item)
47668
47768
  self._QualityControlItemSet.append(obj)
47669
47769
  self._RecordFormat = params.get("RecordFormat")
47770
+ if params.get("Strategy") is not None:
47771
+ self._Strategy = QualityControlStrategy()
47772
+ self._Strategy._deserialize(params.get("Strategy"))
47670
47773
  memeber_set = set(params.keys())
47671
47774
  for name, value in vars(self).items():
47672
47775
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1432
3
+ Version: 3.0.1433
4
4
  Summary: Tencent Cloud Mps 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<4.0.0,>=3.0.1433
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1432