tencentcloud-sdk-python-mps 3.0.1314__tar.gz → 3.0.1316__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.1314 → tencentcloud-sdk-python-mps-3.0.1316}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/setup.py +1 -1
  3. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud/mps/v20190612/models.py +136 -0
  5. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-mps-3.0.1316/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-mps-3.0.1314/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/README.rst +0 -0
  9. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-mps-3.0.1314 → tencentcloud-sdk-python-mps-3.0.1316}/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.1314
3
+ Version: 3.0.1316
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.1314"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1316"],
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.1314'
17
+ __version__ = '3.0.1316'
@@ -16844,6 +16844,8 @@ class CreateOutputInfo(AbstractModel):
16844
16844
  :type OutputType: str
16845
16845
  :param _RISTSettings: 输出的RIST的配置。
16846
16846
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
16847
+ :param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
16848
+ :type PidSelector: :class:`tencentcloud.mps.v20190612.models.PidSelector`
16847
16849
  """
16848
16850
  self._OutputName = None
16849
16851
  self._Description = None
@@ -16858,6 +16860,7 @@ class CreateOutputInfo(AbstractModel):
16858
16860
  self._Zones = None
16859
16861
  self._OutputType = None
16860
16862
  self._RISTSettings = None
16863
+ self._PidSelector = None
16861
16864
 
16862
16865
  @property
16863
16866
  def OutputName(self):
@@ -17003,6 +17006,17 @@ class CreateOutputInfo(AbstractModel):
17003
17006
  def RISTSettings(self, RISTSettings):
17004
17007
  self._RISTSettings = RISTSettings
17005
17008
 
17009
+ @property
17010
+ def PidSelector(self):
17011
+ """对于含有多个音/视频轨的流,可以指定需要使用的轨道
17012
+ :rtype: :class:`tencentcloud.mps.v20190612.models.PidSelector`
17013
+ """
17014
+ return self._PidSelector
17015
+
17016
+ @PidSelector.setter
17017
+ def PidSelector(self, PidSelector):
17018
+ self._PidSelector = PidSelector
17019
+
17006
17020
 
17007
17021
  def _deserialize(self, params):
17008
17022
  self._OutputName = params.get("OutputName")
@@ -17026,6 +17040,9 @@ class CreateOutputInfo(AbstractModel):
17026
17040
  if params.get("RISTSettings") is not None:
17027
17041
  self._RISTSettings = CreateOutputRistSettings()
17028
17042
  self._RISTSettings._deserialize(params.get("RISTSettings"))
17043
+ if params.get("PidSelector") is not None:
17044
+ self._PidSelector = PidSelector()
17045
+ self._PidSelector._deserialize(params.get("PidSelector"))
17029
17046
  memeber_set = set(params.keys())
17030
17047
  for name, value in vars(self).items():
17031
17048
  property_name = name[1:]
@@ -22265,6 +22282,10 @@ class DescribeFlow(AbstractModel):
22265
22282
  :type EventId: str
22266
22283
  :param _Region: 媒体传输输入流所属的区域,取值和InputRegion相同。
22267
22284
  :type Region: str
22285
+ :param _AllowedInputProtocols: 该Flow允许创建的输入协议
22286
+ :type AllowedInputProtocols: list of str
22287
+ :param _AllowedOutputProtocols: 该Flow允许创建的输出协议
22288
+ :type AllowedOutputProtocols: list of str
22268
22289
  """
22269
22290
  self._FlowId = None
22270
22291
  self._FlowName = None
@@ -22274,6 +22295,8 @@ class DescribeFlow(AbstractModel):
22274
22295
  self._OutputGroup = None
22275
22296
  self._EventId = None
22276
22297
  self._Region = None
22298
+ self._AllowedInputProtocols = None
22299
+ self._AllowedOutputProtocols = None
22277
22300
 
22278
22301
  @property
22279
22302
  def FlowId(self):
@@ -22364,6 +22387,28 @@ class DescribeFlow(AbstractModel):
22364
22387
  def Region(self, Region):
22365
22388
  self._Region = Region
22366
22389
 
