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
@@ -14271,6 +14271,160 @@ class DescribeStudioProductResponse(AbstractModel):
|
|
14271
14271
|
self._RequestId = params.get("RequestId")
|
14272
14272
|
|
14273
14273
|
|
14274
|
+
class DescribeTWeSeeConfigRequest(AbstractModel):
|
14275
|
+
"""DescribeTWeSeeConfig请求参数结构体
|
14276
|
+
|
14277
|
+
"""
|
14278
|
+
|
14279
|
+
def __init__(self):
|
14280
|
+
r"""
|
14281
|
+
:param _ProductId: 产品ID
|
14282
|
+
:type ProductId: str
|
14283
|
+
:param _DeviceName: 设备名称
|
14284
|
+
:type DeviceName: str
|
14285
|
+
:param _UserId: 用户ID
|
14286
|
+
:type UserId: str
|
14287
|
+
:param _ChannelId: 通道ID
|
14288
|
+
:type ChannelId: int
|
14289
|
+
"""
|
14290
|
+
self._ProductId = None
|
14291
|
+
self._DeviceName = None
|
14292
|
+
self._UserId = None
|
14293
|
+
self._ChannelId = None
|
14294
|
+
|
14295
|
+
@property
|
14296
|
+
def ProductId(self):
|
14297
|
+
"""产品ID
|
14298
|
+
:rtype: str
|
14299
|
+
"""
|
14300
|
+
return self._ProductId
|
14301
|
+
|
14302
|
+
@ProductId.setter
|
14303
|
+
def ProductId(self, ProductId):
|
14304
|
+
self._ProductId = ProductId
|
14305
|
+
|
14306
|
+
@property
|
14307
|
+
def DeviceName(self):
|
14308
|
+
"""设备名称
|
14309
|
+
:rtype: str
|
14310
|
+
"""
|
14311
|
+
return self._DeviceName
|
14312
|
+
|
14313
|
+
@DeviceName.setter
|
14314
|
+
def DeviceName(self, DeviceName):
|
14315
|
+
self._DeviceName = DeviceName
|
14316
|
+
|
14317
|
+
@property
|
14318
|
+
def UserId(self):
|
14319
|
+
"""用户ID
|
14320
|
+
:rtype: str
|
14321
|
+
"""
|
14322
|
+
return self._UserId
|
14323
|
+
|
14324
|
+
@UserId.setter
|
14325
|
+
def UserId(self, UserId):
|
14326
|
+
self._UserId = UserId
|
14327
|
+
|
14328
|
+
@property
|
14329
|
+
def ChannelId(self):
|
14330
|
+
"""通道ID
|
14331
|
+
:rtype: int
|
14332
|
+
"""
|
14333
|
+
return self._ChannelId
|
14334
|
+
|
14335
|
+
@ChannelId.setter
|
14336
|
+
def ChannelId(self, ChannelId):
|
14337
|
+
self._ChannelId = ChannelId
|
14338
|
+
|
14339
|
+
|
14340
|
+
def _deserialize(self, params):
|
14341
|
+
self._ProductId = params.get("ProductId")
|
14342
|
+
self._DeviceName = params.get("DeviceName")
|
14343
|
+
self._UserId = params.get("UserId")
|
14344
|
+
self._ChannelId = params.get("ChannelId")
|
14345
|
+
memeber_set = set(params.keys())
|
14346
|
+
for name, value in vars(self).items():
|
14347
|
+
property_name = name[1:]
|
14348
|
+
if property_name in memeber_set:
|
14349
|
+
memeber_set.remove(property_name)
|
14350
|
+
if len(memeber_set) > 0:
|
14351
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
14352
|
+
|
14353
|
+
|
14354
|
+
|
14355
|
+
class DescribeTWeSeeConfigResponse(AbstractModel):
|
14356
|
+
"""DescribeTWeSeeConfig返回参数结构体
|
14357
|
+
|
14358
|
+
"""
|
14359
|
+
|
14360
|
+
def __init__(self):
|
14361
|
+
r"""
|
14362
|
+
:param _EnableSummary: 是否开启视频摘要
|
14363
|
+
:type EnableSummary: bool
|
14364
|
+
:param _EnableSearch: 是否开启视频搜索
|
14365
|
+
:type EnableSearch: bool
|
14366
|
+
:param _Config: 配置参数
|
14367
|
+
:type Config: str
|
14368
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14369
|
+
:type RequestId: str
|
14370
|
+
"""
|
14371
|
+
self._EnableSummary = None
|
14372
|
+
self._EnableSearch = None
|
14373
|
+
self._Config = None
|
14374
|
+
self._RequestId = None
|
14375
|
+
|
14376
|
+
@property
|
14377
|
+
def EnableSummary(self):
|
14378
|
+
"""是否开启视频摘要
|
14379
|
+
:rtype: bool
|
14380
|
+
"""
|
14381
|
+
return self._EnableSummary
|
14382
|
+
|
14383
|
+
@EnableSummary.setter
|
14384
|
+
def EnableSummary(self, EnableSummary):
|
14385
|
+
self._EnableSummary = EnableSummary
|
14386
|
+
|
14387
|
+
@property
|
14388
|
+
def EnableSearch(self):
|
14389
|
+
"""是否开启视频搜索
|
14390
|
+
:rtype: bool
|
14391
|
+
"""
|
14392
|
+
return self._EnableSearch
|
14393
|
+
|
14394
|
+
@EnableSearch.setter
|
14395
|
+
def EnableSearch(self, EnableSearch):
|
14396
|
+
self._EnableSearch = EnableSearch
|
14397
|
+
|
14398
|
+
@property
|
14399
|
+
def Config(self):
|
14400
|
+
"""配置参数
|
14401
|
+
:rtype: str
|
14402
|
+
"""
|
14403
|
+
return self._Config
|
14404
|
+
|
14405
|
+
@Config.setter
|
14406
|
+
def Config(self, Config):
|
14407
|
+
self._Config = Config
|
14408
|
+
|
14409
|
+
@property
|
14410
|
+
def RequestId(self):
|
14411
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14412
|
+
:rtype: str
|
14413
|
+
"""
|
14414
|
+
return self._RequestId
|
14415
|
+
|
14416
|
+
@RequestId.setter
|
14417
|
+
def RequestId(self, RequestId):
|
14418
|
+
self._RequestId = RequestId
|
14419
|
+
|
14420
|
+
|
14421
|
+
def _deserialize(self, params):
|
14422
|
+
self._EnableSummary = params.get("EnableSummary")
|
14423
|
+
self._EnableSearch = params.get("EnableSearch")
|
14424
|
+
self._Config = params.get("Config")
|
14425
|
+
self._RequestId = params.get("RequestId")
|
14426
|
+
|
14427
|
+
|
14274
14428
|
class DescribeTopicPolicyRequest(AbstractModel):
|
14275
14429
|
"""DescribeTopicPolicy请求参数结构体
|
14276
14430
|
|
@@ -19829,6 +19983,150 @@ class InstanceDetail(AbstractModel):
|
|
19829
19983
|
|
19830
19984
|
|
19831
19985
|
|
19986
|
+
class InvokeAISearchServiceRequest(AbstractModel):
|
19987
|
+
"""InvokeAISearchService请求参数结构体
|
19988
|
+
|
19989
|
+
"""
|
19990
|
+
|
19991
|
+
def __init__(self):
|
19992
|
+
r"""
|
19993
|
+
:param _ProductId: 产品ID
|
19994
|
+
:type ProductId: str
|
19995
|
+
:param _DeviceName: 设备名称
|
19996
|
+
:type DeviceName: str
|
19997
|
+
:param _Query: 自然语言查询
|
19998
|
+
:type Query: str
|
19999
|
+
:param _SummaryLang: 搜索结果总结的语言类型,支持的类型有:en-US、zh-CN、id-ID、th-TH
|
20000
|
+
:type SummaryLang: str
|
20001
|
+
"""
|
20002
|
+
self._ProductId = None
|
20003
|
+
self._DeviceName = None
|
20004
|
+
self._Query = None
|
20005
|
+
self._SummaryLang = None
|
20006
|
+
|
20007
|
+
@property
|
20008
|
+
def ProductId(self):
|
20009
|
+
"""产品ID
|
20010
|
+
:rtype: str
|
20011
|
+
"""
|
20012
|
+
return self._ProductId
|
20013
|
+
|
20014
|
+
@ProductId.setter
|
20015
|
+
def ProductId(self, ProductId):
|
20016
|
+
self._ProductId = ProductId
|
20017
|
+
|
20018
|
+
@property
|
20019
|
+
def DeviceName(self):
|
20020
|
+
"""设备名称
|
20021
|
+
:rtype: str
|
20022
|
+
"""
|
20023
|
+
return self._DeviceName
|
20024
|
+
|
20025
|
+
@DeviceName.setter
|
20026
|
+
def DeviceName(self, DeviceName):
|
20027
|
+
self._DeviceName = DeviceName
|
20028
|
+
|
20029
|
+
@property
|
20030
|
+
def Query(self):
|
20031
|
+
"""自然语言查询
|
20032
|
+
:rtype: str
|
20033
|
+
"""
|
20034
|
+
return self._Query
|
20035
|
+
|
20036
|
+
@Query.setter
|
20037
|
+
def Query(self, Query):
|
20038
|
+
self._Query = Query
|
20039
|
+
|
20040
|
+
@property
|
20041
|
+
def SummaryLang(self):
|
20042
|
+
"""搜索结果总结的语言类型,支持的类型有:en-US、zh-CN、id-ID、th-TH
|
20043
|
+
:rtype: str
|
20044
|
+
"""
|
20045
|
+
return self._SummaryLang
|
20046
|
+
|
20047
|
+
@SummaryLang.setter
|
20048
|
+
def SummaryLang(self, SummaryLang):
|
20049
|
+
self._SummaryLang = SummaryLang
|
20050
|
+
|
20051
|
+
|
20052
|
+
def _deserialize(self, params):
|
20053
|
+
self._ProductId = params.get("ProductId")
|
20054
|
+
self._DeviceName = params.get("DeviceName")
|
20055
|
+
self._Query = params.get("Query")
|
20056
|
+
self._SummaryLang = params.get("SummaryLang")
|
20057
|
+
memeber_set = set(params.keys())
|
20058
|
+
for name, value in vars(self).items():
|
20059
|
+
property_name = name[1:]
|
20060
|
+
if property_name in memeber_set:
|
20061
|
+
memeber_set.remove(property_name)
|
20062
|
+
if len(memeber_set) > 0:
|
20063
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20064
|
+
|
20065
|
+
|
20066
|
+
|
20067
|
+
class InvokeAISearchServiceResponse(AbstractModel):
|
20068
|
+
"""InvokeAISearchService返回参数结构体
|
20069
|
+
|
20070
|
+
"""
|
20071
|
+
|
20072
|
+
def __init__(self):
|
20073
|
+
r"""
|
20074
|
+
:param _Summary: 基于搜索结果的总结
|
20075
|
+
:type Summary: str
|
20076
|
+
:param _Targets: 视频结果集
|
20077
|
+
:type Targets: list of TargetInfo
|
20078
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20079
|
+
:type RequestId: str
|
20080
|
+
"""
|
20081
|
+
self._Summary = None
|
20082
|
+
self._Targets = None
|
20083
|
+
self._RequestId = None
|
20084
|
+
|
20085
|
+
@property
|
20086
|
+
def Summary(self):
|
20087
|
+
"""基于搜索结果的总结
|
20088
|
+
:rtype: str
|
20089
|
+
"""
|
20090
|
+
return self._Summary
|
20091
|
+
|
20092
|
+
@Summary.setter
|
20093
|
+
def Summary(self, Summary):
|
20094
|
+
self._Summary = Summary
|
20095
|
+
|
20096
|
+
@property
|
20097
|
+
def Targets(self):
|
20098
|
+
"""视频结果集
|
20099
|
+
:rtype: list of TargetInfo
|
20100
|
+
"""
|
20101
|
+
return self._Targets
|
20102
|
+
|
20103
|
+
@Targets.setter
|
20104
|
+
def Targets(self, Targets):
|
20105
|
+
self._Targets = Targets
|
20106
|
+
|
20107
|
+
@property
|
20108
|
+
def RequestId(self):
|
20109
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20110
|
+
:rtype: str
|
20111
|
+
"""
|
20112
|
+
return self._RequestId
|
20113
|
+
|
20114
|
+
@RequestId.setter
|
20115
|
+
def RequestId(self, RequestId):
|
20116
|
+
self._RequestId = RequestId
|
20117
|
+
|
20118
|
+
|
20119
|
+
def _deserialize(self, params):
|
20120
|
+
self._Summary = params.get("Summary")
|
20121
|
+
if params.get("Targets") is not None:
|
20122
|
+
self._Targets = []
|
20123
|
+
for item in params.get("Targets"):
|
20124
|
+
obj = TargetInfo()
|
20125
|
+
obj._deserialize(item)
|
20126
|
+
self._Targets.append(obj)
|
20127
|
+
self._RequestId = params.get("RequestId")
|
20128
|
+
|
20129
|
+
|
19832
20130
|
class InvokeCloudStorageAIServiceTaskRequest(AbstractModel):
|
19833
20131
|
"""InvokeCloudStorageAIServiceTask请求参数结构体
|
19834
20132
|
|
@@ -23705,6 +24003,160 @@ class ModifyStudioProductResponse(AbstractModel):
|
|
23705
24003
|
self._RequestId = params.get("RequestId")
|
23706
24004
|
|
23707
24005
|
|
24006
|
+
class ModifyTWeSeeConfigRequest(AbstractModel):
|
24007
|
+
"""ModifyTWeSeeConfig请求参数结构体
|
24008
|
+
|
24009
|
+
"""
|
24010
|
+
|
24011
|
+
def __init__(self):
|
24012
|
+
r"""
|
24013
|
+
:param _ProductId: 产品ID
|
24014
|
+
:type ProductId: str
|
24015
|
+
:param _DeviceName: 设备名称
|
24016
|
+
:type DeviceName: str
|
24017
|
+
:param _UserId: 用户ID
|
24018
|
+
:type UserId: str
|
24019
|
+
:param _ChannelId: 通道ID
|
24020
|
+
:type ChannelId: int
|
24021
|
+
:param _EnableSummary: 是否开启视频摘要,不传则不修改
|
24022
|
+
:type EnableSummary: bool
|
24023
|
+
:param _EnableSearch: 是否开启视频搜索,不传则不修改
|
24024
|
+
:type EnableSearch: bool
|
24025
|
+
:param _Config: 配置参数,不传则不修改
|
24026
|
+
:type Config: str
|
24027
|
+
"""
|
24028
|
+
self._ProductId = None
|
24029
|
+
self._DeviceName = None
|
24030
|
+
self._UserId = None
|
24031
|
+
self._ChannelId = None
|
24032
|
+
self._EnableSummary = None
|
24033
|
+
self._EnableSearch = None
|
24034
|
+
self._Config = None
|
24035
|
+
|
24036
|
+
@property
|
24037
|
+
def ProductId(self):
|
24038
|
+
"""产品ID
|
24039
|
+
:rtype: str
|
24040
|
+
"""
|
24041
|
+
return self._ProductId
|
24042
|
+
|
24043
|
+
@ProductId.setter
|
24044
|
+
def ProductId(self, ProductId):
|
24045
|
+
self._ProductId = ProductId
|
24046
|
+
|
24047
|
+
@property
|
24048
|
+
def DeviceName(self):
|
24049
|
+
"""设备名称
|
24050
|
+
:rtype: str
|
24051
|
+
"""
|
24052
|
+
return self._DeviceName
|
24053
|
+
|
24054
|
+
@DeviceName.setter
|
24055
|
+
def DeviceName(self, DeviceName):
|
24056
|
+
self._DeviceName = DeviceName
|
24057
|
+
|
24058
|
+
@property
|
24059
|
+
def UserId(self):
|
24060
|
+
"""用户ID
|
24061
|
+
:rtype: str
|
24062
|
+
"""
|
24063
|
+
return self._UserId
|
24064
|
+
|
24065
|
+
@UserId.setter
|
24066
|
+
def UserId(self, UserId):
|
24067
|
+
self._UserId = UserId
|
24068
|
+
|
24069
|
+
@property
|
24070
|
+
def ChannelId(self):
|
24071
|
+
"""通道ID
|
24072
|
+
:rtype: int
|
24073
|
+
"""
|
24074
|
+
return self._ChannelId
|
24075
|
+
|
24076
|
+
@ChannelId.setter
|
24077
|
+
def ChannelId(self, ChannelId):
|
24078
|
+
self._ChannelId = ChannelId
|
24079
|
+
|
24080
|
+
@property
|
24081
|
+
def EnableSummary(self):
|
24082
|
+
"""是否开启视频摘要,不传则不修改
|
24083
|
+
:rtype: bool
|
24084
|
+
"""
|
24085
|
+
return self._EnableSummary
|
24086
|
+
|
24087
|
+
@EnableSummary.setter
|
24088
|
+
def EnableSummary(self, EnableSummary):
|
24089
|
+
self._EnableSummary = EnableSummary
|
24090
|
+
|
24091
|
+
@property
|
24092
|
+
def EnableSearch(self):
|
24093
|
+
"""是否开启视频搜索,不传则不修改
|
24094
|
+
:rtype: bool
|
24095
|
+
"""
|
24096
|
+
return self._EnableSearch
|
24097
|
+
|
24098
|
+
@EnableSearch.setter
|
24099
|
+
def EnableSearch(self, EnableSearch):
|
24100
|
+
self._EnableSearch = EnableSearch
|
24101
|
+
|
24102
|
+
@property
|
24103
|
+
def Config(self):
|
24104
|
+
"""配置参数,不传则不修改
|
24105
|
+
:rtype: str
|
24106
|
+
"""
|
24107
|
+
return self._Config
|
24108
|
+
|
24109
|
+
@Config.setter
|
24110
|
+
def Config(self, Config):
|
24111
|
+
self._Config = Config
|
24112
|
+
|
24113
|
+
|
24114
|
+
def _deserialize(self, params):
|
24115
|
+
self._ProductId = params.get("ProductId")
|
24116
|
+
self._DeviceName = params.get("DeviceName")
|
24117
|
+
self._UserId = params.get("UserId")
|
24118
|
+
self._ChannelId = params.get("ChannelId")
|
24119
|
+
self._EnableSummary = params.get("EnableSummary")
|
24120
|
+
self._EnableSearch = params.get("EnableSearch")
|
24121
|
+
self._Config = params.get("Config")
|
24122
|
+
memeber_set = set(params.keys())
|
24123
|
+
for name, value in vars(self).items():
|
24124
|
+
property_name = name[1:]
|
24125
|
+
if property_name in memeber_set:
|
24126
|
+
memeber_set.remove(property_name)
|
24127
|
+
if len(memeber_set) > 0:
|
24128
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
24129
|
+
|
24130
|
+
|
24131
|
+
|
24132
|
+
class ModifyTWeSeeConfigResponse(AbstractModel):
|
24133
|
+
"""ModifyTWeSeeConfig返回参数结构体
|
24134
|
+
|
24135
|
+
"""
|
24136
|
+
|
24137
|
+
def __init__(self):
|
24138
|
+
r"""
|
24139
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
24140
|
+
:type RequestId: str
|
24141
|
+
"""
|
24142
|
+
self._RequestId = None
|
24143
|
+
|
24144
|
+
@property
|
24145
|
+
def RequestId(self):
|
24146
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
24147
|
+
:rtype: str
|
24148
|
+
"""
|
24149
|
+
return self._RequestId
|
24150
|
+
|
24151
|
+
@RequestId.setter
|
24152
|
+
def RequestId(self, RequestId):
|
24153
|
+
self._RequestId = RequestId
|
24154
|
+
|
24155
|
+
|
24156
|
+
def _deserialize(self, params):
|
24157
|
+
self._RequestId = params.get("RequestId")
|
24158
|
+
|
24159
|
+
|
23708
24160
|
class ModifyTopicPolicyRequest(AbstractModel):
|
23709
24161
|
"""ModifyTopicPolicy请求参数结构体
|
23710
24162
|
|
@@ -27636,6 +28088,132 @@ class TWeCallLicenseInfo(AbstractModel):
|
|
27636
28088
|
|
27637
28089
|
|
27638
28090
|
|
28091
|
+
class TargetInfo(AbstractModel):
|
28092
|
+
"""视频语义搜索结果
|
28093
|
+
|
28094
|
+
"""
|
28095
|
+
|
28096
|
+
def __init__(self):
|
28097
|
+
r"""
|
28098
|
+
:param _Id: 视频唯一ID
|
28099
|
+
:type Id: str
|
28100
|
+
:param _ProductId: 产品ID
|
28101
|
+
:type ProductId: str
|
28102
|
+
:param _DeviceName: 设备名称
|
28103
|
+
:type DeviceName: str
|
28104
|
+
:param _StartTimeMs: 视频起始时间(毫秒级Unix时间戳)
|
28105
|
+
:type StartTimeMs: int
|
28106
|
+
:param _EndTimeMs: 视频结束时间(毫秒级Unix时间戳)
|
28107
|
+
:type EndTimeMs: int
|
28108
|
+
:param _EventId: 用户自定义事件ID,后续扩展使用
|
28109
|
+
:type EventId: str
|
28110
|
+
:param _Summary: 视频内容摘要
|
28111
|
+
:type Summary: str
|
28112
|
+
"""
|
28113
|
+
self._Id = None
|
28114
|
+
self._ProductId = None
|
28115
|
+
self._DeviceName = None
|
28116
|
+
self._StartTimeMs = None
|
28117
|
+
self._EndTimeMs = None
|
28118
|
+
self._EventId = None
|
28119
|
+
self._Summary = None
|
28120
|
+
|
28121
|
+
@property
|
28122
|
+
def Id(self):
|
28123
|
+
"""视频唯一ID
|
28124
|
+
:rtype: str
|
28125
|
+
"""
|
28126
|
+
return self._Id
|
28127
|
+
|
28128
|
+
@Id.setter
|
28129
|
+
def Id(self, Id):
|
28130
|
+
self._Id = Id
|
28131
|
+
|
28132
|
+
@property
|
28133
|
+
def ProductId(self):
|
28134
|
+
"""产品ID
|
28135
|
+
:rtype: str
|
28136
|
+
"""
|
28137
|
+
return self._ProductId
|
28138
|
+
|
28139
|
+
@ProductId.setter
|
28140
|
+
def ProductId(self, ProductId):
|
28141
|
+
self._ProductId = ProductId
|
28142
|
+
|
28143
|
+
@property
|
28144
|
+
def DeviceName(self):
|
28145
|
+
"""设备名称
|
28146
|
+
:rtype: str
|
28147
|
+
"""
|
28148
|
+
return self._DeviceName
|
28149
|
+
|
28150
|
+
@DeviceName.setter
|
28151
|
+
def DeviceName(self, DeviceName):
|
28152
|
+
self._DeviceName = DeviceName
|
28153
|
+
|
28154
|
+
@property
|
28155
|
+
def StartTimeMs(self):
|
28156
|
+
"""视频起始时间(毫秒级Unix时间戳)
|
28157
|
+
:rtype: int
|
28158
|
+
"""
|
28159
|
+
return self._StartTimeMs
|
28160
|
+
|
28161
|
+
@StartTimeMs.setter
|
28162
|
+
def StartTimeMs(self, StartTimeMs):
|
28163
|
+
self._StartTimeMs = StartTimeMs
|
28164
|
+
|
28165
|
+
@property
|
28166
|
+
def EndTimeMs(self):
|
28167
|
+
"""视频结束时间(毫秒级Unix时间戳)
|
28168
|
+
:rtype: int
|
28169
|
+
"""
|
28170
|
+
return self._EndTimeMs
|
28171
|
+
|
28172
|
+
@EndTimeMs.setter
|
28173
|
+
def EndTimeMs(self, EndTimeMs):
|
28174
|
+
self._EndTimeMs = EndTimeMs
|
28175
|
+
|
28176
|
+
@property
|
28177
|
+
def EventId(self):
|
28178
|
+
"""用户自定义事件ID,后续扩展使用
|
28179
|
+
:rtype: str
|
28180
|
+
"""
|
28181
|
+
return self._EventId
|
28182
|
+
|
28183
|
+
@EventId.setter
|
28184
|
+
def EventId(self, EventId):
|
28185
|
+
self._EventId = EventId
|
28186
|
+
|
28187
|
+
@property
|
28188
|
+
def Summary(self):
|
28189
|
+
"""视频内容摘要
|
28190
|
+
:rtype: str
|
28191
|
+
"""
|
28192
|
+
return self._Summary
|
28193
|
+
|
28194
|
+
@Summary.setter
|
28195
|
+
def Summary(self, Summary):
|
28196
|
+
self._Summary = Summary
|
28197
|
+
|
28198
|
+
|
28199
|
+
def _deserialize(self, params):
|
28200
|
+
self._Id = params.get("Id")
|
28201
|
+
self._ProductId = params.get("ProductId")
|
28202
|
+
self._DeviceName = params.get("DeviceName")
|
28203
|
+
self._StartTimeMs = params.get("StartTimeMs")
|
28204
|
+
self._EndTimeMs = params.get("EndTimeMs")
|
28205
|
+
self._EventId = params.get("EventId")
|
28206
|
+
self._Summary = params.get("Summary")
|
28207
|
+
memeber_set = set(params.keys())
|
28208
|
+
for name, value in vars(self).items():
|
28209
|
+
property_name = name[1:]
|
28210
|
+
if property_name in memeber_set:
|
28211
|
+
memeber_set.remove(property_name)
|
28212
|
+
if len(memeber_set) > 0:
|
28213
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
28214
|
+
|
28215
|
+
|
28216
|
+
|
27639
28217
|
class ThumbnailURLInfoList(AbstractModel):
|
27640
28218
|
"""缩略图信息
|
27641
28219
|
|
@@ -6284,6 +6284,8 @@ class DescribeRoomResponse(AbstractModel):
|
|
6284
6284
|
:type RecordLayout: int
|
6285
6285
|
:param _WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
|
6286
6286
|
:type WhiteBoardSnapshotMode: int
|
6287
|
+
:param _SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
|
6288
|
+
:type SubtitlesTranscription: int
|
6287
6289
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6288
6290
|
:type RequestId: str
|
6289
6291
|
"""
|
@@ -6320,6 +6322,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
6320
6322
|
self._RecordStream = None
|
6321
6323
|
self._RecordLayout = None
|
6322
6324
|
self._WhiteBoardSnapshotMode = None
|
6325
|
+
self._SubtitlesTranscription = None
|
6323
6326
|
self._RequestId = None
|
6324
6327
|
|
6325
6328
|
@property
|
@@ -6697,6 +6700,17 @@ class DescribeRoomResponse(AbstractModel):
|
|
6697
6700
|
def WhiteBoardSnapshotMode(self, WhiteBoardSnapshotMode):
|
6698
6701
|
self._WhiteBoardSnapshotMode = WhiteBoardSnapshotMode
|
6699
6702
|
|
6703
|
+
@property
|
6704
|
+
def SubtitlesTranscription(self):
|
6705
|
+
"""字幕转写功能开关:0关闭,1开启,默认关闭
|
6706
|
+
:rtype: int
|
6707
|
+
"""
|
6708
|
+
return self._SubtitlesTranscription
|
6709
|
+
|
6710
|
+
@SubtitlesTranscription.setter
|
6711
|
+
def SubtitlesTranscription(self, SubtitlesTranscription):
|
6712
|
+
self._SubtitlesTranscription = SubtitlesTranscription
|
6713
|
+
|
6700
6714
|
@property
|
6701
6715
|
def RequestId(self):
|
6702
6716
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -6743,6 +6757,7 @@ class DescribeRoomResponse(AbstractModel):
|
|
6743
6757
|
self._RecordStream = params.get("RecordStream")
|
6744
6758
|
self._RecordLayout = params.get("RecordLayout")
|
6745
6759
|
self._WhiteBoardSnapshotMode = params.get("WhiteBoardSnapshotMode")
|
6760
|
+
self._SubtitlesTranscription = params.get("SubtitlesTranscription")
|
6746
6761
|
self._RequestId = params.get("RequestId")
|
6747
6762
|
|
6748
6763
|
|
@@ -10546,6 +10561,8 @@ video 纯视频
|
|
10546
10561
|
:type RecordLang: str
|
10547
10562
|
:param _WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
|
10548
10563
|
:type WhiteBoardSnapshotMode: int
|
10564
|
+
:param _SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
|
10565
|
+
:type SubtitlesTranscription: int
|
10549
10566
|
"""
|
10550
10567
|
self._RoomId = None
|
10551
10568
|
self._SdkAppId = None
|
@@ -10574,6 +10591,7 @@ video 纯视频
|
|
10574
10591
|
self._RecordScene = None
|
10575
10592
|
self._RecordLang = None
|
10576
10593
|
self._WhiteBoardSnapshotMode = None
|
10594
|
+
self._SubtitlesTranscription = None
|
10577
10595
|
|
10578
10596
|
@property
|
10579
10597
|
def RoomId(self):
|
@@ -10895,6 +10913,17 @@ video 纯视频
|
|
10895
10913
|
def WhiteBoardSnapshotMode(self, WhiteBoardSnapshotMode):
|
10896
10914
|
self._WhiteBoardSnapshotMode = WhiteBoardSnapshotMode
|
10897
10915
|
|
10916
|
+
@property
|
10917
|
+
def SubtitlesTranscription(self):
|
10918
|
+
"""字幕转写功能开关:0关闭,1开启,默认关闭
|
10919
|
+
:rtype: int
|
10920
|
+
"""
|
10921
|
+
return self._SubtitlesTranscription
|
10922
|
+
|
10923
|
+
@SubtitlesTranscription.setter
|
10924
|
+
def SubtitlesTranscription(self, SubtitlesTranscription):
|
10925
|
+
self._SubtitlesTranscription = SubtitlesTranscription
|
10926
|
+
|
10898
10927
|
|
10899
10928
|
def _deserialize(self, params):
|
10900
10929
|
self._RoomId = params.get("RoomId")
|
@@ -10924,6 +10953,7 @@ video 纯视频
|
|
10924
10953
|
self._RecordScene = params.get("RecordScene")
|
10925
10954
|
self._RecordLang = params.get("RecordLang")
|
10926
10955
|
self._WhiteBoardSnapshotMode = params.get("WhiteBoardSnapshotMode")
|
10956
|
+
self._SubtitlesTranscription = params.get("SubtitlesTranscription")
|
10927
10957
|
memeber_set = set(params.keys())
|
10928
10958
|
for name, value in vars(self).items():
|
10929
10959
|
property_name = name[1:]
|
@@ -350,9 +350,6 @@ INVALIDPARAMETERVALUE_INVALIDDISKSIZE = 'InvalidParameterValue.InvalidDiskSize'
|
|
350
350
|
# 云硬盘类型非法。
|
351
351
|
INVALIDPARAMETERVALUE_INVALIDDISKTYPE = 'InvalidParameterValue.InvalidDiskType'
|
352
352
|
|
353
|
-
# 设置是否使用默认密钥对登录的值不正确。
|
354
|
-
INVALIDPARAMETERVALUE_INVALIDINSTANCELOGINKEYPAIRPERMITLOGIN = 'InvalidParameterValue.InvalidInstanceLoginKeyPairPermitLogin'
|
355
|
-
|
356
353
|
# 参数值非法,IP 地址格式非法。
|
357
354
|
INVALIDPARAMETERVALUE_INVALIDIPFORMAT = 'InvalidParameterValue.InvalidIpFormat'
|
358
355
|
|
@@ -767,9 +764,6 @@ UNSUPPORTEDOPERATION_OPERATIONNOTSUPPORTAUTOGENERATEPASSWORD = 'UnsupportedOpera
|
|
767
764
|
# 国际站不支持该操作。
|
768
765
|
UNSUPPORTEDOPERATION_OPERATIONNOTSUPPORTEDININTLSITE = 'UnsupportedOperation.OperationNotSupportedInIntlSite'
|
769
766
|
|
770
|
-
# 此接口已下线。
|
771
|
-
UNSUPPORTEDOPERATION_OPERATIONOFFLINE = 'UnsupportedOperation.OperationOffline'
|
772
|
-
|
773
767
|
# 计费资源中心删除资源失败。
|
774
768
|
UNSUPPORTEDOPERATION_POSTDESTROYRESOURCEFAILED = 'UnsupportedOperation.PostDestroyResourceFailed'
|
775
769
|
|