tencentcloud-sdk-python 3.0.1361__py2.py3-none-any.whl → 3.0.1362__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/cdwpg/v20201230/models.py +0 -136
- tencentcloud/cwp/v20180228/models.py +138 -12
- tencentcloud/dlc/v20210125/models.py +0 -2
- tencentcloud/es/v20250101/es_client.py +23 -0
- tencentcloud/es/v20250101/models.py +356 -1
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +2 -20
- tencentcloud/gs/v20191118/gs_client.py +46 -0
- tencentcloud/gs/v20191118/models.py +385 -8
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +578 -0
- tencentcloud/lcic/v20220817/models.py +30 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +0 -6
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +0 -56
- tencentcloud/lighthouse/v20200324/models.py +0 -158
- tencentcloud/mps/v20190612/models.py +166 -15
- tencentcloud/oceanus/v20190422/models.py +2 -2
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/tione/v20211111/models.py +91 -0
- tencentcloud/trocket/v20230308/models.py +141 -88
- tencentcloud/trocket/v20230308/trocket_client.py +2 -1
- tencentcloud/vcube/v20220410/models.py +15 -0
- tencentcloud/vdb/v20230616/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +307 -78
- tencentcloud/vpc/v20170312/vpc_client.py +31 -3
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/top_level.txt +0 -0
@@ -1172,33 +1172,6 @@ class LighthouseClient(AbstractClient):
|
|
1172
1172
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1173
1173
|
|
1174
1174
|
|
1175
|
-
def DescribeInstanceLoginKeyPairAttribute(self, request):
|
1176
|
-
"""后端代码已与23年2月4号下线
|
1177
|
-
近90天无调用记录
|
1178
|
-
经评估,下线无风险,操作下线
|
1179
|
-
|
1180
|
-
本接口用于查询实例默认登录密钥属性。
|
1181
|
-
|
1182
|
-
:param request: Request instance for DescribeInstanceLoginKeyPairAttribute.
|
1183
|
-
:type request: :class:`tencentcloud.lighthouse.v20200324.models.DescribeInstanceLoginKeyPairAttributeRequest`
|
1184
|
-
:rtype: :class:`tencentcloud.lighthouse.v20200324.models.DescribeInstanceLoginKeyPairAttributeResponse`
|
1185
|
-
|
1186
|
-
"""
|
1187
|
-
try:
|
1188
|
-
params = request._serialize()
|
1189
|
-
headers = request.headers
|
1190
|
-
body = self.call("DescribeInstanceLoginKeyPairAttribute", params, headers=headers)
|
1191
|
-
response = json.loads(body)
|
1192
|
-
model = models.DescribeInstanceLoginKeyPairAttributeResponse()
|
1193
|
-
model._deserialize(response["Response"])
|
1194
|
-
return model
|
1195
|
-
except Exception as e:
|
1196
|
-
if isinstance(e, TencentCloudSDKException):
|
1197
|
-
raise
|
1198
|
-
else:
|
1199
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1200
|
-
|
1201
|
-
|
1202
1175
|
def DescribeInstanceVncUrl(self, request):
|
1203
1176
|
"""本接口 ( DescribeInstanceVncUrl ) 用于查询实例管理终端地址,获取的地址可用于实例的 VNC 登录。
|
1204
1177
|
|
@@ -2099,35 +2072,6 @@ class LighthouseClient(AbstractClient):
|
|
2099
2072
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2100
2073
|
|
2101
2074
|
|
2102
|
-
def ModifyInstancesLoginKeyPairAttribute(self, request):
|
2103
|
-
"""后端代码已与23年2月4号下线
|
2104
|
-
近90天只有一次调用记录,且明确返回前端接口下线错误信息
|
2105
|
-
|
2106
|
-
经评估无风险,操作接口下线
|
2107
|
-
|
2108
|
-
本接口用于设置实例默认登录密钥对属性。
|
2109
|
-
|
2110
|
-
|
2111
|
-
:param request: Request instance for ModifyInstancesLoginKeyPairAttribute.
|
2112
|
-
:type request: :class:`tencentcloud.lighthouse.v20200324.models.ModifyInstancesLoginKeyPairAttributeRequest`
|
2113
|
-
:rtype: :class:`tencentcloud.lighthouse.v20200324.models.ModifyInstancesLoginKeyPairAttributeResponse`
|
2114
|
-
|
2115
|
-
"""
|
2116
|
-
try:
|
2117
|
-
params = request._serialize()
|
2118
|
-
headers = request.headers
|
2119
|
-
body = self.call("ModifyInstancesLoginKeyPairAttribute", params, headers=headers)
|
2120
|
-
response = json.loads(body)
|
2121
|
-
model = models.ModifyInstancesLoginKeyPairAttributeResponse()
|
2122
|
-
model._deserialize(response["Response"])
|
2123
|
-
return model
|
2124
|
-
except Exception as e:
|
2125
|
-
if isinstance(e, TencentCloudSDKException):
|
2126
|
-
raise
|
2127
|
-
else:
|
2128
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2129
|
-
|
2130
|
-
|
2131
2075
|
def ModifyInstancesRenewFlag(self, request):
|
2132
2076
|
"""本接口 (ModifyInstancesRenewFlag) 用于修改包年包月实例续费标识。
|
2133
2077
|
|
@@ -6847,85 +6847,6 @@ class DescribeGeneralResourceQuotasResponse(AbstractModel):
|
|
6847
6847
|
self._RequestId = params.get("RequestId")
|
6848
6848
|
|
6849
6849
|
|
6850
|
-
class DescribeInstanceLoginKeyPairAttributeRequest(AbstractModel):
|
6851
|
-
"""DescribeInstanceLoginKeyPairAttribute请求参数结构体
|
6852
|
-
|
6853
|
-
"""
|
6854
|
-
|
6855
|
-
def __init__(self):
|
6856
|
-
r"""
|
6857
|
-
:param _InstanceId: 实例ID。
|
6858
|
-
:type InstanceId: str
|
6859
|
-
"""
|
6860
|
-
self._InstanceId = None
|
6861
|
-
|
6862
|
-
@property
|
6863
|
-
def InstanceId(self):
|
6864
|
-
"""实例ID。
|
6865
|
-
:rtype: str
|
6866
|
-
"""
|
6867
|
-
return self._InstanceId
|
6868
|
-
|
6869
|
-
@InstanceId.setter
|
6870
|
-
def InstanceId(self, InstanceId):
|
6871
|
-
self._InstanceId = InstanceId
|
6872
|
-
|
6873
|
-
|
6874
|
-
def _deserialize(self, params):
|
6875
|
-
self._InstanceId = params.get("InstanceId")
|
6876
|
-
memeber_set = set(params.keys())
|
6877
|
-
for name, value in vars(self).items():
|
6878
|
-
property_name = name[1:]
|
6879
|
-
if property_name in memeber_set:
|
6880
|
-
memeber_set.remove(property_name)
|
6881
|
-
if len(memeber_set) > 0:
|
6882
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6883
|
-
|
6884
|
-
|
6885
|
-
|
6886
|
-
class DescribeInstanceLoginKeyPairAttributeResponse(AbstractModel):
|
6887
|
-
"""DescribeInstanceLoginKeyPairAttribute返回参数结构体
|
6888
|
-
|
6889
|
-
"""
|
6890
|
-
|
6891
|
-
def __init__(self):
|
6892
|
-
r"""
|
6893
|
-
:param _PermitLogin: 是否允许使用默认密钥对登录,YES:允许登录 NO:禁止登录。
|
6894
|
-
:type PermitLogin: str
|
6895
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6896
|
-
:type RequestId: str
|
6897
|
-
"""
|
6898
|
-
self._PermitLogin = None
|
6899
|
-
self._RequestId = None
|
6900
|
-
|
6901
|
-
@property
|
6902
|
-
def PermitLogin(self):
|
6903
|
-
"""是否允许使用默认密钥对登录,YES:允许登录 NO:禁止登录。
|
6904
|
-
:rtype: str
|
6905
|
-
"""
|
6906
|
-
return self._PermitLogin
|
6907
|
-
|
6908
|
-
@PermitLogin.setter
|
6909
|
-
def PermitLogin(self, PermitLogin):
|
6910
|
-
self._PermitLogin = PermitLogin
|
6911
|
-
|
6912
|
-
@property
|
6913
|
-
def RequestId(self):
|
6914
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6915
|
-
:rtype: str
|
6916
|
-
"""
|
6917
|
-
return self._RequestId
|
6918
|
-
|
6919
|
-
@RequestId.setter
|
6920
|
-
def RequestId(self, RequestId):
|
6921
|
-
self._RequestId = RequestId
|
6922
|
-
|
6923
|
-
|
6924
|
-
def _deserialize(self, params):
|
6925
|
-
self._PermitLogin = params.get("PermitLogin")
|
6926
|
-
self._RequestId = params.get("RequestId")
|
6927
|
-
|
6928
|
-
|
6929
6850
|
class DescribeInstanceVncUrlRequest(AbstractModel):
|
6930
6851
|
"""DescribeInstanceVncUrl请求参数结构体
|
6931
6852
|
|
@@ -15205,85 +15126,6 @@ class ModifyInstancesBundleResponse(AbstractModel):
|
|
15205
15126
|
self._RequestId = params.get("RequestId")
|
15206
15127
|
|
15207
15128
|
|
15208
|
-
class ModifyInstancesLoginKeyPairAttributeRequest(AbstractModel):
|
15209
|
-
"""ModifyInstancesLoginKeyPairAttribute请求参数结构体
|
15210
|
-
|
15211
|
-
"""
|
15212
|
-
|
15213
|
-
def __init__(self):
|
15214
|
-
r"""
|
15215
|
-
:param _InstanceIds: 实例 ID 列表。每次请求批量实例的上限为 100。
|
15216
|
-
:type InstanceIds: list of str
|
15217
|
-
:param _PermitLogin: 是否允许使用默认密钥对登录,YES:允许登录;NO:禁止登录
|
15218
|
-
:type PermitLogin: str
|
15219
|
-
"""
|
15220
|
-
self._InstanceIds = None
|
15221
|
-
self._PermitLogin = None
|
15222
|
-
|
15223
|
-
@property
|
15224
|
-
def InstanceIds(self):
|
15225
|
-
"""实例 ID 列表。每次请求批量实例的上限为 100。
|
15226
|
-
:rtype: list of str
|
15227
|
-
"""
|
15228
|
-
return self._InstanceIds
|
15229
|
-
|
15230
|
-
@InstanceIds.setter
|
15231
|
-
def InstanceIds(self, InstanceIds):
|
15232
|
-
self._InstanceIds = InstanceIds
|
15233
|
-
|
15234
|
-
@property
|
15235
|
-
def PermitLogin(self):
|
15236
|
-
"""是否允许使用默认密钥对登录,YES:允许登录;NO:禁止登录
|
15237
|
-
:rtype: str
|
15238
|
-
"""
|
15239
|
-
return self._PermitLogin
|
15240
|
-
|
15241
|
-
@PermitLogin.setter
|
15242
|
-
def PermitLogin(self, PermitLogin):
|
15243
|
-
self._PermitLogin = PermitLogin
|
15244
|
-
|
15245
|
-
|
15246
|
-
def _deserialize(self, params):
|
15247
|
-
self._InstanceIds = params.get("InstanceIds")
|
15248
|
-
self._PermitLogin = params.get("PermitLogin")
|
15249
|
-
memeber_set = set(params.keys())
|
15250
|
-
for name, value in vars(self).items():
|
15251
|
-
property_name = name[1:]
|
15252
|
-
if property_name in memeber_set:
|
15253
|
-
memeber_set.remove(property_name)
|
15254
|
-
if len(memeber_set) > 0:
|
15255
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
15256
|
-
|
15257
|
-
|
15258
|
-
|
15259
|
-
class ModifyInstancesLoginKeyPairAttributeResponse(AbstractModel):
|
15260
|
-
"""ModifyInstancesLoginKeyPairAttribute返回参数结构体
|
15261
|
-
|
15262
|
-
"""
|
15263
|
-
|
15264
|
-
def __init__(self):
|
15265
|
-
r"""
|
15266
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15267
|
-
:type RequestId: str
|
15268
|
-
"""
|
15269
|
-
self._RequestId = None
|
15270
|
-
|
15271
|
-
@property
|
15272
|
-
def RequestId(self):
|
15273
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15274
|
-
:rtype: str
|
15275
|
-
"""
|
15276
|
-
return self._RequestId
|
15277
|
-
|
15278
|
-
@RequestId.setter
|
15279
|
-
def RequestId(self, RequestId):
|
15280
|
-
self._RequestId = RequestId
|
15281
|
-
|
15282
|
-
|
15283
|
-
def _deserialize(self, params):
|
15284
|
-
self._RequestId = params.get("RequestId")
|
15285
|
-
|
15286
|
-
|
15287
15129
|
class ModifyInstancesRenewFlagRequest(AbstractModel):
|
15288
15130
|
"""ModifyInstancesRenewFlag请求参数结构体
|
15289
15131
|
|
@@ -17482,6 +17482,10 @@ class CreateOutputInfo(AbstractModel):
|
|
17482
17482
|
:type Protocol: str
|
17483
17483
|
:param _OutputRegion: 输出地区。
|
17484
17484
|
:type OutputRegion: str
|
17485
|
+
:param _OutputType: 输出类型:Internet/TencentCSS
|
17486
|
+
:type OutputType: str
|
17487
|
+
:param _OutputKind: 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
|
17488
|
+
:type OutputKind: str
|
17485
17489
|
:param _SRTSettings: 输出的SRT的配置。
|
17486
17490
|
:type SRTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputSRTSettings`
|
17487
17491
|
:param _RTMPSettings: 输出的RTMP的配置。
|
@@ -17497,8 +17501,6 @@ class CreateOutputInfo(AbstractModel):
|
|
17497
17501
|
:type SecurityGroupIds: list of str
|
17498
17502
|
:param _Zones: 可用区,output最多只支持输入一个可用区。
|
17499
17503
|
:type Zones: list of str
|
17500
|
-
:param _OutputType: 输出类型:Internet/TencentCSS
|
17501
|
-
:type OutputType: str
|
17502
17504
|
:param _RISTSettings: 输出的RIST的配置。
|
17503
17505
|
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
|
17504
17506
|
:param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
|
@@ -17508,6 +17510,8 @@ class CreateOutputInfo(AbstractModel):
|
|
17508
17510
|
self._Description = None
|
17509
17511
|
self._Protocol = None
|
17510
17512
|
self._OutputRegion = None
|
17513
|
+
self._OutputType = None
|
17514
|
+
self._OutputKind = None
|
17511
17515
|
self._SRTSettings = None
|
17512
17516
|
self._RTMPSettings = None
|
17513
17517
|
self._RTPSettings = None
|
@@ -17515,7 +17519,6 @@ class CreateOutputInfo(AbstractModel):
|
|
17515
17519
|
self._MaxConcurrent = None
|
17516
17520
|
self._SecurityGroupIds = None
|
17517
17521
|
self._Zones = None
|
17518
|
-
self._OutputType = None
|
17519
17522
|
self._RISTSettings = None
|
17520
17523
|
self._PidSelector = None
|
17521
17524
|
|
@@ -17563,6 +17566,28 @@ class CreateOutputInfo(AbstractModel):
|
|
17563
17566
|
def OutputRegion(self, OutputRegion):
|
17564
17567
|
self._OutputRegion = OutputRegion
|
17565
17568
|
|
17569
|
+
@property
|
17570
|
+
def OutputType(self):
|
17571
|
+
"""输出类型:Internet/TencentCSS
|
17572
|
+
:rtype: str
|
17573
|
+
"""
|
17574
|
+
return self._OutputType
|
17575
|
+
|
17576
|
+
@OutputType.setter
|
17577
|
+
def OutputType(self, OutputType):
|
17578
|
+
self._OutputType = OutputType
|
17579
|
+
|
17580
|
+
@property
|
17581
|
+
def OutputKind(self):
|
17582
|
+
"""输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
|
17583
|
+
:rtype: str
|
17584
|
+
"""
|
17585
|
+
return self._OutputKind
|
17586
|
+
|
17587
|
+
@OutputKind.setter
|
17588
|
+
def OutputKind(self, OutputKind):
|
17589
|
+
self._OutputKind = OutputKind
|
17590
|
+
|
17566
17591
|
@property
|
17567
17592
|
def SRTSettings(self):
|
17568
17593
|
"""输出的SRT的配置。
|
@@ -17641,17 +17666,6 @@ class CreateOutputInfo(AbstractModel):
|
|
17641
17666
|
def Zones(self, Zones):
|
17642
17667
|
self._Zones = Zones
|
17643
17668
|
|
17644
|
-
@property
|
17645
|
-
def OutputType(self):
|
17646
|
-
"""输出类型:Internet/TencentCSS
|
17647
|
-
:rtype: str
|
17648
|
-
"""
|
17649
|
-
return self._OutputType
|
17650
|
-
|
17651
|
-
@OutputType.setter
|
17652
|
-
def OutputType(self, OutputType):
|
17653
|
-
self._OutputType = OutputType
|
17654
|
-
|
17655
17669
|
@property
|
17656
17670
|
def RISTSettings(self):
|
17657
17671
|
"""输出的RIST的配置。
|
@@ -17680,6 +17694,8 @@ class CreateOutputInfo(AbstractModel):
|
|
17680
17694
|
self._Description = params.get("Description")
|
17681
17695
|
self._Protocol = params.get("Protocol")
|
17682
17696
|
self._OutputRegion = params.get("OutputRegion")
|
17697
|
+
self._OutputType = params.get("OutputType")
|
17698
|
+
self._OutputKind = params.get("OutputKind")
|
17683
17699
|
if params.get("SRTSettings") is not None:
|
17684
17700
|
self._SRTSettings = CreateOutputSRTSettings()
|
17685
17701
|
self._SRTSettings._deserialize(params.get("SRTSettings"))
|
@@ -17693,7 +17709,6 @@ class CreateOutputInfo(AbstractModel):
|
|
17693
17709
|
self._MaxConcurrent = params.get("MaxConcurrent")
|
17694
17710
|
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
17695
17711
|
self._Zones = params.get("Zones")
|
17696
|
-
self._OutputType = params.get("OutputType")
|
17697
17712
|
if params.get("RISTSettings") is not None:
|
17698
17713
|
self._RISTSettings = CreateOutputRistSettings()
|
17699
17714
|
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
@@ -24508,6 +24523,8 @@ class DescribeInput(AbstractModel):
|
|
24508
24523
|
:param _RISTSettings: 输入的RIST配置信息。
|
24509
24524
|
注意:此字段可能返回 null,表示取不到有效值。
|
24510
24525
|
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeInputRISTSettings`
|
24526
|
+
:param _StreamUrls: 输入模块配置相关的URL信息,包含提供的推流地址,或者配置的第三方源流地址
|
24527
|
+
:type StreamUrls: list of StreamUrlDetail
|
24511
24528
|
"""
|
24512
24529
|
self._InputId = None
|
24513
24530
|
self._InputName = None
|
@@ -24527,6 +24544,7 @@ class DescribeInput(AbstractModel):
|
|
24527
24544
|
self._SecurityGroupIds = None
|
24528
24545
|
self._Zones = None
|
24529
24546
|
self._RISTSettings = None
|
24547
|
+
self._StreamUrls = None
|
24530
24548
|
|
24531
24549
|
@property
|
24532
24550
|
def InputId(self):
|
@@ -24736,6 +24754,17 @@ class DescribeInput(AbstractModel):
|
|
24736
24754
|
def RISTSettings(self, RISTSettings):
|
24737
24755
|
self._RISTSettings = RISTSettings
|
24738
24756
|
|
24757
|
+
@property
|
24758
|
+
def StreamUrls(self):
|
24759
|
+
"""输入模块配置相关的URL信息,包含提供的推流地址,或者配置的第三方源流地址
|
24760
|
+
:rtype: list of StreamUrlDetail
|
24761
|
+
"""
|
24762
|
+
return self._StreamUrls
|
24763
|
+
|
24764
|
+
@StreamUrls.setter
|
24765
|
+
def StreamUrls(self, StreamUrls):
|
24766
|
+
self._StreamUrls = StreamUrls
|
24767
|
+
|
24739
24768
|
|
24740
24769
|
def _deserialize(self, params):
|
24741
24770
|
self._InputId = params.get("InputId")
|
@@ -24777,6 +24806,12 @@ class DescribeInput(AbstractModel):
|
|
24777
24806
|
if params.get("RISTSettings") is not None:
|
24778
24807
|
self._RISTSettings = DescribeInputRISTSettings()
|
24779
24808
|
self._RISTSettings._deserialize(params.get("RISTSettings"))
|
24809
|
+
if params.get("StreamUrls") is not None:
|
24810
|
+
self._StreamUrls = []
|
24811
|
+
for item in params.get("StreamUrls"):
|
24812
|
+
obj = StreamUrlDetail()
|
24813
|
+
obj._deserialize(item)
|
24814
|
+
self._StreamUrls.append(obj)
|
24780
24815
|
memeber_set = set(params.keys())
|
24781
24816
|
for name, value in vars(self).items():
|
24782
24817
|
property_name = name[1:]
|
@@ -25506,6 +25541,8 @@ class DescribeOutput(AbstractModel):
|
|
25506
25541
|
:type OutputName: str
|
25507
25542
|
:param _OutputType: 输出类型。
|
25508
25543
|
:type OutputType: str
|
25544
|
+
:param _OutputKind: 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
|
25545
|
+
:type OutputKind: str
|
25509
25546
|
:param _Description: 输出描述。
|
25510
25547
|
注意:此字段可能返回 null,表示取不到有效值。
|
25511
25548
|
:type Description: str
|
@@ -25550,10 +25587,13 @@ class DescribeOutput(AbstractModel):
|
|
25550
25587
|
:type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeOutputRISTSettings`
|
25551
25588
|
:param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
|
25552
25589
|
:type PidSelector: :class:`tencentcloud.mps.v20190612.models.PidSelector`
|
25590
|
+
:param _StreamUrls: 输出模块配置,相关的URL,包括提供的拉流地址,或者配置的输出到第三方的转推地址
|
25591
|
+
:type StreamUrls: list of StreamUrlDetail
|
25553
25592
|
"""
|
25554
25593
|
self._OutputId = None
|
25555
25594
|
self._OutputName = None
|
25556
25595
|
self._OutputType = None
|
25596
|
+
self._OutputKind = None
|
25557
25597
|
self._Description = None
|
25558
25598
|
self._Protocol = None
|
25559
25599
|
self._OutputAddressList = None
|
@@ -25570,6 +25610,7 @@ class DescribeOutput(AbstractModel):
|
|
25570
25610
|
self._Zones = None
|
25571
25611
|
self._RISTSettings = None
|
25572
25612
|
self._PidSelector = None
|
25613
|
+
self._StreamUrls = None
|
25573
25614
|
|
25574
25615
|
@property
|
25575
25616
|
def OutputId(self):
|
@@ -25604,6 +25645,17 @@ class DescribeOutput(AbstractModel):
|
|
25604
25645
|
def OutputType(self, OutputType):
|
25605
25646
|
self._OutputType = OutputType
|
25606
25647
|
|
25648
|
+
@property
|
25649
|
+
def OutputKind(self):
|
25650
|
+
"""输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
|
25651
|
+
:rtype: str
|
25652
|
+
"""
|
25653
|
+
return self._OutputKind
|
25654
|
+
|
25655
|
+
@OutputKind.setter
|
25656
|
+
def OutputKind(self, OutputKind):
|
25657
|
+
self._OutputKind = OutputKind
|
25658
|
+
|
25607
25659
|
@property
|
25608
25660
|
def Description(self):
|
25609
25661
|
"""输出描述。
|
@@ -25792,11 +25844,23 @@ class DescribeOutput(AbstractModel):
|
|
25792
25844
|
def PidSelector(self, PidSelector):
|
25793
25845
|
self._PidSelector = PidSelector
|
25794
25846
|
|
25847
|
+
@property
|
25848
|
+
def StreamUrls(self):
|
25849
|
+
"""输出模块配置,相关的URL,包括提供的拉流地址,或者配置的输出到第三方的转推地址
|
25850
|
+
:rtype: list of StreamUrlDetail
|
25851
|
+
"""
|
25852
|
+
return self._StreamUrls
|
25853
|
+
|
25854
|
+
@StreamUrls.setter
|
25855
|
+
def StreamUrls(self, StreamUrls):
|
25856
|
+
self._StreamUrls = StreamUrls
|
25857
|
+
|
25795
25858
|
|
25796
25859
|
def _deserialize(self, params):
|
25797
25860
|
self._OutputId = params.get("OutputId")
|
25798
25861
|
self._OutputName = params.get("OutputName")
|
25799
25862
|
self._OutputType = params.get("OutputType")
|
25863
|
+
self._OutputKind = params.get("OutputKind")
|
25800
25864
|
self._Description = params.get("Description")
|
25801
25865
|
self._Protocol = params.get("Protocol")
|
25802
25866
|
if params.get("OutputAddressList") is not None:
|
@@ -25834,6 +25898,12 @@ class DescribeOutput(AbstractModel):
|
|
25834
25898
|
if params.get("PidSelector") is not None:
|
25835
25899
|
self._PidSelector = PidSelector()
|
25836
25900
|
self._PidSelector._deserialize(params.get("PidSelector"))
|
25901
|
+
if params.get("StreamUrls") is not None:
|
25902
|
+
self._StreamUrls = []
|
25903
|
+
for item in params.get("StreamUrls"):
|
25904
|
+
obj = StreamUrlDetail()
|
25905
|
+
obj._deserialize(item)
|
25906
|
+
self._StreamUrls.append(obj)
|
25837
25907
|
memeber_set = set(params.keys())
|
25838
25908
|
for name, value in vars(self).items():
|
25839
25909
|
property_name = name[1:]
|
@@ -44567,6 +44637,8 @@ class ModifyOutputInfo(AbstractModel):
|
|
44567
44637
|
:type Description: str
|
44568
44638
|
:param _Protocol: 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST。
|
44569
44639
|
:type Protocol: str
|
44640
|
+
:param _OutputKind: 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
|
44641
|
+
:type OutputKind: str
|
44570
44642
|
:param _SRTSettings: 转推SRT的配置。
|
44571
44643
|
:type SRTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputSRTSettings`
|
44572
44644
|
:param _RTPSettings: 转推RTP的配置。
|
@@ -44593,6 +44665,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
44593
44665
|
self._OutputName = None
|
44594
44666
|
self._Description = None
|
44595
44667
|
self._Protocol = None
|
44668
|
+
self._OutputKind = None
|
44596
44669
|
self._SRTSettings = None
|
44597
44670
|
self._RTPSettings = None
|
44598
44671
|
self._RTMPSettings = None
|
@@ -44648,6 +44721,17 @@ class ModifyOutputInfo(AbstractModel):
|
|
44648
44721
|
def Protocol(self, Protocol):
|
44649
44722
|
self._Protocol = Protocol
|
44650
44723
|
|
44724
|
+
@property
|
44725
|
+
def OutputKind(self):
|
44726
|
+
"""输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
|
44727
|
+
:rtype: str
|
44728
|
+
"""
|
44729
|
+
return self._OutputKind
|
44730
|
+
|
44731
|
+
@OutputKind.setter
|
44732
|
+
def OutputKind(self, OutputKind):
|
44733
|
+
self._OutputKind = OutputKind
|
44734
|
+
|
44651
44735
|
@property
|
44652
44736
|
def SRTSettings(self):
|
44653
44737
|
"""转推SRT的配置。
|
@@ -44765,6 +44849,7 @@ class ModifyOutputInfo(AbstractModel):
|
|
44765
44849
|
self._OutputName = params.get("OutputName")
|
44766
44850
|
self._Description = params.get("Description")
|
44767
44851
|
self._Protocol = params.get("Protocol")
|
44852
|
+
self._OutputKind = params.get("OutputKind")
|
44768
44853
|
if params.get("SRTSettings") is not None:
|
44769
44854
|
self._SRTSettings = CreateOutputSRTSettings()
|
44770
44855
|
self._SRTSettings._deserialize(params.get("SRTSettings"))
|
@@ -57090,6 +57175,72 @@ class StreamLinkRegionInfo(AbstractModel):
|
|
57090
57175
|
|
57091
57176
|
|
57092
57177
|
|
57178
|
+
class StreamUrlDetail(AbstractModel):
|
57179
|
+
"""描述 URL 的完整信息
|
57180
|
+
|
57181
|
+
"""
|
57182
|
+
|
57183
|
+
def __init__(self):
|
57184
|
+
r"""
|
57185
|
+
:param _Label: 会描述运营商信息等
|
57186
|
+
:type Label: str
|
57187
|
+
:param _Url: URL
|
57188
|
+
:type Url: str
|
57189
|
+
:param _Type: Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
|
57190
|
+
:type Type: str
|
57191
|
+
"""
|
57192
|
+
self._Label = None
|
57193
|
+
self._Url = None
|
57194
|
+
self._Type = None
|
57195
|
+
|
57196
|
+
@property
|
57197
|
+
def Label(self):
|
57198
|
+
"""会描述运营商信息等
|
57199
|
+
:rtype: str
|
57200
|
+
"""
|
57201
|
+
return self._Label
|
57202
|
+
|
57203
|
+
@Label.setter
|
57204
|
+
def Label(self, Label):
|
57205
|
+
self._Label = Label
|
57206
|
+
|
57207
|
+
@property
|
57208
|
+
def Url(self):
|
57209
|
+
"""URL
|
57210
|
+
:rtype: str
|
57211
|
+
"""
|
57212
|
+
return self._Url
|
57213
|
+
|
57214
|
+
@Url.setter
|
57215
|
+
def Url(self, Url):
|
57216
|
+
self._Url = Url
|
57217
|
+
|
57218
|
+
@property
|
57219
|
+
def Type(self):
|
57220
|
+
"""Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
|
57221
|
+
:rtype: str
|
57222
|
+
"""
|
57223
|
+
return self._Type
|
57224
|
+
|
57225
|
+
@Type.setter
|
57226
|
+
def Type(self, Type):
|
57227
|
+
self._Type = Type
|
57228
|
+
|
57229
|
+
|
57230
|
+
def _deserialize(self, params):
|
57231
|
+
self._Label = params.get("Label")
|
57232
|
+
self._Url = params.get("Url")
|
57233
|
+
self._Type = params.get("Type")
|
57234
|
+
memeber_set = set(params.keys())
|
57235
|
+
for name, value in vars(self).items():
|
57236
|
+
property_name = name[1:]
|
57237
|
+
if property_name in memeber_set:
|
57238
|
+
memeber_set.remove(property_name)
|
57239
|
+
if len(memeber_set) > 0:
|
57240
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
57241
|
+
|
57242
|
+
|
57243
|
+
|
57093
57244
|
class SubtitleTemplate(AbstractModel):
|
57094
57245
|
"""字幕流配置参数。
|
57095
57246
|
|
@@ -2573,7 +2573,7 @@ class CreateJobConfigRequest(AbstractModel):
|
|
2573
2573
|
:type JobId: str
|
2574
2574
|
:param _EntrypointClass: 主类
|
2575
2575
|
:type EntrypointClass: str
|
2576
|
-
:param _ProgramArgs:
|
2576
|
+
:param _ProgramArgs: 主类入参,需要区分下Sql作业配置,Jar作业配置,Python作业配置,具体参考下面的示例值
|
2577
2577
|
:type ProgramArgs: str
|
2578
2578
|
:param _Remark: 备注
|
2579
2579
|
:type Remark: str
|
@@ -2694,7 +2694,7 @@ class CreateJobConfigRequest(AbstractModel):
|
|
2694
2694
|
|
2695
2695
|
@property
|
2696
2696
|
def ProgramArgs(self):
|
2697
|
-
"""
|
2697
|
+
"""主类入参,需要区分下Sql作业配置,Jar作业配置,Python作业配置,具体参考下面的示例值
|
2698
2698
|
:rtype: str
|
2699
2699
|
"""
|
2700
2700
|
return self._ProgramArgs
|
@@ -2680,6 +2680,8 @@ class ServerBaseConfig(AbstractModel):
|
|
2680
2680
|
:type LogParseType: str
|
2681
2681
|
:param _Tag: 服务标签, function: 函数托管
|
2682
2682
|
:type Tag: str
|
2683
|
+
:param _InternalAccess: 内网访问开关 close | open
|
2684
|
+
:type InternalAccess: str
|
2683
2685
|
"""
|
2684
2686
|
self._EnvId = None
|
2685
2687
|
self._ServerName = None
|
@@ -2702,6 +2704,7 @@ class ServerBaseConfig(AbstractModel):
|
|
2702
2704
|
self._LogTopicId = None
|
2703
2705
|
self._LogParseType = None
|
2704
2706
|
self._Tag = None
|
2707
|
+
self._InternalAccess = None
|
2705
2708
|
|
2706
2709
|
@property
|
2707
2710
|
def EnvId(self):
|
@@ -2934,6 +2937,17 @@ class ServerBaseConfig(AbstractModel):
|
|
2934
2937
|
def Tag(self, Tag):
|
2935
2938
|
self._Tag = Tag
|
2936
2939
|
|
2940
|
+
@property
|
2941
|
+
def InternalAccess(self):
|
2942
|
+
"""内网访问开关 close | open
|
2943
|
+
:rtype: str
|
2944
|
+
"""
|
2945
|
+
return self._InternalAccess
|
2946
|
+
|
2947
|
+
@InternalAccess.setter
|
2948
|
+
def InternalAccess(self, InternalAccess):
|
2949
|
+
self._InternalAccess = InternalAccess
|
2950
|
+
|
2937
2951
|
|
2938
2952
|
def _deserialize(self, params):
|
2939
2953
|
self._EnvId = params.get("EnvId")
|
@@ -2962,6 +2976,7 @@ class ServerBaseConfig(AbstractModel):
|
|
2962
2976
|
self._LogTopicId = params.get("LogTopicId")
|
2963
2977
|
self._LogParseType = params.get("LogParseType")
|
2964
2978
|
self._Tag = params.get("Tag")
|
2979
|
+
self._InternalAccess = params.get("InternalAccess")
|
2965
2980
|
memeber_set = set(params.keys())
|
2966
2981
|
for name, value in vars(self).items():
|
2967
2982
|
property_name = name[1:]
|