22390
+ @property
22391
+ def AllowedInputProtocols(self):
22392
+ """该Flow允许创建的输入协议
22393
+ :rtype: list of str
22394
+ """
22395
+ return self._AllowedInputProtocols
22396
+
22397
+ @AllowedInputProtocols.setter
22398
+ def AllowedInputProtocols(self, AllowedInputProtocols):
22399
+ self._AllowedInputProtocols = AllowedInputProtocols
22400
+
22401
+ @property
22402
+ def AllowedOutputProtocols(self):
22403
+ """该Flow允许创建的输出协议
22404
+ :rtype: list of str
22405
+ """
22406
+ return self._AllowedOutputProtocols
22407
+
22408
+ @AllowedOutputProtocols.setter
22409
+ def AllowedOutputProtocols(self, AllowedOutputProtocols):
22410
+ self._AllowedOutputProtocols = AllowedOutputProtocols
22411
+
22367
22412
 
22368
22413
  def _deserialize(self, params):
22369
22414
  self._FlowId = params.get("FlowId")
@@ -22384,6 +22429,8 @@ class DescribeFlow(AbstractModel):
22384
22429
  self._OutputGroup.append(obj)
22385
22430
  self._EventId = params.get("EventId")
22386
22431
  self._Region = params.get("Region")
22432
+ self._AllowedInputProtocols = params.get("AllowedInputProtocols")
22433
+ self._AllowedOutputProtocols = params.get("AllowedOutputProtocols")
22387
22434
  memeber_set = set(params.keys())
22388
22435
  for name, value in vars(self).items():
22389
22436
  property_name = name[1:]
@@ -23823,6 +23870,8 @@ class DescribeOutput(AbstractModel):
23823
23870
  :param _RISTSettings: 输出的RIST配置信息。
23824
23871
  注意:此字段可能返回 null,表示取不到有效值。
