tencentcloud-sdk-python-mps 3.0.990__tar.gz → 3.0.991__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.
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/setup.py +1 -1
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud/mps/v20190612/models.py +78 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-mps-3.0.991/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-mps-3.0.990/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/README.rst +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/setup.cfg +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-mps-3.0.990 → tencentcloud-sdk-python-mps-3.0.991}/tencentcloud_sdk_python_mps.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-mps',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.991"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Mps SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -11572,6 +11572,8 @@ class CreateInput(AbstractModel):
|
|
|
11572
11572
|
:type HLSPullSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputHLSPullSettings`
|
|
11573
11573
|
:param _ResilientStream: 延播平滑吐流配置信息。
|
|
11574
11574
|
:type ResilientStream: :class:`tencentcloud.mps.v20190612.models.ResilientStreamConf`
|
|
11575
|
+
:param _SecurityGroupIds: 绑定的输入安全组 ID。
|
|
11576
|
+
:type SecurityGroupIds: list of str
|
|
11575
11577
|
"""
|
|
11576
11578
|
self._InputName = None
|
|
11577
11579
|
self._Protocol = None
|
|
@@ -11584,6 +11586,7 @@ class CreateInput(AbstractModel):
|
|
|
11584
11586
|
self._RTSPPullSettings = None
|
|
11585
11587
|
self._HLSPullSettings = None
|
|
11586
11588
|
self._ResilientStream = None
|
|
11589
|
+
self._SecurityGroupIds = None
|
|
11587
11590
|
|
|
11588
11591
|
@property
|
|
11589
11592
|
def InputName(self):
|
|
@@ -11673,6 +11676,14 @@ class CreateInput(AbstractModel):
|
|
|
11673
11676
|
def ResilientStream(self, ResilientStream):
|
|
11674
11677
|
self._ResilientStream = ResilientStream
|
|
11675
11678
|
|
|
11679
|
+
@property
|
|
11680
|
+
def SecurityGroupIds(self):
|
|
11681
|
+
return self._SecurityGroupIds
|
|
11682
|
+
|
|
11683
|
+
@SecurityGroupIds.setter
|
|
11684
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
11685
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
11686
|
+
|
|
11676
11687
|
|
|
11677
11688
|
def _deserialize(self, params):
|
|
11678
11689
|
self._InputName = params.get("InputName")
|
|
@@ -11698,6 +11709,7 @@ class CreateInput(AbstractModel):
|
|
|
11698
11709
|
if params.get("ResilientStream") is not None:
|
|
11699
11710
|
self._ResilientStream = ResilientStreamConf()
|
|
11700
11711
|
self._ResilientStream._deserialize(params.get("ResilientStream"))
|
|
11712
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
11701
11713
|
memeber_set = set(params.keys())
|
|
11702
11714
|
for name, value in vars(self).items():
|
|
11703
11715
|
property_name = name[1:]
|
|
@@ -12027,6 +12039,8 @@ class CreateOutputInfo(AbstractModel):
|
|
|
12027
12039
|
:type AllowIpList: list of str
|
|
12028
12040
|
:param _MaxConcurrent: 最大拉流并发数,最大4,默认4。
|
|
12029
12041
|
:type MaxConcurrent: int
|
|
12042
|
+
:param _SecurityGroupIds: 绑定的输入安全组 ID。
|
|
12043
|
+
:type SecurityGroupIds: list of str
|
|
12030
12044
|
"""
|
|
12031
12045
|
self._OutputName = None
|
|
12032
12046
|
self._Description = None
|
|
@@ -12037,6 +12051,7 @@ class CreateOutputInfo(AbstractModel):
|
|
|
12037
12051
|
self._RTPSettings = None
|
|
12038
12052
|
self._AllowIpList = None
|
|
12039
12053
|
self._MaxConcurrent = None
|
|
12054
|
+
self._SecurityGroupIds = None
|
|
12040
12055
|
|
|
12041
12056
|
@property
|
|
12042
12057
|
def OutputName(self):
|
|
@@ -12110,6 +12125,14 @@ class CreateOutputInfo(AbstractModel):
|
|
|
12110
12125
|
def MaxConcurrent(self, MaxConcurrent):
|
|
12111
12126
|
self._MaxConcurrent = MaxConcurrent
|
|
12112
12127
|
|
|
12128
|
+
@property
|
|
12129
|
+
def SecurityGroupIds(self):
|
|
12130
|
+
return self._SecurityGroupIds
|
|
12131
|
+
|
|
12132
|
+
@SecurityGroupIds.setter
|
|
12133
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
12134
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
12135
|
+
|
|
12113
12136
|
|
|
12114
12137
|
def _deserialize(self, params):
|
|
12115
12138
|
self._OutputName = params.get("OutputName")
|
|
@@ -12127,6 +12150,7 @@ class CreateOutputInfo(AbstractModel):
|
|
|
12127
12150
|
self._RTPSettings._deserialize(params.get("RTPSettings"))
|
|
12128
12151
|
self._AllowIpList = params.get("AllowIpList")
|
|
12129
12152
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
|
12153
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
12130
12154
|
memeber_set = set(params.keys())
|
|
12131
12155
|
for name, value in vars(self).items():
|
|
12132
12156
|
property_name = name[1:]
|
|
@@ -16278,6 +16302,9 @@ class DescribeInput(AbstractModel):
|
|
|
16278
16302
|
:param _ResilientStream: 延播平滑吐流配置信息。
|
|
16279
16303
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16280
16304
|
:type ResilientStream: :class:`tencentcloud.mps.v20190612.models.ResilientStreamConf`
|
|
16305
|
+
:param _SecurityGroupIds: 绑定的输入安全组 ID。
|
|
16306
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16307
|
+
:type SecurityGroupIds: list of str
|
|
16281
16308
|
"""
|
|
16282
16309
|
self._InputId = None
|
|
16283
16310
|
self._InputName = None
|
|
@@ -16294,6 +16321,7 @@ class DescribeInput(AbstractModel):
|
|
|
16294
16321
|
self._RTSPPullSettings = None
|
|
16295
16322
|
self._HLSPullSettings = None
|
|
16296
16323
|
self._ResilientStream = None
|
|
16324
|
+
self._SecurityGroupIds = None
|
|
16297
16325
|
|
|
16298
16326
|
@property
|
|
16299
16327
|
def InputId(self):
|
|
@@ -16415,6 +16443,14 @@ class DescribeInput(AbstractModel):
|
|
|
16415
16443
|
def ResilientStream(self, ResilientStream):
|
|
16416
16444
|
self._ResilientStream = ResilientStream
|
|
16417
16445
|
|
|
16446
|
+
@property
|
|
16447
|
+
def SecurityGroupIds(self):
|
|
16448
|
+
return self._SecurityGroupIds
|
|
16449
|
+
|
|
16450
|
+
@SecurityGroupIds.setter
|
|
16451
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
16452
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
16453
|
+
|
|
16418
16454
|
|
|
16419
16455
|
def _deserialize(self, params):
|
|
16420
16456
|
self._InputId = params.get("InputId")
|
|
@@ -16451,6 +16487,7 @@ class DescribeInput(AbstractModel):
|
|
|
16451
16487
|
if params.get("ResilientStream") is not None:
|
|
16452
16488
|
self._ResilientStream = ResilientStreamConf()
|
|
16453
16489
|
self._ResilientStream._deserialize(params.get("ResilientStream"))
|
|
16490
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
16454
16491
|
memeber_set = set(params.keys())
|
|
16455
16492
|
for name, value in vars(self).items():
|
|
16456
16493
|
property_name = name[1:]
|
|
@@ -16924,6 +16961,9 @@ class DescribeOutput(AbstractModel):
|
|
|
16924
16961
|
:type HLSPullSettings: :class:`tencentcloud.mps.v20190612.models.DescribeOutputHLSPullSettings`
|
|
16925
16962
|
:param _MaxConcurrent: 最大拉流并发数,最大为4,默认4。
|
|
16926
16963
|
:type MaxConcurrent: int
|
|
16964
|
+
:param _SecurityGroupIds: 绑定的安全组 ID。
|
|
16965
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16966
|
+
:type SecurityGroupIds: list of str
|
|
16927
16967
|
"""
|
|
16928
16968
|
self._OutputId = None
|
|
16929
16969
|
self._OutputName = None
|
|
@@ -16940,6 +16980,7 @@ class DescribeOutput(AbstractModel):
|
|
|
16940
16980
|
self._RTSPPullSettings = None
|
|
16941
16981
|
self._HLSPullSettings = None
|
|
16942
16982
|
self._MaxConcurrent = None
|
|
16983
|
+
self._SecurityGroupIds = None
|
|
16943
16984
|
|
|
16944
16985
|
@property
|
|
16945
16986
|
def OutputId(self):
|
|
@@ -17061,6 +17102,14 @@ class DescribeOutput(AbstractModel):
|
|
|
17061
17102
|
def MaxConcurrent(self, MaxConcurrent):
|
|
17062
17103
|
self._MaxConcurrent = MaxConcurrent
|
|
17063
17104
|
|
|
17105
|
+
@property
|
|
17106
|
+
def SecurityGroupIds(self):
|
|
17107
|
+
return self._SecurityGroupIds
|
|
17108
|
+
|
|
17109
|
+
@SecurityGroupIds.setter
|
|
17110
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
17111
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
17112
|
+
|
|
17064
17113
|
|
|
17065
17114
|
def _deserialize(self, params):
|
|
17066
17115
|
self._OutputId = params.get("OutputId")
|
|
@@ -17095,6 +17144,7 @@ class DescribeOutput(AbstractModel):
|
|
|
17095
17144
|
self._HLSPullSettings = DescribeOutputHLSPullSettings()
|
|
17096
17145
|
self._HLSPullSettings._deserialize(params.get("HLSPullSettings"))
|
|
17097
17146
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
|
17147
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
17098
17148
|
memeber_set = set(params.keys())
|
|
17099
17149
|
for name, value in vars(self).items():
|
|
17100
17150
|
property_name = name[1:]
|
|
@@ -30413,6 +30463,8 @@ class ModifyInput(AbstractModel):
|
|
|
30413
30463
|
:type HLSPullSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputHLSPullSettings`
|
|
30414
30464
|
:param _ResilientStream: 延播平滑吐流配置信息。
|
|
30415
30465
|
:type ResilientStream: :class:`tencentcloud.mps.v20190612.models.ResilientStreamConf`
|
|
30466
|
+
:param _SecurityGroupIds: 绑定的输入安全组 ID。 仅支持关联一组安全组。
|
|
30467
|
+
:type SecurityGroupIds: list of str
|
|
30416
30468
|
"""
|
|
30417
30469
|
self._InputId = None
|
|
30418
30470
|
self._InputName = None
|
|
@@ -30426,6 +30478,7 @@ class ModifyInput(AbstractModel):
|
|
|
30426
30478
|
self._RTSPPullSettings = None
|
|
30427
30479
|
self._HLSPullSettings = None
|
|
30428
30480
|
self._ResilientStream = None
|
|
30481
|
+
self._SecurityGroupIds = None
|
|
30429
30482
|
|
|
30430
30483
|
@property
|
|
30431
30484
|
def InputId(self):
|
|
@@ -30523,6 +30576,14 @@ class ModifyInput(AbstractModel):
|
|
|
30523
30576
|
def ResilientStream(self, ResilientStream):
|
|
30524
30577
|
self._ResilientStream = ResilientStream
|
|
30525
30578
|
|
|
30579
|
+
@property
|
|
30580
|
+
def SecurityGroupIds(self):
|
|
30581
|
+
return self._SecurityGroupIds
|
|
30582
|
+
|
|
30583
|
+
@SecurityGroupIds.setter
|
|
30584
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
30585
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
30586
|
+
|
|
30526
30587
|
|
|
30527
30588
|
def _deserialize(self, params):
|
|
30528
30589
|
self._InputId = params.get("InputId")
|
|
@@ -30549,6 +30610,7 @@ class ModifyInput(AbstractModel):
|
|
|
30549
30610
|
if params.get("ResilientStream") is not None:
|
|
30550
30611
|
self._ResilientStream = ResilientStreamConf()
|
|
30551
30612
|
self._ResilientStream._deserialize(params.get("ResilientStream"))
|
|
30613
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
30552
30614
|
memeber_set = set(params.keys())
|
|
30553
30615
|
for name, value in vars(self).items():
|
|
30554
30616
|
property_name = name[1:]
|
|
@@ -30585,6 +30647,8 @@ class ModifyOutputInfo(AbstractModel):
|
|
|
30585
30647
|
:type AllowIpList: list of str
|
|
30586
30648
|
:param _MaxConcurrent: 最大拉流并发数,最大4,默认4。
|
|
30587
30649
|
:type MaxConcurrent: int
|
|
30650
|
+
:param _SecurityGroupIds: 绑定的安全组 ID。 仅支持关联一组安全组。
|
|
30651
|
+
:type SecurityGroupIds: list of str
|
|
30588
30652
|
"""
|
|
30589
30653
|
self._OutputId = None
|
|
30590
30654
|
self._OutputName = None
|
|
@@ -30595,6 +30659,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
|
30595
30659
|
self._RTMPSettings = None
|
|
30596
30660
|
self._AllowIpList = None
|
|
30597
30661
|
self._MaxConcurrent = None
|
|
30662
|
+
self._SecurityGroupIds = None
|
|
30598
30663
|
|
|
30599
30664
|
@property
|
|
30600
30665
|
def OutputId(self):
|
|
@@ -30668,6 +30733,14 @@ class ModifyOutputInfo(AbstractModel):
|
|
|
30668
30733
|
def MaxConcurrent(self, MaxConcurrent):
|
|
30669
30734
|
self._MaxConcurrent = MaxConcurrent
|
|
30670
30735
|
|
|
30736
|
+
@property
|
|
30737
|
+
def SecurityGroupIds(self):
|
|
30738
|
+
return self._SecurityGroupIds
|
|
30739
|
+
|
|
30740
|
+
@SecurityGroupIds.setter
|
|
30741
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
30742
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
30743
|
+
|
|
30671
30744
|
|
|
30672
30745
|
def _deserialize(self, params):
|
|
30673
30746
|
self._OutputId = params.get("OutputId")
|
|
@@ -30685,6 +30758,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
|
30685
30758
|
self._RTMPSettings._deserialize(params.get("RTMPSettings"))
|
|
30686
30759
|
self._AllowIpList = params.get("AllowIpList")
|
|
30687
30760
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
|
30761
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
30688
30762
|
memeber_set = set(params.keys())
|
|
30689
30763
|
for name, value in vars(self).items():
|
|
30690
30764
|
property_name = name[1:]
|
|
@@ -32518,8 +32592,10 @@ class OutputSRTSourceAddressResp(AbstractModel):
|
|
|
32518
32592
|
def __init__(self):
|
|
32519
32593
|
r"""
|
|
32520
32594
|
:param _Ip: 监听IP。
|
|
32595
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
32521
32596
|
:type Ip: str
|
|
32522
32597
|
:param _Port: 监听端口。
|
|
32598
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
32523
32599
|
:type Port: int
|
|
32524
32600
|
"""
|
|
32525
32601
|
self._Ip = None
|
|
@@ -36193,8 +36269,10 @@ class SRTSourceAddressResp(AbstractModel):
|
|
|
36193
36269
|
def __init__(self):
|
|
36194
36270
|
r"""
|
|
36195
36271
|
:param _Ip: 对端IP。
|
|
36272
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
36196
36273
|
:type Ip: str
|
|
36197
36274
|
:param _Port: 对端端口。
|
|
36275
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
36198
36276
|
:type Port: int
|
|
36199
36277
|
"""
|
|
36200
36278
|
self._Ip = None
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.991
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.990
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|