tencentcloud-sdk-python 3.0.1267__py2.py3-none-any.whl → 3.0.1269__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/bh/__init__.py +0 -0
- tencentcloud/bh/v20230418/__init__.py +0 -0
- tencentcloud/bh/v20230418/bh_client.py +1452 -0
- tencentcloud/bh/v20230418/errorcodes.py +93 -0
- tencentcloud/bh/v20230418/models.py +14079 -0
- tencentcloud/billing/v20180709/billing_client.py +9 -3
- tencentcloud/bpaas/v20181217/errorcodes.py +1 -1
- tencentcloud/cdb/v20170320/cdb_client.py +1 -3
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +43 -14
- tencentcloud/cfs/v20190719/models.py +15 -0
- tencentcloud/clb/v20180317/clb_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +30 -30
- tencentcloud/cwp/v20180228/cwp_client.py +3 -1
- tencentcloud/emr/v20190103/models.py +10 -30
- tencentcloud/ess/v20201111/ess_client.py +5 -6
- tencentcloud/ess/v20201111/models.py +43 -6
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -4
- tencentcloud/essbasic/v20210526/models.py +28 -8
- tencentcloud/facefusion/v20220927/models.py +0 -12
- tencentcloud/hunyuan/v20230901/models.py +6 -4
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lcic/v20220817/lcic_client.py +69 -0
- tencentcloud/lcic/v20220817/models.py +458 -0
- tencentcloud/live/v20180801/errorcodes.py +6 -0
- tencentcloud/live/v20180801/live_client.py +69 -0
- tencentcloud/live/v20180801/models.py +453 -0
- tencentcloud/monitor/v20180724/models.py +25 -10
- tencentcloud/mps/v20190612/models.py +500 -8
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/rce/v20201103/errorcodes.py +0 -132
- tencentcloud/redis/v20180412/models.py +32 -24
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/tchd/v20230306/tchd_client.py +2 -0
- tencentcloud/thpc/v20230321/models.py +2 -2
- tencentcloud/tke/v20220501/errorcodes.py +3 -0
- tencentcloud/tke/v20220501/models.py +302 -0
- tencentcloud/tke/v20220501/tke_client.py +80 -0
- tencentcloud/trtc/v20190722/models.py +32 -2
- tencentcloud/vclm/v20240523/models.py +86 -62
- tencentcloud/vclm/v20240523/vclm_client.py +1 -1
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +35 -20
- tencentcloud/wedata/v20210820/models.py +17 -2
- {tencentcloud_sdk_python-3.0.1267.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1267.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/RECORD +50 -45
- {tencentcloud_sdk_python-3.0.1267.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1267.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1267.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/top_level.txt +0 -0
@@ -15956,7 +15956,7 @@ class CreateInput(AbstractModel):
|
|
15956
15956
|
r"""
|
15957
15957
|
:param _InputName: 输入名称,可填大小写、数字和下划线,长度为[1, 32]。
|
15958
15958
|
:type InputName: str
|
15959
|
-
:param _Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
|
15959
|
+
:param _Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
|
15960
15960
|
:type Protocol: str
|
15961
15961
|
:param _Description: 输入描述,长度为[0, 255]。
|
15962
15962
|
:type Description: str
|
@@ -15980,6 +15980,10 @@ class CreateInput(AbstractModel):
|
|
15980
15980
|
:type SecurityGroupIds: list of str
|
15981
15981
|
:param _Zones: 可用区,非必填,如果开启容灾必须输入两个不同的可用区,否则最多只允许输入一个可用区。
|
15982
15982
|
:type Zones: list of str
|
15983
|
+
:param _RISTSettings: 输入的RIST配置信息。
|
15984
|
+
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputRISTSettings`
|
15985
|
+
:param _InputRegion: 输入节点的地区
|
15986
|
+
:type InputRegion: str
|
15983
15987
|
"""
|
15984
15988
|
self._InputName = None
|
15985
15989
|
self._Protocol = None
|
@@ -15994,6 +15998,8 @@ class CreateInput(AbstractModel):
|
|
15994
15998
|
self._ResilientStream = None
|
15995
15999
|
self._SecurityGroupIds = None
|
15996
16000
|
self._Zones = None
|
16001
|
+
self._RISTSettings = None
|
16002
|
+
self._InputRegion = None
|
15997
16003
|
|
15998
16004
|
@property
|
15999
16005
|
def InputName(self):
|
@@ -16008,7 +16014,7 @@ class CreateInput(AbstractModel):
|
|
16008
16014
|
|
16009
16015
|
@property
|
16010
16016
|
def Protocol(self):
|
16011
|
-
"""输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
|
16017
|
+
"""输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
|
16012
16018
|
:rtype: str
|
16013
16019
|
"""
|
16014
16020
|
return self._Protocol
|
@@ -16138,6 +16144,28 @@ class CreateInput(AbstractModel):
|
|
16138
16144
|
def Zones(self, Zones):
|
16139
16145
|
self._Zones = Zones
|
16140
16146
|
|
16147
|
+
@property
|
16148
|
+
def RISTSettings(self):
|
16149
|
+
"""输入的RIST配置信息。
|
16150
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.CreateInputRISTSettings`
|
16151
|
+
"""
|
16152
|
+
return self._RISTSettings
|
16153
|
+
|
16154
|
+
@RISTSettings.setter
|
16155
|
+
def RISTSettings(self, RISTSettings):
|
16156
|
+
self._RISTSettings = RISTSettings
|
16157
|
+
|
16158
|
+
@property
|
16159
|
+
def InputRegion(self):
|
16160
|
+
"""输入节点的地区
|
16161
|
+
:rtype: str
|
16162
|
+
"""
|
16163
|
+
return self._InputRegion
|
16164
|
+
|
16165
|
+
@InputRegion.setter
|
16166
|
+
def InputRegion(self, InputRegion):
|
16167
|
+
self._InputRegion = InputRegion
|
16168
|
+
|
16141
16169
|
|
16142
16170
|
def _deserialize(self, params):
|
16143
16171
|
self._InputName = params.get("InputName")
|
@@ -16165,6 +16193,10 @@ class CreateInput(AbstractModel):
|
|
16165
16193
|
self._ResilientStream._deserialize(params.get("ResilientStream"))
|
16166
16194
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
16167
16195
|
self._Zones = params.get("Zones")
|
16196
|
+
if params.get("RISTSettings") is not None:
|
16197
|
+
self._RISTSettings = CreateInputRISTSettings()
|
16198
|
+
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
16199
|
+
self._InputRegion = params.get("InputRegion")
|
16168
16200
|
memeber_set = set(params.keys())
|
16169
16201
|
for name, value in vars(self).items():
|
16170
16202
|
property_name = name[1:]
|
@@ -16216,6 +16248,72 @@ class CreateInputHLSPullSettings(AbstractModel):
|
|
16216
16248
|
|
16217
16249
|
|
16218
16250
|
|
16251
|
+
class CreateInputRISTSettings(AbstractModel):
|
16252
|
+
"""创建的输入RIST的配置信息。
|
16253
|
+
|
16254
|
+
"""
|
16255
|
+
|
16256
|
+
def __init__(self):
|
16257
|
+
r"""
|
16258
|
+
:param _Mode: RIST模式,可选[LISTENER],默认为LISTENER。
|
16259
|
+
:type Mode: str
|
16260
|
+
:param _Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
16261
|
+
:type Profile: str
|
16262
|
+
:param _Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
16263
|
+
:type Buffer: int
|
16264
|
+
"""
|
16265
|
+
self._Mode = None
|
16266
|
+
self._Profile = None
|
16267
|
+
self._Buffer = None
|
16268
|
+
|
16269
|
+
@property
|
16270
|
+
def Mode(self):
|
16271
|
+
"""RIST模式,可选[LISTENER],默认为LISTENER。
|
16272
|
+
:rtype: str
|
16273
|
+
"""
|
16274
|
+
return self._Mode
|
16275
|
+
|
16276
|
+
@Mode.setter
|
16277
|
+
def Mode(self, Mode):
|
16278
|
+
self._Mode = Mode
|
16279
|
+
|
16280
|
+
@property
|
16281
|
+
def Profile(self):
|
16282
|
+
"""RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
16283
|
+
:rtype: str
|
16284
|
+
"""
|
16285
|
+
return self._Profile
|
16286
|
+
|
16287
|
+
@Profile.setter
|
16288
|
+
def Profile(self, Profile):
|
16289
|
+
self._Profile = Profile
|
16290
|
+
|
16291
|
+
@property
|
16292
|
+
def Buffer(self):
|
16293
|
+
"""RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
16294
|
+
:rtype: int
|
16295
|
+
"""
|
16296
|
+
return self._Buffer
|
16297
|
+
|
16298
|
+
@Buffer.setter
|
16299
|
+
def Buffer(self, Buffer):
|
16300
|
+
self._Buffer = Buffer
|
16301
|
+
|
16302
|
+
|
16303
|
+
def _deserialize(self, params):
|
16304
|
+
self._Mode = params.get("Mode")
|
16305
|
+
self._Profile = params.get("Profile")
|
16306
|
+
self._Buffer = params.get("Buffer")
|
16307
|
+
memeber_set = set(params.keys())
|
16308
|
+
for name, value in vars(self).items():
|
16309
|
+
property_name = name[1:]
|
16310
|
+
if property_name in memeber_set:
|
16311
|
+
memeber_set.remove(property_name)
|
16312
|
+
if len(memeber_set) > 0:
|
16313
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16314
|
+
|
16315
|
+
|
16316
|
+
|
16219
16317
|
class CreateInputRTMPPullSettings(AbstractModel):
|
16220
16318
|
"""创建的输入RTMP拉流的配置信息。
|
16221
16319
|
|
@@ -16521,7 +16619,7 @@ class CreateOutputInfo(AbstractModel):
|
|
16521
16619
|
:type OutputName: str
|
16522
16620
|
:param _Description: 输出描述。
|
16523
16621
|
:type Description: str
|
16524
|
-
:param _Protocol:
|
16622
|
+
:param _Protocol: 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP|RIST。
|
16525
16623
|
:type Protocol: str
|
16526
16624
|
:param _OutputRegion: 输出地区。
|
16527
16625
|
:type OutputRegion: str
|
@@ -16540,6 +16638,10 @@ class CreateOutputInfo(AbstractModel):
|
|
16540
16638
|
:type SecurityGroupIds: list of str
|
16541
16639
|
:param _Zones: 可用区,output最多只支持输入一个可用区。
|
16542
16640
|
:type Zones: list of str
|
16641
|
+
:param _OutputType: 输出类型:Internet/TencentCSS/StreamLive
|
16642
|
+
:type OutputType: str
|
16643
|
+
:param _RISTSettings: 输出的RIST的配置。
|
16644
|
+
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
|
16543
16645
|
"""
|
16544
16646
|
self._OutputName = None
|
16545
16647
|
self._Description = None
|
@@ -16552,6 +16654,8 @@ class CreateOutputInfo(AbstractModel):
|
|
16552
16654
|
self._MaxConcurrent = None
|
16553
16655
|
self._SecurityGroupIds = None
|
16554
16656
|
self._Zones = None
|
16657
|
+
self._OutputType = None
|
16658
|
+
self._RISTSettings = None
|
16555
16659
|
|
16556
16660
|
@property
|
16557
16661
|
def OutputName(self):
|
@@ -16577,7 +16681,7 @@ class CreateOutputInfo(AbstractModel):
|
|
16577
16681
|
|
16578
16682
|
@property
|
16579
16683
|
def Protocol(self):
|
16580
|
-
"""
|
16684
|
+
"""输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP|RIST。
|
16581
16685
|
:rtype: str
|
16582
16686
|
"""
|
16583
16687
|
return self._Protocol
|
@@ -16675,6 +16779,28 @@ class CreateOutputInfo(AbstractModel):
|
|
16675
16779
|
def Zones(self, Zones):
|
16676
16780
|
self._Zones = Zones
|
16677
16781
|
|
16782
|
+
@property
|
16783
|
+
def OutputType(self):
|
16784
|
+
"""输出类型:Internet/TencentCSS/StreamLive
|
16785
|
+
:rtype: str
|
16786
|
+
"""
|
16787
|
+
return self._OutputType
|
16788
|
+
|
16789
|
+
@OutputType.setter
|
16790
|
+
def OutputType(self, OutputType):
|
16791
|
+
self._OutputType = OutputType
|
16792
|
+
|
16793
|
+
@property
|
16794
|
+
def RISTSettings(self):
|
16795
|
+
"""输出的RIST的配置。
|
16796
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
|
16797
|
+
"""
|
16798
|
+
return self._RISTSettings
|
16799
|
+
|
16800
|
+
@RISTSettings.setter
|
16801
|
+
def RISTSettings(self, RISTSettings):
|
16802
|
+
self._RISTSettings = RISTSettings
|
16803
|
+
|
16678
16804
|
|
16679
16805
|
def _deserialize(self, params):
|
16680
16806
|
self._OutputName = params.get("OutputName")
|
@@ -16694,6 +16820,10 @@ class CreateOutputInfo(AbstractModel):
|
|
16694
16820
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
16695
16821
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
16696
16822
|
self._Zones = params.get("Zones")
|
16823
|
+
self._OutputType = params.get("OutputType")
|
16824
|
+
if params.get("RISTSettings") is not None:
|
16825
|
+
self._RISTSettings = CreateOutputRistSettings()
|
16826
|
+
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
16697
16827
|
memeber_set = set(params.keys())
|
16698
16828
|
for name, value in vars(self).items():
|
16699
16829
|
property_name = name[1:]
|
@@ -16882,6 +17012,72 @@ class CreateOutputRTPSettingsDestinations(AbstractModel):
|
|
16882
17012
|
|
16883
17013
|
|
16884
17014
|
|
17015
|
+
class CreateOutputRistSettings(AbstractModel):
|
17016
|
+
"""创建媒体传输流的输出的RIST配置。
|
17017
|
+
|
17018
|
+
"""
|
17019
|
+
|
17020
|
+
def __init__(self):
|
17021
|
+
r"""
|
17022
|
+
:param _Mode: RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
17023
|
+
:type Mode: str
|
17024
|
+
:param _Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
17025
|
+
:type Profile: str
|
17026
|
+
:param _Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
17027
|
+
:type Buffer: int
|
17028
|
+
"""
|
17029
|
+
self._Mode = None
|
17030
|
+
self._Profile = None
|
17031
|
+
self._Buffer = None
|
17032
|
+
|
17033
|
+
@property
|
17034
|
+
def Mode(self):
|
17035
|
+
"""RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
17036
|
+
:rtype: str
|
17037
|
+
"""
|
17038
|
+
return self._Mode
|
17039
|
+
|
17040
|
+
@Mode.setter
|
17041
|
+
def Mode(self, Mode):
|
17042
|
+
self._Mode = Mode
|
17043
|
+
|
17044
|
+
@property
|
17045
|
+
def Profile(self):
|
17046
|
+
"""RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
17047
|
+
:rtype: str
|
17048
|
+
"""
|
17049
|
+
return self._Profile
|
17050
|
+
|
17051
|
+
@Profile.setter
|
17052
|
+
def Profile(self, Profile):
|
17053
|
+
self._Profile = Profile
|
17054
|
+
|
17055
|
+
@property
|
17056
|
+
def Buffer(self):
|
17057
|
+
"""RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
17058
|
+
:rtype: int
|
17059
|
+
"""
|
17060
|
+
return self._Buffer
|
17061
|
+
|
17062
|
+
@Buffer.setter
|
17063
|
+
def Buffer(self, Buffer):
|
17064
|
+
self._Buffer = Buffer
|
17065
|
+
|
17066
|
+
|
17067
|
+
def _deserialize(self, params):
|
17068
|
+
self._Mode = params.get("Mode")
|
17069
|
+
self._Profile = params.get("Profile")
|
17070
|
+
self._Buffer = params.get("Buffer")
|
17071
|
+
memeber_set = set(params.keys())
|
17072
|
+
for name, value in vars(self).items():
|
17073
|
+
property_name = name[1:]
|
17074
|
+
if property_name in memeber_set:
|
17075
|
+
memeber_set.remove(property_name)
|
17076
|
+
if len(memeber_set) > 0:
|
17077
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
17078
|
+
|
17079
|
+
|
17080
|
+
|
16885
17081
|
class CreateOutputRtmpSettingsDestinations(AbstractModel):
|
16886
17082
|
"""创建媒体传输流的输出的RTMP的目标地址。
|
16887
17083
|
|
@@ -22074,6 +22270,9 @@ class DescribeInput(AbstractModel):
|
|
22074
22270
|
:type SecurityGroupIds: list of str
|
22075
22271
|
:param _Zones: 可用区配置,开启容灾情况下最多有两个,顺序和pipeline 0、1对应,否则最多只有一个可用区。
|
22076
22272
|
:type Zones: list of str
|
22273
|
+
:param _RISTSettings: 输入的RIST配置信息。
|
22274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22275
|
+
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeInputRISTSettings`
|
22077
22276
|
"""
|
22078
22277
|
self._InputId = None
|
22079
22278
|
self._InputName = None
|
@@ -22092,6 +22291,7 @@ class DescribeInput(AbstractModel):
|
|
22092
22291
|
self._ResilientStream = None
|
22093
22292
|
self._SecurityGroupIds = None
|
22094
22293
|
self._Zones = None
|
22294
|
+
self._RISTSettings = None
|
22095
22295
|
|
22096
22296
|
@property
|
22097
22297
|
def InputId(self):
|
@@ -22289,6 +22489,18 @@ class DescribeInput(AbstractModel):
|
|
22289
22489
|
def Zones(self, Zones):
|
22290
22490
|
self._Zones = Zones
|
22291
22491
|
|
22492
|
+
@property
|
22493
|
+
def RISTSettings(self):
|
22494
|
+
"""输入的RIST配置信息。
|
22495
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22496
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DescribeInputRISTSettings`
|
22497
|
+
"""
|
22498
|
+
return self._RISTSettings
|
22499
|
+
|
22500
|
+
@RISTSettings.setter
|
22501
|
+
def RISTSettings(self, RISTSettings):
|
22502
|
+
self._RISTSettings = RISTSettings
|
22503
|
+
|
22292
22504
|
|
22293
22505
|
def _deserialize(self, params):
|
22294
22506
|
self._InputId = params.get("InputId")
|
@@ -22327,6 +22539,9 @@ class DescribeInput(AbstractModel):
|
|
22327
22539
|
self._ResilientStream._deserialize(params.get("ResilientStream"))
|
22328
22540
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
22329
22541
|
self._Zones = params.get("Zones")
|
22542
|
+
if params.get("RISTSettings") is not None:
|
22543
|
+
self._RISTSettings = DescribeInputRISTSettings()
|
22544
|
+
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
22330
22545
|
memeber_set = set(params.keys())
|
22331
22546
|
for name, value in vars(self).items():
|
22332
22547
|
property_name = name[1:]
|
@@ -22378,6 +22593,72 @@ class DescribeInputHLSPullSettings(AbstractModel):
|
|
22378
22593
|
|
22379
22594
|
|
22380
22595
|
|
22596
|
+
class DescribeInputRISTSettings(AbstractModel):
|
22597
|
+
"""查询输入的RIST配置信息。
|
22598
|
+
|
22599
|
+
"""
|
22600
|
+
|
22601
|
+
def __init__(self):
|
22602
|
+
r"""
|
22603
|
+
:param _Mode: RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
22604
|
+
:type Mode: str
|
22605
|
+
:param _Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
22606
|
+
:type Profile: str
|
22607
|
+
:param _Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
22608
|
+
:type Buffer: int
|
22609
|
+
"""
|
22610
|
+
self._Mode = None
|
22611
|
+
self._Profile = None
|
22612
|
+
self._Buffer = None
|
22613
|
+
|
22614
|
+
@property
|
22615
|
+
def Mode(self):
|
22616
|
+
"""RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
22617
|
+
:rtype: str
|
22618
|
+
"""
|
22619
|
+
return self._Mode
|
22620
|
+
|
22621
|
+
@Mode.setter
|
22622
|
+
def Mode(self, Mode):
|
22623
|
+
self._Mode = Mode
|
22624
|
+
|
22625
|
+
@property
|
22626
|
+
def Profile(self):
|
22627
|
+
"""RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
22628
|
+
:rtype: str
|
22629
|
+
"""
|
22630
|
+
return self._Profile
|
22631
|
+
|
22632
|
+
@Profile.setter
|
22633
|
+
def Profile(self, Profile):
|
22634
|
+
self._Profile = Profile
|
22635
|
+
|
22636
|
+
@property
|
22637
|
+
def Buffer(self):
|
22638
|
+
"""RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
22639
|
+
:rtype: int
|
22640
|
+
"""
|
22641
|
+
return self._Buffer
|
22642
|
+
|
22643
|
+
@Buffer.setter
|
22644
|
+
def Buffer(self, Buffer):
|
22645
|
+
self._Buffer = Buffer
|
22646
|
+
|
22647
|
+
|
22648
|
+
def _deserialize(self, params):
|
22649
|
+
self._Mode = params.get("Mode")
|
22650
|
+
self._Profile = params.get("Profile")
|
22651
|
+
self._Buffer = params.get("Buffer")
|
22652
|
+
memeber_set = set(params.keys())
|
22653
|
+
for name, value in vars(self).items():
|
22654
|
+
property_name = name[1:]
|
22655
|
+
if property_name in memeber_set:
|
22656
|
+
memeber_set.remove(property_name)
|
22657
|
+
if len(memeber_set) > 0:
|
22658
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22659
|
+
|
22660
|
+
|
22661
|
+
|
22381
22662
|
class DescribeInputRTMPPullSettings(AbstractModel):
|
22382
22663
|
"""查询输入的RTMP配置信息。
|
22383
22664
|
|
@@ -22866,6 +23147,9 @@ class DescribeOutput(AbstractModel):
|
|
22866
23147
|
:type SecurityGroupIds: list of str
|
22867
23148
|
:param _Zones: 可用区,output目前最多只支持一个。
|
22868
23149
|
:type Zones: list of str
|
23150
|
+
:param _RISTSettings: 输出的RIST配置信息。
|
23151
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23152
|
+
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeOutputRISTSettings`
|
22869
23153
|
"""
|
22870
23154
|
self._OutputId = None
|
22871
23155
|
self._OutputName = None
|
@@ -22884,6 +23168,7 @@ class DescribeOutput(AbstractModel):
|
|
22884
23168
|
self._MaxConcurrent = None
|
22885
23169
|
self._SecurityGroupIds = None
|
22886
23170
|
self._Zones = None
|
23171
|
+
self._RISTSettings = None
|
22887
23172
|
|
22888
23173
|
@property
|
22889
23174
|
def OutputId(self):
|
@@ -23083,6 +23368,18 @@ class DescribeOutput(AbstractModel):
|
|
23083
23368
|
def Zones(self, Zones):
|
23084
23369
|
self._Zones = Zones
|
23085
23370
|
|
23371
|
+
@property
|
23372
|
+
def RISTSettings(self):
|
23373
|
+
"""输出的RIST配置信息。
|
23374
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23375
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DescribeOutputRISTSettings`
|
23376
|
+
"""
|
23377
|
+
return self._RISTSettings
|
23378
|
+
|
23379
|
+
@RISTSettings.setter
|
23380
|
+
def RISTSettings(self, RISTSettings):
|
23381
|
+
self._RISTSettings = RISTSettings
|
23382
|
+
|
23086
23383
|
|
23087
23384
|
def _deserialize(self, params):
|
23088
23385
|
self._OutputId = params.get("OutputId")
|
@@ -23119,6 +23416,9 @@ class DescribeOutput(AbstractModel):
|
|
23119
23416
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
23120
23417
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
23121
23418
|
self._Zones = params.get("Zones")
|
23419
|
+
if params.get("RISTSettings") is not None:
|
23420
|
+
self._RISTSettings = DescribeOutputRISTSettings()
|
23421
|
+
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
23122
23422
|
memeber_set = set(params.keys())
|
23123
23423
|
for name, value in vars(self).items():
|
23124
23424
|
property_name = name[1:]
|
@@ -23208,6 +23508,94 @@ class DescribeOutputHLSPullSettings(AbstractModel):
|
|
23208
23508
|
|
23209
23509
|
|
23210
23510
|
|
23511
|
+
class DescribeOutputRISTSettings(AbstractModel):
|
23512
|
+
"""查询输出的RIST拉流配置信息。
|
23513
|
+
|
23514
|
+
"""
|
23515
|
+
|
23516
|
+
def __init__(self):
|
23517
|
+
r"""
|
23518
|
+
:param _Mode: RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
23519
|
+
:type Mode: str
|
23520
|
+
:param _Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
23521
|
+
:type Profile: str
|
23522
|
+
:param _Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
23523
|
+
:type Buffer: int
|
23524
|
+
:param _SourceAddresses: 服务器监听地址,RIST模式为LISTENER时使用。
|
23525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23526
|
+
:type SourceAddresses: list of OutputRISTSourceAddressResp
|
23527
|
+
"""
|
23528
|
+
self._Mode = None
|
23529
|
+
self._Profile = None
|
23530
|
+
self._Buffer = None
|
23531
|
+
self._SourceAddresses = None
|
23532
|
+
|
23533
|
+
@property
|
23534
|
+
def Mode(self):
|
23535
|
+
"""RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
23536
|
+
:rtype: str
|
23537
|
+
"""
|
23538
|
+
return self._Mode
|
23539
|
+
|
23540
|
+
@Mode.setter
|
23541
|
+
def Mode(self, Mode):
|
23542
|
+
self._Mode = Mode
|
23543
|
+
|
23544
|
+
@property
|
23545
|
+
def Profile(self):
|
23546
|
+
"""RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
23547
|
+
:rtype: str
|
23548
|
+
"""
|
23549
|
+
return self._Profile
|
23550
|
+
|
23551
|
+
@Profile.setter
|
23552
|
+
def Profile(self, Profile):
|
23553
|
+
self._Profile = Profile
|
23554
|
+
|
23555
|
+
@property
|
23556
|
+
def Buffer(self):
|
23557
|
+
"""RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
23558
|
+
:rtype: int
|
23559
|
+
"""
|
23560
|
+
return self._Buffer
|
23561
|
+
|
23562
|
+
@Buffer.setter
|
23563
|
+
def Buffer(self, Buffer):
|
23564
|
+
self._Buffer = Buffer
|
23565
|
+
|
23566
|
+
@property
|
23567
|
+
def SourceAddresses(self):
|
23568
|
+
"""服务器监听地址,RIST模式为LISTENER时使用。
|
23569
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23570
|
+
:rtype: list of OutputRISTSourceAddressResp
|
23571
|
+
"""
|
23572
|
+
return self._SourceAddresses
|
23573
|
+
|
23574
|
+
@SourceAddresses.setter
|
23575
|
+
def SourceAddresses(self, SourceAddresses):
|
23576
|
+
self._SourceAddresses = SourceAddresses
|
23577
|
+
|
23578
|
+
|
23579
|
+
def _deserialize(self, params):
|
23580
|
+
self._Mode = params.get("Mode")
|
23581
|
+
self._Profile = params.get("Profile")
|
23582
|
+
self._Buffer = params.get("Buffer")
|
23583
|
+
if params.get("SourceAddresses") is not None:
|
23584
|
+
self._SourceAddresses = []
|
23585
|
+
for item in params.get("SourceAddresses"):
|
23586
|
+
obj = OutputRISTSourceAddressResp()
|
23587
|
+
obj._deserialize(item)
|
23588
|
+
self._SourceAddresses.append(obj)
|
23589
|
+
memeber_set = set(params.keys())
|
23590
|
+
for name, value in vars(self).items():
|
23591
|
+
property_name = name[1:]
|
23592
|
+
if property_name in memeber_set:
|
23593
|
+
memeber_set.remove(property_name)
|
23594
|
+
if len(memeber_set) > 0:
|
23595
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23596
|
+
|
23597
|
+
|
23598
|
+
|
23211
23599
|
class DescribeOutputRTMPPullServerUrl(AbstractModel):
|
23212
23600
|
"""查询输出的RTMP拉流URL信息。
|
23213
23601
|
|
@@ -40163,7 +40551,7 @@ class ModifyInput(AbstractModel):
|
|
40163
40551
|
:type SRTSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputSRTSettings`
|
40164
40552
|
:param _RTPSettings: RTP的配置信息。
|
40165
40553
|
:type RTPSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputRTPSettings`
|
40166
|
-
:param _Protocol: 输入的协议,可选[SRT|RTP|RTMP]。
|
40554
|
+
:param _Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
|
40167
40555
|
当输出包含RTP时,输入只能是RTP。
|
40168
40556
|
当输出包含RTMP时,输入可以是SRT/RTMP。
|
40169
40557
|
当输出包含SRT时,输入只能是SRT。
|
@@ -40182,6 +40570,10 @@ class ModifyInput(AbstractModel):
|
|
40182
40570
|
:type SecurityGroupIds: list of str
|
40183
40571
|
:param _Zones: 可用区,非必填,最多支持输入两个可用区,对于需改接口,只要第二个可用区会参与到资源分配。如果input开启容灾或者涉及RTSP_PULL协议切换时有效(会重新分配地址)。
|
40184
40572
|
:type Zones: list of str
|
40573
|
+
:param _RISTSettings: RIST的配置信息。
|
40574
|
+
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateInputRISTSettings`
|
40575
|
+
:param _InputRegion: 输入节点的地区
|
40576
|
+
:type InputRegion: str
|
40185
40577
|
"""
|
40186
40578
|
self._InputId = None
|
40187
40579
|
self._InputName = None
|
@@ -40197,6 +40589,8 @@ class ModifyInput(AbstractModel):
|
|
40197
40589
|
self._ResilientStream = None
|
40198
40590
|
self._SecurityGroupIds = None
|
40199
40591
|
self._Zones = None
|
40592
|
+
self._RISTSettings = None
|
40593
|
+
self._InputRegion = None
|
40200
40594
|
|
40201
40595
|
@property
|
40202
40596
|
def InputId(self):
|
@@ -40266,7 +40660,7 @@ class ModifyInput(AbstractModel):
|
|
40266
40660
|
|
40267
40661
|
@property
|
40268
40662
|
def Protocol(self):
|
40269
|
-
"""输入的协议,可选[SRT|RTP|RTMP]。
|
40663
|
+
"""输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
|
40270
40664
|
当输出包含RTP时,输入只能是RTP。
|
40271
40665
|
当输出包含RTMP时,输入可以是SRT/RTMP。
|
40272
40666
|
当输出包含SRT时,输入只能是SRT。
|
@@ -40355,6 +40749,28 @@ class ModifyInput(AbstractModel):
|
|
40355
40749
|
def Zones(self, Zones):
|
40356
40750
|
self._Zones = Zones
|
40357
40751
|
|
40752
|
+
@property
|
40753
|
+
def RISTSettings(self):
|
40754
|
+
"""RIST的配置信息。
|
40755
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.CreateInputRISTSettings`
|
40756
|
+
"""
|
40757
|
+
return self._RISTSettings
|
40758
|
+
|
40759
|
+
@RISTSettings.setter
|
40760
|
+
def RISTSettings(self, RISTSettings):
|
40761
|
+
self._RISTSettings = RISTSettings
|
40762
|
+
|
40763
|
+
@property
|
40764
|
+
def InputRegion(self):
|
40765
|
+
"""输入节点的地区
|
40766
|
+
:rtype: str
|
40767
|
+
"""
|
40768
|
+
return self._InputRegion
|
40769
|
+
|
40770
|
+
@InputRegion.setter
|
40771
|
+
def InputRegion(self, InputRegion):
|
40772
|
+
self._InputRegion = InputRegion
|
40773
|
+
|
40358
40774
|
|
40359
40775
|
def _deserialize(self, params):
|
40360
40776
|
self._InputId = params.get("InputId")
|
@@ -40383,6 +40799,10 @@ class ModifyInput(AbstractModel):
|
|
40383
40799
|
self._ResilientStream._deserialize(params.get("ResilientStream"))
|
40384
40800
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
40385
40801
|
self._Zones = params.get("Zones")
|
40802
|
+
if params.get("RISTSettings") is not None:
|
40803
|
+
self._RISTSettings = CreateInputRISTSettings()
|
40804
|
+
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
40805
|
+
self._InputRegion = params.get("InputRegion")
|
40386
40806
|
memeber_set = set(params.keys())
|
40387
40807
|
for name, value in vars(self).items():
|
40388
40808
|
property_name = name[1:]
|
@@ -40406,7 +40826,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
40406
40826
|
:type OutputName: str
|
40407
40827
|
:param _Description: 输出的描述。
|
40408
40828
|
:type Description: str
|
40409
|
-
:param _Protocol: 输出的转推协议,支持SRT|RTP|RTMP。
|
40829
|
+
:param _Protocol: 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP|RIST。
|
40410
40830
|
:type Protocol: str
|
40411
40831
|
:param _SRTSettings: 转推SRT的配置。
|
40412
40832
|
:type SRTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputSRTSettings`
|
@@ -40423,6 +40843,8 @@ class ModifyOutputInfo(AbstractModel):
|
|
40423
40843
|
:type SecurityGroupIds: list of str
|
40424
40844
|
:param _Zones: 可用区
|
40425
40845
|
:type Zones: list of str
|
40846
|
+
:param _RISTSettings: 转推RIST的配置。
|
40847
|
+
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
|
40426
40848
|
"""
|
40427
40849
|
self._OutputId = None
|
40428
40850
|
self._OutputName = None
|
@@ -40435,6 +40857,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
40435
40857
|
self._MaxConcurrent = None
|
40436
40858
|
self._SecurityGroupIds = None
|
40437
40859
|
self._Zones = None
|
40860
|
+
self._RISTSettings = None
|
40438
40861
|
|
40439
40862
|
@property
|
40440
40863
|
def OutputId(self):
|
@@ -40471,7 +40894,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
40471
40894
|
|
40472
40895
|
@property
|
40473
40896
|
def Protocol(self):
|
40474
|
-
"""输出的转推协议,支持SRT|RTP|RTMP。
|
40897
|
+
"""输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP|RIST。
|
40475
40898
|
:rtype: str
|
40476
40899
|
"""
|
40477
40900
|
return self._Protocol
|
@@ -40558,6 +40981,17 @@ class ModifyOutputInfo(AbstractModel):
|
|
40558
40981
|
def Zones(self, Zones):
|
40559
40982
|
self._Zones = Zones
|
40560
40983
|
|
40984
|
+
@property
|
40985
|
+
def RISTSettings(self):
|
40986
|
+
"""转推RIST的配置。
|
40987
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
|
40988
|
+
"""
|
40989
|
+
return self._RISTSettings
|
40990
|
+
|
40991
|
+
@RISTSettings.setter
|
40992
|
+
def RISTSettings(self, RISTSettings):
|
40993
|
+
self._RISTSettings = RISTSettings
|
40994
|
+
|
40561
40995
|
|
40562
40996
|
def _deserialize(self, params):
|
40563
40997
|
self._OutputId = params.get("OutputId")
|
@@ -40577,6 +41011,9 @@ class ModifyOutputInfo(AbstractModel):
|
|
40577
41011
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
40578
41012
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
40579
41013
|
self._Zones = params.get("Zones")
|
41014
|
+
if params.get("RISTSettings") is not None:
|
41015
|
+
self._RISTSettings = CreateOutputRistSettings()
|
41016
|
+
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
40580
41017
|
memeber_set = set(params.keys())
|
40581
41018
|
for name, value in vars(self).items():
|
40582
41019
|
property_name = name[1:]
|
@@ -42915,6 +43352,61 @@ class OutputAddress(AbstractModel):
|
|
42915
43352
|
|
42916
43353
|
|
42917
43354
|
|
43355
|
+
class OutputRISTSourceAddressResp(AbstractModel):
|
43356
|
+
"""RIST输出的监听地址。
|
43357
|
+
|
43358
|
+
"""
|
43359
|
+
|
43360
|
+
def __init__(self):
|
43361
|
+
r"""
|
43362
|
+
:param _Ip: 监听IP。
|
43363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
43364
|
+
:type Ip: str
|
43365
|
+
:param _Port: 监听端口。
|
43366
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
43367
|
+
:type Port: int
|
43368
|
+
"""
|
43369
|
+
self._Ip = None
|
43370
|
+
self._Port = None
|
43371
|
+
|
43372
|
+
@property
|
43373
|
+
def Ip(self):
|
43374
|
+
"""监听IP。
|
43375
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
43376
|
+
:rtype: str
|
43377
|
+
"""
|
43378
|
+
return self._Ip
|
43379
|
+
|
43380
|
+
@Ip.setter
|
43381
|
+
def Ip(self, Ip):
|
43382
|
+
self._Ip = Ip
|
43383
|
+
|
43384
|
+
@property
|
43385
|
+
def Port(self):
|
43386
|
+
"""监听端口。
|
43387
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
43388
|
+
:rtype: int
|
43389
|
+
"""
|
43390
|
+
return self._Port
|
43391
|
+
|
43392
|
+
@Port.setter
|
43393
|
+
def Port(self, Port):
|
43394
|
+
self._Port = Port
|
43395
|
+
|
43396
|
+
|
43397
|
+
def _deserialize(self, params):
|
43398
|
+
self._Ip = params.get("Ip")
|
43399
|
+
self._Port = params.get("Port")
|
43400
|
+
memeber_set = set(params.keys())
|
43401
|
+
for name, value in vars(self).items():
|
43402
|
+
property_name = name[1:]
|
43403
|
+
if property_name in memeber_set:
|
43404
|
+
memeber_set.remove(property_name)
|
43405
|
+
if len(memeber_set) > 0:
|
43406
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
43407
|
+
|
43408
|
+
|
43409
|
+
|
42918
43410
|
class OutputSRTSourceAddressResp(AbstractModel):
|
42919
43411
|
"""SRT输出的监听地址。
|
42920
43412
|
|