23825
23872
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeOutputRISTSettings`
23873
+ :param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
23874
+ :type PidSelector: :class:`tencentcloud.mps.v20190612.models.PidSelector`
23826
23875
  """
23827
23876
  self._OutputId = None
23828
23877
  self._OutputName = None
@@ -23842,6 +23891,7 @@ class DescribeOutput(AbstractModel):
23842
23891
  self._SecurityGroupIds = None
23843
23892
  self._Zones = None
23844
23893
  self._RISTSettings = None
23894
+ self._PidSelector = None
23845
23895
 
23846
23896
  @property
23847
23897
  def OutputId(self):
@@ -24053,6 +24103,17 @@ class DescribeOutput(AbstractModel):
24053
24103
  def RISTSettings(self, RISTSettings):
24054
24104
  self._RISTSettings = RISTSettings
24055
24105
 
24106
+ @property
24107
+ def PidSelector(self):
24108
+ """对于含有多个音/视频轨的流,可以指定需要使用的轨道
24109
+ :rtype: :class:`tencentcloud.mps.v20190612.models.PidSelector`
24110
+ """
24111
+ return self._PidSelector
24112
+
24113
+ @PidSelector.setter
24114
+ def PidSelector(self, PidSelector):
24115
+ self._PidSelector = PidSelector
24116
+
24056
24117
 
24057
24118
  def _deserialize(self, params):
24058
24119
  self._OutputId = params.get("OutputId")
@@ -24092,6 +24153,9 @@ class DescribeOutput(AbstractModel):
24092
24153
  if params.get("RISTSettings") is not None:
24093
24154
  self._RISTSettings = DescribeOutputRISTSettings()
24094
24155
  self._RISTSettings._deserialize(params.get("RISTSettings"))
24156
+ if params.get("PidSelector") is not None:
24157
+ self._PidSelector = PidSelector()
24158
+ self._PidSelector._deserialize(params.get("PidSelector"))
24095
24159
  memeber_set = set(params.keys())
24096
24160
  for name, value in vars(self).items():
24097
24161
  property_name = name[1:]
@@ -42425,6 +42489,8 @@ class ModifyOutputInfo(AbstractModel):
42425
42489
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
42426
42490
  :param _OutputType: 输出类型:Internet/TencentCSS/StreamLive
42427
42491
  :type OutputType: str
42492
+ :param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
42493
+ :type PidSelector: :class:`tencentcloud.mps.v20190612.models.PidSelector`
42428
42494
  """
42429
42495
  self._OutputId = None
42430
42496
  self._OutputName = None
@@ -42439,6 +42505,7 @@ class ModifyOutputInfo(AbstractModel):
42439
42505
  self._Zones = None
42440
42506
  self._RISTSettings = None
42441
42507
  self._OutputType = None
42508
+ self._PidSelector = None
42442
42509
 
42443
42510
  @property
42444
42511
  def OutputId(self):
@@ -42584,6 +42651,17 @@ class ModifyOutputInfo(AbstractModel):
42584
42651
  def OutputType(self, OutputType):
42585
42652
  self._OutputType = OutputType
42586
42653
 
42654
+ @property
42655
+ def PidSelector(self):
42656
+ """对于含有多个音/视频轨的流,可以指定需要使用的轨道
42657
+ :rtype: :class:`tencentcloud.mps.v20190612.models.PidSelector`
42658
+ """
42659
+ return self._PidSelector
42660
+
42661
+ @PidSelector.setter
42662
+ def PidSelector(self, PidSelector):
42663
+ self._PidSelector = PidSelector
42664
+
42587
42665
 
42588
42666
  def _deserialize(self, params):
42589
42667
  self._OutputId = params.get("OutputId")
@@ -42607,6 +42685,9 @@ class ModifyOutputInfo(AbstractModel):
42607
42685
  self._RISTSettings = CreateOutputRistSettings()
42608
42686
  self._RISTSettings._deserialize(params.get("RISTSettings"))
42609
42687
  self._OutputType = params.get("OutputType")
42688
+ if params.get("PidSelector") is not None:
42689
+ self._PidSelector = PidSelector()
42690
+ self._PidSelector._deserialize(params.get("PidSelector"))
42610
42691
  memeber_set = set(params.keys())
42611
42692
  for name, value in vars(self).items():
42612
42693
  property_name = name[1:]
@@ -45846,6 +45927,61 @@ class ParseNotificationResponse(AbstractModel):
45846
45927
  self._RequestId = params.get("RequestId")
45847
45928
 
45848
45929
 
45930
+ class PidSelector(AbstractModel):
45931
+ """对于含有多个音/视频轨的流,可以指定需要使用的轨道
45932
+
45933
+ """
45934
+
45935
+ def __init__(self):
45936
+ r"""
45937
+ :param _AudioPID: 对于含有多音轨的流, 可以通过输入PID来指定需要使用的音轨,PID可以输入1到8191之间的正整数。
45938
+ 注意:此字段可能返回 null,表示取不到有效值。
45939
+ :type AudioPID: list of int
45940
+ :param _VideoPID: 对于含有多个视频轨的流,可以通过输入PID来指定需要使用的视频轨,PID可以输入1到8191之间的正整数。
45941
+ 注意:此字段可能返回 null,表示取不到有效值。
45942
+ :type VideoPID: list of int
45943
+ """
45944
+ self._AudioPID = None
45945
+ self._VideoPID = None
45946
+
45947
+ @property
45948
+ def AudioPID(self):
45949
+ """对于含有多音轨的流, 可以通过输入PID来指定需要使用的音轨,PID可以输入1到8191之间的正整数。
45950
+ 注意:此字段可能返回 null,表示取不到有效值。
45951
+ :rtype: list of int
45952
+ """
45953
+ return self._AudioPID
45954
+
45955
+ @AudioPID.setter
45956
+ def AudioPID(self, AudioPID):
45957
+ self._AudioPID = AudioPID
45958
+
45959
+ @property
45960
+ def VideoPID(self):
45961
+ """对于含有多个视频轨的流,可以通过输入PID来指定需要使用的视频轨,PID可以输入1到8191之间的正整数。
45962
+ 注意:此字段可能返回 null,表示取不到有效值。
45963
+ :rtype: list of int
45964
+ """
45965
+ return self._VideoPID
45966
+
45967
+ @VideoPID.setter
45968
+ def VideoPID(self, VideoPID):
45969
+ self._VideoPID = VideoPID
45970
+
45971
+
45972
+ def _deserialize(self, params):
45973
+ self._AudioPID = params.get("AudioPID")
45974
+ self._VideoPID = params.get("VideoPID")
45975
+ memeber_set = set(params.keys())
45976
+ for name, value in vars(self).items():
45977
+ property_name = name[1:]
45978
+ if property_name in memeber_set:
45979
+ memeber_set.remove(property_name)
45980
+ if len(memeber_set) > 0:
45981
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
45982
+
45983
+
45984
+
45849
45985
  class PoliticalAsrReviewTemplateInfo(AbstractModel):
45850
45986
  """语音涉敏任务控制参数
45851
45987
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1314
3
+ Version: 3.0.1316
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==3.0.1316
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1314