tencentcloud-sdk-python 3.0.1318__py2.py3-none-any.whl → 3.0.1320__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/antiddos/v20200309/antiddos_client.py +1 -1
- tencentcloud/antiddos/v20200309/models.py +42 -72
- tencentcloud/cbs/v20170312/models.py +45 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -0
- tencentcloud/cdb/v20170320/models.py +60 -18
- tencentcloud/csip/v20221121/models.py +0 -30
- tencentcloud/cwp/v20180228/models.py +17 -2
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +94 -14
- tencentcloud/live/v20180801/models.py +90 -0
- tencentcloud/lke/v20231130/models.py +34 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +2 -1
- tencentcloud/lkeap/v20240522/models.py +110 -0
- tencentcloud/ocr/v20181119/models.py +46 -16
- tencentcloud/postgres/v20170312/postgres_client.py +1 -1
- tencentcloud/rum/v20210622/models.py +4 -0
- tencentcloud/smh/v20210712/models.py +32 -8
- tencentcloud/ssl/v20191205/models.py +1461 -399
- tencentcloud/ssl/v20191205/ssl_client.py +6 -6
- tencentcloud/tdmq/v20200217/models.py +166 -0
- tencentcloud/teo/v20220901/models.py +10 -14
- tencentcloud/thpc/v20230321/models.py +30 -0
- tencentcloud/trocket/v20230308/models.py +218 -15
- tencentcloud/trocket/v20230308/trocket_client.py +1 -0
- tencentcloud/vpc/v20170312/models.py +20 -12
- tencentcloud/wedata/v20210820/models.py +39 -4
- tencentcloud/wedata/v20210820/wedata_client.py +8 -2
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1320.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1320.dist-info}/RECORD +33 -33
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1320.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1320.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1320.dist-info}/top_level.txt +0 -0
@@ -21919,10 +21919,8 @@ class StatisticalFilter(AbstractModel):
|
|
21919
21919
|
1:发生次数高于固定值
|
21920
21920
|
2:发生次数高于周期平均值的百分之
|
21921
21921
|
3:发生次数高于用户平均值的百分之
|
21922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21923
21922
|
:type OperatorType: int
|
21924
21923
|
:param _Value: 统计值
|
21925
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21926
21924
|
:type Value: float
|
21927
21925
|
"""
|
21928
21926
|
self._OperatorType = None
|
@@ -21934,7 +21932,6 @@ class StatisticalFilter(AbstractModel):
|
|
21934
21932
|
1:发生次数高于固定值
|
21935
21933
|
2:发生次数高于周期平均值的百分之
|
21936
21934
|
3:发生次数高于用户平均值的百分之
|
21937
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21938
21935
|
:rtype: int
|
21939
21936
|
"""
|
21940
21937
|
return self._OperatorType
|
@@ -21946,7 +21943,6 @@ class StatisticalFilter(AbstractModel):
|
|
21946
21943
|
@property
|
21947
21944
|
def Value(self):
|
21948
21945
|
"""统计值
|
21949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21950
21946
|
:rtype: float
|
21951
21947
|
"""
|
21952
21948
|
return self._Value
|
@@ -23865,15 +23861,12 @@ class UebaRule(AbstractModel):
|
|
23865
23861
|
def __init__(self):
|
23866
23862
|
r"""
|
23867
23863
|
:param _RuleID: 策略id
|
23868
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23869
23864
|
:type RuleID: str
|
23870
23865
|
:param _RuleName: 规则名称
|
23871
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23872
23866
|
:type RuleName: str
|
23873
23867
|
:param _RuleType: 策略类型
|
23874
23868
|
0:系统策略
|
23875
23869
|
1:自定义策略
|
23876
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23877
23870
|
:type RuleType: int
|
23878
23871
|
:param _RuleLevel: 策略等级
|
23879
23872
|
0:提示
|
@@ -23881,36 +23874,26 @@ class UebaRule(AbstractModel):
|
|
23881
23874
|
2:中危
|
23882
23875
|
3:高危
|
23883
23876
|
4:严重
|
23884
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23885
23877
|
:type RuleLevel: int
|
23886
23878
|
:param _RuleContent: 策略内容
|
23887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23888
23879
|
:type RuleContent: str
|
23889
23880
|
:param _RuleStatus: 策略开关
|
23890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23891
23881
|
:type RuleStatus: bool
|
23892
23882
|
:param _HitCount: 命中次数
|
23893
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23894
23883
|
:type HitCount: int
|
23895
23884
|
:param _AppID: 所属账号Appid
|
23896
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23897
23885
|
:type AppID: str
|
23898
23886
|
:param _MemberID: 多账号,成员ID
|
23899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23900
23887
|
:type MemberID: str
|
23901
23888
|
:param _Uin: Uin
|
23902
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23903
23889
|
:type Uin: str
|
23904
23890
|
:param _Nickname: 昵称
|
23905
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23906
23891
|
:type Nickname: str
|
23907
23892
|
:param _CustomRuleDetail: 自定义规则具体内容
|
23908
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23909
23893
|
:type CustomRuleDetail: :class:`tencentcloud.csip.v20221121.models.UebaCustomRule`
|
23910
23894
|
:param _CloudType: 云类型
|
23911
23895
|
腾讯云:0
|
23912
23896
|
aws:1
|
23913
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23914
23897
|
:type CloudType: int
|
23915
23898
|
"""
|
23916
23899
|
self._RuleID = None
|
@@ -23930,7 +23913,6 @@ aws:1
|
|
23930
23913
|
@property
|
23931
23914
|
def RuleID(self):
|
23932
23915
|
"""策略id
|
23933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23934
23916
|
:rtype: str
|
23935
23917
|
"""
|
23936
23918
|
return self._RuleID
|
@@ -23942,7 +23924,6 @@ aws:1
|
|
23942
23924
|
@property
|
23943
23925
|
def RuleName(self):
|
23944
23926
|
"""规则名称
|
23945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23946
23927
|
:rtype: str
|
23947
23928
|
"""
|
23948
23929
|
return self._RuleName
|
@@ -23956,7 +23937,6 @@ aws:1
|
|
23956
23937
|
"""策略类型
|
23957
23938
|
0:系统策略
|
23958
23939
|
1:自定义策略
|
23959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23960
23940
|
:rtype: int
|
23961
23941
|
"""
|
23962
23942
|
return self._RuleType
|
@@ -23973,7 +23953,6 @@ aws:1
|
|
23973
23953
|
2:中危
|
23974
23954
|
3:高危
|
23975
23955
|
4:严重
|
23976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23977
23956
|
:rtype: int
|
23978
23957
|
"""
|
23979
23958
|
return self._RuleLevel
|
@@ -23985,7 +23964,6 @@ aws:1
|
|
23985
23964
|
@property
|
23986
23965
|
def RuleContent(self):
|
23987
23966
|
"""策略内容
|
23988
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23989
23967
|
:rtype: str
|
23990
23968
|
"""
|
23991
23969
|
return self._RuleContent
|
@@ -23997,7 +23975,6 @@ aws:1
|
|
23997
23975
|
@property
|
23998
23976
|
def RuleStatus(self):
|
23999
23977
|
"""策略开关
|
24000
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24001
23978
|
:rtype: bool
|
24002
23979
|
"""
|
24003
23980
|
return self._RuleStatus
|
@@ -24009,7 +23986,6 @@ aws:1
|
|
24009
23986
|
@property
|
24010
23987
|
def HitCount(self):
|
24011
23988
|
"""命中次数
|
24012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24013
23989
|
:rtype: int
|
24014
23990
|
"""
|
24015
23991
|
return self._HitCount
|
@@ -24021,7 +23997,6 @@ aws:1
|
|
24021
23997
|
@property
|
24022
23998
|
def AppID(self):
|
24023
23999
|
"""所属账号Appid
|
24024
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24025
24000
|
:rtype: str
|
24026
24001
|
"""
|
24027
24002
|
return self._AppID
|
@@ -24033,7 +24008,6 @@ aws:1
|
|
24033
24008
|
@property
|
24034
24009
|
def MemberID(self):
|
24035
24010
|
"""多账号,成员ID
|
24036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24037
24011
|
:rtype: str
|
24038
24012
|
"""
|
24039
24013
|
return self._MemberID
|
@@ -24045,7 +24019,6 @@ aws:1
|
|
24045
24019
|
@property
|
24046
24020
|
def Uin(self):
|
24047
24021
|
"""Uin
|
24048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24049
24022
|
:rtype: str
|
24050
24023
|
"""
|
24051
24024
|
return self._Uin
|
@@ -24057,7 +24030,6 @@ aws:1
|
|
24057
24030
|
@property
|
24058
24031
|
def Nickname(self):
|
24059
24032
|
"""昵称
|
24060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24061
24033
|
:rtype: str
|
24062
24034
|
"""
|
24063
24035
|
return self._Nickname
|
@@ -24069,7 +24041,6 @@ aws:1
|
|
24069
24041
|
@property
|
24070
24042
|
def CustomRuleDetail(self):
|
24071
24043
|
"""自定义规则具体内容
|
24072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24073
24044
|
:rtype: :class:`tencentcloud.csip.v20221121.models.UebaCustomRule`
|
24074
24045
|
"""
|
24075
24046
|
return self._CustomRuleDetail
|
@@ -24083,7 +24054,6 @@ aws:1
|
|
24083
24054
|
"""云类型
|
24084
24055
|
腾讯云:0
|
24085
24056
|
aws:1
|
24086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24087
24057
|
:rtype: int
|
24088
24058
|
"""
|
24089
24059
|
return self._CloudType
|
@@ -22285,7 +22285,7 @@ class DescribeAgentInstallCommandRequest(AbstractModel):
|
|
22285
22285
|
:type VpcId: str
|
22286
22286
|
:param _TagIds: 标签ID列表,IsCloud=false时才会生效
|
22287
22287
|
:type TagIds: list of int non-negative
|
22288
|
-
:param _ExpireDate:
|
22288
|
+
:param _ExpireDate: 命令有效期,非腾讯云时必填(已废弃,命令永久生效)
|
22289
22289
|
:type ExpireDate: str
|
22290
22290
|
:param _Vip: 代理方式接入的vip
|
22291
22291
|
:type Vip: str
|
@@ -22355,7 +22355,7 @@ class DescribeAgentInstallCommandRequest(AbstractModel):
|
|
22355
22355
|
|
22356
22356
|
@property
|
22357
22357
|
def ExpireDate(self):
|
22358
|
-
"""
|
22358
|
+
"""命令有效期,非腾讯云时必填(已废弃,命令永久生效)
|
22359
22359
|
:rtype: str
|
22360
22360
|
"""
|
22361
22361
|
return self._ExpireDate
|
@@ -84952,11 +84952,25 @@ class ModifyRiskDnsPolicyResponse(AbstractModel):
|
|
84952
84952
|
|
84953
84953
|
def __init__(self):
|
84954
84954
|
r"""
|
84955
|
+
:param _Repeat: 0:没有重复,1:和现有策略重复
|
84956
|
+
:type Repeat: int
|
84955
84957
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
84956
84958
|
:type RequestId: str
|
84957
84959
|
"""
|
84960
|
+
self._Repeat = None
|
84958
84961
|
self._RequestId = None
|
84959
84962
|
|
84963
|
+
@property
|
84964
|
+
def Repeat(self):
|
84965
|
+
"""0:没有重复,1:和现有策略重复
|
84966
|
+
:rtype: int
|
84967
|
+
"""
|
84968
|
+
return self._Repeat
|
84969
|
+
|
84970
|
+
@Repeat.setter
|
84971
|
+
def Repeat(self, Repeat):
|
84972
|
+
self._Repeat = Repeat
|
84973
|
+
|
84960
84974
|
@property
|
84961
84975
|
def RequestId(self):
|
84962
84976
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -84970,6 +84984,7 @@ class ModifyRiskDnsPolicyResponse(AbstractModel):
|
|
84970
84984
|
|
84971
84985
|
|
84972
84986
|
def _deserialize(self, params):
|
84987
|
+
self._Repeat = params.get("Repeat")
|
84973
84988
|
self._RequestId = params.get("RequestId")
|
84974
84989
|
|
84975
84990
|
|
@@ -876,6 +876,29 @@ class LcicClient(AbstractClient):
|
|
876
876
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
877
877
|
|
878
878
|
|
879
|
+
def DescribeRecordTask(self, request):
|
880
|
+
"""查询录制任务ID
|
881
|
+
|
882
|
+
:param request: Request instance for DescribeRecordTask.
|
883
|
+
:type request: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordTaskRequest`
|
884
|
+
:rtype: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordTaskResponse`
|
885
|
+
|
886
|
+
"""
|
887
|
+
try:
|
888
|
+
params = request._serialize()
|
889
|
+
headers = request.headers
|
890
|
+
body = self.call("DescribeRecordTask", params, headers=headers)
|
891
|
+
response = json.loads(body)
|
892
|
+
model = models.DescribeRecordTaskResponse()
|
893
|
+
model._deserialize(response["Response"])
|
894
|
+
return model
|
895
|
+
except Exception as e:
|
896
|
+
if isinstance(e, TencentCloudSDKException):
|
897
|
+
raise
|
898
|
+
else:
|
899
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
900
|
+
|
901
|
+
|
879
902
|
def DescribeRoom(self, request):
|
880
903
|
"""获取房间配置信息
|
881
904
|
|
@@ -269,22 +269,16 @@ class AppConfig(AbstractModel):
|
|
269
269
|
:param _ApplicationId: 应用ID
|
270
270
|
:type ApplicationId: str
|
271
271
|
:param _AppName: 应用名称
|
272
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
273
272
|
:type AppName: str
|
274
273
|
:param _State: 应用状态 1正常 2停用
|
275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
276
274
|
:type State: int
|
277
275
|
:param _AppVersion: 1试用 2轻量版 3标准版 4旗舰版
|
278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
279
276
|
:type AppVersion: int
|
280
277
|
:param _CreatedAt: 创建时间
|
281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
282
278
|
:type CreatedAt: str
|
283
279
|
:param _Callback: 回调
|
284
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
285
280
|
:type Callback: str
|
286
281
|
:param _CallbackKey: 回调Key
|
287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
288
282
|
:type CallbackKey: str
|
289
283
|
"""
|
290
284
|
self._ApplicationId = None
|
@@ -309,7 +303,6 @@ class AppConfig(AbstractModel):
|
|
309
303
|
@property
|
310
304
|
def AppName(self):
|
311
305
|
"""应用名称
|
312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
313
306
|
:rtype: str
|
314
307
|
"""
|
315
308
|
return self._AppName
|
@@ -321,7 +314,6 @@ class AppConfig(AbstractModel):
|
|
321
314
|
@property
|
322
315
|
def State(self):
|
323
316
|
"""应用状态 1正常 2停用
|
324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
325
317
|
:rtype: int
|
326
318
|
"""
|
327
319
|
return self._State
|
@@ -333,7 +325,6 @@ class AppConfig(AbstractModel):
|
|
333
325
|
@property
|
334
326
|
def AppVersion(self):
|
335
327
|
"""1试用 2轻量版 3标准版 4旗舰版
|
336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
337
328
|
:rtype: int
|
338
329
|
"""
|
339
330
|
return self._AppVersion
|
@@ -345,7 +336,6 @@ class AppConfig(AbstractModel):
|
|
345
336
|
@property
|
346
337
|
def CreatedAt(self):
|
347
338
|
"""创建时间
|
348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
349
339
|
:rtype: str
|
350
340
|
"""
|
351
341
|
return self._CreatedAt
|
@@ -357,7 +347,6 @@ class AppConfig(AbstractModel):
|
|
357
347
|
@property
|
358
348
|
def Callback(self):
|
359
349
|
"""回调
|
360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
361
350
|
:rtype: str
|
362
351
|
"""
|
363
352
|
return self._Callback
|
@@ -369,7 +358,6 @@ class AppConfig(AbstractModel):
|
|
369
358
|
@property
|
370
359
|
def CallbackKey(self):
|
371
360
|
"""回调Key
|
372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
373
361
|
:rtype: str
|
374
362
|
"""
|
375
363
|
return self._CallbackKey
|
@@ -501,7 +489,6 @@ class BackgroundPictureConfig(AbstractModel):
|
|
501
489
|
def __init__(self):
|
502
490
|
r"""
|
503
491
|
:param _Url: 背景图片的url
|
504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
505
492
|
:type Url: str
|
506
493
|
"""
|
507
494
|
self._Url = None
|
@@ -509,7 +496,6 @@ class BackgroundPictureConfig(AbstractModel):
|
|
509
496
|
@property
|
510
497
|
def Url(self):
|
511
498
|
"""背景图片的url
|
512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
513
499
|
:rtype: str
|
514
500
|
"""
|
515
501
|
return self._Url
|
@@ -5889,6 +5875,100 @@ class DescribeRecordStreamResponse(AbstractModel):
|
|
5889
5875
|
self._RequestId = params.get("RequestId")
|
5890
5876
|
|
5891
5877
|
|
5878
|
+
class DescribeRecordTaskRequest(AbstractModel):
|
5879
|
+
"""DescribeRecordTask请求参数结构体
|
5880
|
+
|
5881
|
+
"""
|
5882
|
+
|
5883
|
+
def __init__(self):
|
5884
|
+
r"""
|
5885
|
+
:param _SdkAppId: 学校ID
|
5886
|
+
:type SdkAppId: int
|
5887
|
+
:param _RoomId: 房间ID
|
5888
|
+
:type RoomId: int
|
5889
|
+
"""
|
5890
|
+
self._SdkAppId = None
|
5891
|
+
self._RoomId = None
|
5892
|
+
|
5893
|
+
@property
|
5894
|
+
def SdkAppId(self):
|
5895
|
+
"""学校ID
|
5896
|
+
:rtype: int
|
5897
|
+
"""
|
5898
|
+
return self._SdkAppId
|
5899
|
+
|
5900
|
+
@SdkAppId.setter
|
5901
|
+
def SdkAppId(self, SdkAppId):
|
5902
|
+
self._SdkAppId = SdkAppId
|
5903
|
+
|
5904
|
+
@property
|
5905
|
+
def RoomId(self):
|
5906
|
+
"""房间ID
|
5907
|
+
:rtype: int
|
5908
|
+
"""
|
5909
|
+
return self._RoomId
|
5910
|
+
|
5911
|
+
@RoomId.setter
|
5912
|
+
def RoomId(self, RoomId):
|
5913
|
+
self._RoomId = RoomId
|
5914
|
+
|
5915
|
+
|
5916
|
+
def _deserialize(self, params):
|
5917
|
+
self._SdkAppId = params.get("SdkAppId")
|
5918
|
+
self._RoomId = params.get("RoomId")
|
5919
|
+
memeber_set = set(params.keys())
|
5920
|
+
for name, value in vars(self).items():
|
5921
|
+
property_name = name[1:]
|
5922
|
+
if property_name in memeber_set:
|
5923
|
+
memeber_set.remove(property_name)
|
5924
|
+
if len(memeber_set) > 0:
|
5925
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5926
|
+
|
5927
|
+
|
5928
|
+
|
5929
|
+
class DescribeRecordTaskResponse(AbstractModel):
|
5930
|
+
"""DescribeRecordTask返回参数结构体
|
5931
|
+
|
5932
|
+
"""
|
5933
|
+
|
5934
|
+
def __init__(self):
|
5935
|
+
r"""
|
5936
|
+
:param _TaskId: 任务ID
|
5937
|
+
:type TaskId: str
|
5938
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5939
|
+
:type RequestId: str
|
5940
|
+
"""
|
5941
|
+
self._TaskId = None
|
5942
|
+
self._RequestId = None
|
5943
|
+
|
5944
|
+
@property
|
5945
|
+
def TaskId(self):
|
5946
|
+
"""任务ID
|
5947
|
+
:rtype: str
|
5948
|
+
"""
|
5949
|
+
return self._TaskId
|
5950
|
+
|
5951
|
+
@TaskId.setter
|
5952
|
+
def TaskId(self, TaskId):
|
5953
|
+
self._TaskId = TaskId
|
5954
|
+
|
5955
|
+
@property
|
5956
|
+
def RequestId(self):
|
5957
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5958
|
+
:rtype: str
|
5959
|
+
"""
|
5960
|
+
return self._RequestId
|
5961
|
+
|
5962
|
+
@RequestId.setter
|
5963
|
+
def RequestId(self, RequestId):
|
5964
|
+
self._RequestId = RequestId
|
5965
|
+
|
5966
|
+
|
5967
|
+
def _deserialize(self, params):
|
5968
|
+
self._TaskId = params.get("TaskId")
|
5969
|
+
self._RequestId = params.get("RequestId")
|
5970
|
+
|
5971
|
+
|
5892
5972
|
class DescribeRoomForbiddenUserRequest(AbstractModel):
|
5893
5973
|
"""DescribeRoomForbiddenUser请求参数结构体
|
5894
5974
|
|
@@ -1794,6 +1794,10 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1794
1794
|
:param _AudioAuditNotifyUrl: 音频审核回调 URL。
|
1795
1795
|
注意:此字段可能返回 null,表示取不到有效值。
|
1796
1796
|
:type AudioAuditNotifyUrl: str
|
1797
|
+
:param _RecordExceptionNotifyUrl: 录制异常回调 URL。
|
1798
|
+
:type RecordExceptionNotifyUrl: str
|
1799
|
+
:param _RecordExceptionLevels: 录制异常回调级别,可选择:error: 错误。alarm: 告警。
|
1800
|
+
:type RecordExceptionLevels: list of str
|
1797
1801
|
"""
|
1798
1802
|
self._TemplateId = None
|
1799
1803
|
self._TemplateName = None
|
@@ -1807,6 +1811,8 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1807
1811
|
self._CallbackKey = None
|
1808
1812
|
self._PushExceptionNotifyUrl = None
|
1809
1813
|
self._AudioAuditNotifyUrl = None
|
1814
|
+
self._RecordExceptionNotifyUrl = None
|
1815
|
+
self._RecordExceptionLevels = None
|
1810
1816
|
|
1811
1817
|
@property
|
1812
1818
|
def TemplateId(self):
|
@@ -1942,6 +1948,28 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1942
1948
|
def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
|
1943
1949
|
self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
|
1944
1950
|
|
1951
|
+
@property
|
1952
|
+
def RecordExceptionNotifyUrl(self):
|
1953
|
+
"""录制异常回调 URL。
|
1954
|
+
:rtype: str
|
1955
|
+
"""
|
1956
|
+
return self._RecordExceptionNotifyUrl
|
1957
|
+
|
1958
|
+
@RecordExceptionNotifyUrl.setter
|
1959
|
+
def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
|
1960
|
+
self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
|
1961
|
+
|
1962
|
+
@property
|
1963
|
+
def RecordExceptionLevels(self):
|
1964
|
+
"""录制异常回调级别,可选择:error: 错误。alarm: 告警。
|
1965
|
+
:rtype: list of str
|
1966
|
+
"""
|
1967
|
+
return self._RecordExceptionLevels
|
1968
|
+
|
1969
|
+
@RecordExceptionLevels.setter
|
1970
|
+
def RecordExceptionLevels(self, RecordExceptionLevels):
|
1971
|
+
self._RecordExceptionLevels = RecordExceptionLevels
|
1972
|
+
|
1945
1973
|
|
1946
1974
|
def _deserialize(self, params):
|
1947
1975
|
self._TemplateId = params.get("TemplateId")
|
@@ -1956,6 +1984,8 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1956
1984
|
self._CallbackKey = params.get("CallbackKey")
|
1957
1985
|
self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
|
1958
1986
|
self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
|
1987
|
+
self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
|
1988
|
+
self._RecordExceptionLevels = params.get("RecordExceptionLevels")
|
1959
1989
|
memeber_set = set(params.keys())
|
1960
1990
|
for name, value in vars(self).items():
|
1961
1991
|
property_name = name[1:]
|
@@ -6167,6 +6197,10 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6167
6197
|
:type PushExceptionNotifyUrl: str
|
6168
6198
|
:param _AudioAuditNotifyUrl: 音频审核回调 URL。
|
6169
6199
|
:type AudioAuditNotifyUrl: str
|
6200
|
+
:param _RecordExceptionNotifyUrl: 录制异常回调 URL。
|
6201
|
+
:type RecordExceptionNotifyUrl: str
|
6202
|
+
:param _RecordExceptionLevels: 录制异常回调级别,可选择:error、warning、info。
|
6203
|
+
:type RecordExceptionLevels: list of str
|
6170
6204
|
"""
|
6171
6205
|
self._TemplateName = None
|
6172
6206
|
self._Description = None
|
@@ -6180,6 +6214,8 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6180
6214
|
self._StreamMixNotifyUrl = None
|
6181
6215
|
self._PushExceptionNotifyUrl = None
|
6182
6216
|
self._AudioAuditNotifyUrl = None
|
6217
|
+
self._RecordExceptionNotifyUrl = None
|
6218
|
+
self._RecordExceptionLevels = None
|
6183
6219
|
|
6184
6220
|
@property
|
6185
6221
|
def TemplateName(self):
|
@@ -6324,6 +6360,28 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6324
6360
|
def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
|
6325
6361
|
self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
|
6326
6362
|
|
6363
|
+
@property
|
6364
|
+
def RecordExceptionNotifyUrl(self):
|
6365
|
+
"""录制异常回调 URL。
|
6366
|
+
:rtype: str
|
6367
|
+
"""
|
6368
|
+
return self._RecordExceptionNotifyUrl
|
6369
|
+
|
6370
|
+
@RecordExceptionNotifyUrl.setter
|
6371
|
+
def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
|
6372
|
+
self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
|
6373
|
+
|
6374
|
+
@property
|
6375
|
+
def RecordExceptionLevels(self):
|
6376
|
+
"""录制异常回调级别,可选择:error、warning、info。
|
6377
|
+
:rtype: list of str
|
6378
|
+
"""
|
6379
|
+
return self._RecordExceptionLevels
|
6380
|
+
|
6381
|
+
@RecordExceptionLevels.setter
|
6382
|
+
def RecordExceptionLevels(self, RecordExceptionLevels):
|
6383
|
+
self._RecordExceptionLevels = RecordExceptionLevels
|
6384
|
+
|
6327
6385
|
|
6328
6386
|
def _deserialize(self, params):
|
6329
6387
|
self._TemplateName = params.get("TemplateName")
|
@@ -6338,6 +6396,8 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6338
6396
|
self._StreamMixNotifyUrl = params.get("StreamMixNotifyUrl")
|
6339
6397
|
self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
|
6340
6398
|
self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
|
6399
|
+
self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
|
6400
|
+
self._RecordExceptionLevels = params.get("RecordExceptionLevels")
|
6341
6401
|
memeber_set = set(params.keys())
|
6342
6402
|
for name, value in vars(self).items():
|
6343
6403
|
property_name = name[1:]
|
@@ -28757,6 +28817,10 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28757
28817
|
:type PushExceptionNotifyUrl: str
|
28758
28818
|
:param _AudioAuditNotifyUrl: 音频审核回调 URL。
|
28759
28819
|
:type AudioAuditNotifyUrl: str
|
28820
|
+
:param _RecordExceptionNotifyUrl: 录制异常回调 URL。
|
28821
|
+
:type RecordExceptionNotifyUrl: str
|
28822
|
+
:param _RecordExceptionLevels: 录制异常回调级别,可选择:error、warning、info。
|
28823
|
+
:type RecordExceptionLevels: list of str
|
28760
28824
|
"""
|
28761
28825
|
self._TemplateId = None
|
28762
28826
|
self._TemplateName = None
|
@@ -28770,6 +28834,8 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28770
28834
|
self._CallbackKey = None
|
28771
28835
|
self._PushExceptionNotifyUrl = None
|
28772
28836
|
self._AudioAuditNotifyUrl = None
|
28837
|
+
self._RecordExceptionNotifyUrl = None
|
28838
|
+
self._RecordExceptionLevels = None
|
28773
28839
|
|
28774
28840
|
@property
|
28775
28841
|
def TemplateId(self):
|
@@ -28904,6 +28970,28 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28904
28970
|
def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
|
28905
28971
|
self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
|
28906
28972
|
|
28973
|
+
@property
|
28974
|
+
def RecordExceptionNotifyUrl(self):
|
28975
|
+
"""录制异常回调 URL。
|
28976
|
+
:rtype: str
|
28977
|
+
"""
|
28978
|
+
return self._RecordExceptionNotifyUrl
|
28979
|
+
|
28980
|
+
@RecordExceptionNotifyUrl.setter
|
28981
|
+
def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
|
28982
|
+
self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
|
28983
|
+
|
28984
|
+
@property
|
28985
|
+
def RecordExceptionLevels(self):
|
28986
|
+
"""录制异常回调级别,可选择:error、warning、info。
|
28987
|
+
:rtype: list of str
|
28988
|
+
"""
|
28989
|
+
return self._RecordExceptionLevels
|
28990
|
+
|
28991
|
+
@RecordExceptionLevels.setter
|
28992
|
+
def RecordExceptionLevels(self, RecordExceptionLevels):
|
28993
|
+
self._RecordExceptionLevels = RecordExceptionLevels
|
28994
|
+
|
28907
28995
|
|
28908
28996
|
def _deserialize(self, params):
|
28909
28997
|
self._TemplateId = params.get("TemplateId")
|
@@ -28918,6 +29006,8 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28918
29006
|
self._CallbackKey = params.get("CallbackKey")
|
28919
29007
|
self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
|
28920
29008
|
self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
|
29009
|
+
self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
|
29010
|
+
self._RecordExceptionLevels = params.get("RecordExceptionLevels")
|
28921
29011
|
memeber_set = set(params.keys())
|
28922
29012
|
for name, value in vars(self).items():
|
28923
29013
|
property_name = name[1:]
|
@@ -52,6 +52,12 @@ class AgentProcedure(AbstractModel):
|
|
52
52
|
:param _Elapsed: 当前请求执行时间, 单位 ms
|
53
53
|
注意:此字段可能返回 null,表示取不到有效值。
|
54
54
|
:type Elapsed: int
|
55
|
+
:param _NodeName: 工作流节点名称
|
56
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
57
|
+
:type NodeName: str
|
58
|
+
:param _ReplyIndex: 用于展示思考放在哪个回复气泡中
|
59
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
60
|
+
:type ReplyIndex: int
|
55
61
|
"""
|
56
62
|
self._Index = None
|
57
63
|
self._Name = None
|
@@ -62,6 +68,8 @@ class AgentProcedure(AbstractModel):
|
|
62
68
|
self._Switch = None
|
63
69
|
self._WorkflowName = None
|
64
70
|
self._Elapsed = None
|
71
|
+
self._NodeName = None
|
72
|
+
self._ReplyIndex = None
|
65
73
|
|
66
74
|
@property
|
67
75
|
def Index(self):
|
@@ -171,6 +179,30 @@ class AgentProcedure(AbstractModel):
|
|
171
179
|
def Elapsed(self, Elapsed):
|
172
180
|
self._Elapsed = Elapsed
|
173
181
|
|
182
|
+
@property
|
183
|
+
def NodeName(self):
|
184
|
+
"""工作流节点名称
|
185
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
186
|
+
:rtype: str
|
187
|
+
"""
|
188
|
+
return self._NodeName
|
189
|
+
|
190
|
+
@NodeName.setter
|
191
|
+
def NodeName(self, NodeName):
|
192
|
+
self._NodeName = NodeName
|
193
|
+
|
194
|
+
@property
|
195
|
+
def ReplyIndex(self):
|
196
|
+
"""用于展示思考放在哪个回复气泡中
|
197
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
198
|
+
:rtype: int
|
199
|
+
"""
|
200
|
+
return self._ReplyIndex
|
201
|
+
|
202
|
+
@ReplyIndex.setter
|
203
|
+
def ReplyIndex(self, ReplyIndex):
|
204
|
+
self._ReplyIndex = ReplyIndex
|
205
|
+
|
174
206
|
|
175
207
|
def _deserialize(self, params):
|
176
208
|
self._Index = params.get("Index")
|
@@ -184,6 +216,8 @@ class AgentProcedure(AbstractModel):
|
|
184
216
|
self._Switch = params.get("Switch")
|
185
217
|
self._WorkflowName = params.get("WorkflowName")
|
186
218
|
self._Elapsed = params.get("Elapsed")
|
219
|
+
self._NodeName = params.get("NodeName")
|
220
|
+
self._ReplyIndex = params.get("ReplyIndex")
|
187
221
|
memeber_set = set(params.keys())
|
188
222
|
for name, value in vars(self).items():
|
189
223
|
property_name = name[1:]
|
@@ -693,7 +693,8 @@ class LkeapClient(AbstractClient):
|
|
693
693
|
|
694
694
|
|
695
695
|
def UploadDocRealtime(self, request):
|
696
|
-
"""
|
696
|
+
"""用于上传实时文档内容。
|
697
|
+
实时文档在上传后可以立即通过SearchRealtime进行实时检索,适用于在会话中对文档进行问答的场景。
|
697
698
|
|
698
699
|
:param request: Request instance for UploadDocRealtime.
|
699
700
|
:type request: :class:`tencentcloud.lkeap.v20240522.models.UploadDocRealtimeRequest`
|