tencentcloud-sdk-python 3.0.1321__py2.py3-none-any.whl → 3.0.1323__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/aiart/v20221229/aiart_client.py +54 -0
- tencentcloud/aiart/v20221229/models.py +523 -0
- tencentcloud/billing/v20180709/billing_client.py +0 -75
- tencentcloud/billing/v20180709/models.py +2 -833
- tencentcloud/ckafka/v20190819/models.py +15 -0
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +0 -274
- tencentcloud/dcdb/v20180411/dcdb_client.py +46 -0
- tencentcloud/dcdb/v20180411/models.py +379 -0
- tencentcloud/dlc/v20210125/models.py +205 -10
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/facefusion/v20220927/facefusion_client.py +0 -1
- tencentcloud/faceid/v20180301/models.py +8 -6
- tencentcloud/gme/v20180711/models.py +0 -12
- tencentcloud/keewidb/v20220308/keewidb_client.py +1 -0
- tencentcloud/lcic/v20220817/models.py +0 -160
- tencentcloud/lighthouse/v20200324/models.py +4 -16
- tencentcloud/lke/v20231130/models.py +15 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +5 -5
- tencentcloud/lkeap/v20240522/models.py +4 -6
- tencentcloud/mna/v20210119/mna_client.py +46 -0
- tencentcloud/mna/v20210119/models.py +424 -0
- tencentcloud/monitor/v20230616/__init__.py +0 -0
- tencentcloud/monitor/v20230616/errorcodes.py +30 -0
- tencentcloud/monitor/v20230616/models.py +494 -0
- tencentcloud/monitor/v20230616/monitor_client.py +55 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +12 -0
- tencentcloud/mqtt/v20240516/models.py +2179 -651
- tencentcloud/mqtt/v20240516/mqtt_client.py +208 -0
- tencentcloud/ocr/v20181119/models.py +107 -2
- tencentcloud/ssl/v20191205/models.py +2 -2
- tencentcloud/taf/v20200210/errorcodes.py +0 -156
- tencentcloud/taf/v20200210/models.py +80 -1291
- tencentcloud/taf/v20200210/taf_client.py +0 -69
- tencentcloud/tcb/v20180608/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +6 -0
- tencentcloud/tione/v20211111/models.py +19 -0
- tencentcloud/trabbit/v20230418/models.py +15 -304
- tencentcloud/trtc/v20190722/models.py +0 -6
- tencentcloud/vclm/v20240523/errorcodes.py +0 -72
- tencentcloud/vclm/v20240523/models.py +1 -854
- tencentcloud/vclm/v20240523/vclm_client.py +0 -104
- tencentcloud/wedata/v20210820/models.py +298 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/RECORD +51 -47
- {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/top_level.txt +0 -0
@@ -2132,11 +2132,11 @@ class DetectAuthRequest(AbstractModel):
|
|
2132
2132
|
:type IntentionVerifyText: str
|
2133
2133
|
:param _IntentionQuestions: 意愿核身(语音播报+语音回答模式)使用的文案。
|
2134
2134
|
- 包括:系统语音播报的文本、需要核验的标准文本。
|
2135
|
-
-
|
2135
|
+
- 问答模式支持1-10轮(不超过10轮)的意愿确认。
|
2136
2136
|
:type IntentionQuestions: list of IntentionQuestion
|
2137
2137
|
:param _IntentionActions: 意愿核身(点头确认模式)使用的文案。
|
2138
2138
|
- 若未使用意愿核身(点头确认模式),则该字段无需传入。
|
2139
|
-
-
|
2139
|
+
- 点头确认模式支持1-10轮(不超过10轮)的意愿确认。
|
2140
2140
|
:type IntentionActions: list of IntentionActionConfig
|
2141
2141
|
:param _Config: 意愿核身流程配置。
|
2142
2142
|
:type Config: :class:`tencentcloud.faceid.v20180301.models.RuleIdConfig`
|
@@ -2270,7 +2270,7 @@ class DetectAuthRequest(AbstractModel):
|
|
2270
2270
|
def IntentionQuestions(self):
|
2271
2271
|
"""意愿核身(语音播报+语音回答模式)使用的文案。
|
2272
2272
|
- 包括:系统语音播报的文本、需要核验的标准文本。
|
2273
|
-
-
|
2273
|
+
- 问答模式支持1-10轮(不超过10轮)的意愿确认。
|
2274
2274
|
:rtype: list of IntentionQuestion
|
2275
2275
|
"""
|
2276
2276
|
return self._IntentionQuestions
|
@@ -2283,7 +2283,7 @@ class DetectAuthRequest(AbstractModel):
|
|
2283
2283
|
def IntentionActions(self):
|
2284
2284
|
"""意愿核身(点头确认模式)使用的文案。
|
2285
2285
|
- 若未使用意愿核身(点头确认模式),则该字段无需传入。
|
2286
|
-
-
|
2286
|
+
- 点头确认模式支持1-10轮(不超过10轮)的意愿确认。
|
2287
2287
|
:rtype: list of IntentionActionConfig
|
2288
2288
|
"""
|
2289
2289
|
return self._IntentionActions
|
@@ -5000,11 +5000,12 @@ class GetEidTokenConfig(AbstractModel):
|
|
5000
5000
|
- 默认为空,最长可接受120的字符串长度。
|
5001
5001
|
:type IntentionVerifyText: str
|
5002
5002
|
:param _IntentionQuestions: 意愿核身问答模式的配置列表。
|
5003
|
-
-
|
5003
|
+
- 问答模式支持1-10轮(不超过10轮)的意愿确认。
|
5004
5004
|
:type IntentionQuestions: list of IntentionQuestion
|
5005
5005
|
:param _IntentionActions: 意愿核身(点头确认模式)使用的文案。
|
5006
5006
|
- 若未使用意愿核身(点头确认模式),则该字段无需传入。
|
5007
5007
|
- 默认为空,最长可接受150的字符串长度。
|
5008
|
+
- 点头确认模式支持1-10轮(不超过10轮)的意愿确认。
|
5008
5009
|
:type IntentionActions: list of IntentionActionConfig
|
5009
5010
|
:param _IntentionRecognition: 意愿核身过程中识别用户的回答意图。
|
5010
5011
|
- 开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过。
|
@@ -5101,7 +5102,7 @@ class GetEidTokenConfig(AbstractModel):
|
|
5101
5102
|
@property
|
5102
5103
|
def IntentionQuestions(self):
|
5103
5104
|
"""意愿核身问答模式的配置列表。
|
5104
|
-
-
|
5105
|
+
- 问答模式支持1-10轮(不超过10轮)的意愿确认。
|
5105
5106
|
:rtype: list of IntentionQuestion
|
5106
5107
|
"""
|
5107
5108
|
return self._IntentionQuestions
|
@@ -5115,6 +5116,7 @@ class GetEidTokenConfig(AbstractModel):
|
|
5115
5116
|
"""意愿核身(点头确认模式)使用的文案。
|
5116
5117
|
- 若未使用意愿核身(点头确认模式),则该字段无需传入。
|
5117
5118
|
- 默认为空,最长可接受150的字符串长度。
|
5119
|
+
- 点头确认模式支持1-10轮(不超过10轮)的意愿确认。
|
5118
5120
|
:rtype: list of IntentionActionConfig
|
5119
5121
|
"""
|
5120
5122
|
return self._IntentionActions
|
@@ -5466,22 +5466,16 @@ class ServiceStatus(AbstractModel):
|
|
5466
5466
|
def __init__(self):
|
5467
5467
|
r"""
|
5468
5468
|
:param _RealTimeSpeech: 实时语音服务开关状态
|
5469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5470
5469
|
:type RealTimeSpeech: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5471
5470
|
:param _VoiceMessage: 语音消息服务开关状态
|
5472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5473
5471
|
:type VoiceMessage: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5474
5472
|
:param _Porn: 语音内容安全服务开关状态
|
5475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5476
5473
|
:type Porn: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5477
5474
|
:param _Live: 语音录制服务开关状态
|
5478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5479
5475
|
:type Live: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5480
5476
|
:param _RealTimeAsr: 语音转文本服务开关状态
|
5481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5482
5477
|
:type RealTimeAsr: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5483
5478
|
:param _TextTranslate: 文本翻译服务开关状态
|
5484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5485
5479
|
:type TextTranslate: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5486
5480
|
"""
|
5487
5481
|
self._RealTimeSpeech = None
|
@@ -5494,7 +5488,6 @@ class ServiceStatus(AbstractModel):
|
|
5494
5488
|
@property
|
5495
5489
|
def RealTimeSpeech(self):
|
5496
5490
|
"""实时语音服务开关状态
|
5497
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5498
5491
|
:rtype: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5499
5492
|
"""
|
5500
5493
|
return self._RealTimeSpeech
|
@@ -5506,7 +5499,6 @@ class ServiceStatus(AbstractModel):
|
|
5506
5499
|
@property
|
5507
5500
|
def VoiceMessage(self):
|
5508
5501
|
"""语音消息服务开关状态
|
5509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5510
5502
|
:rtype: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5511
5503
|
"""
|
5512
5504
|
return self._VoiceMessage
|
@@ -5518,7 +5510,6 @@ class ServiceStatus(AbstractModel):
|
|
5518
5510
|
@property
|
5519
5511
|
def Porn(self):
|
5520
5512
|
"""语音内容安全服务开关状态
|
5521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5522
5513
|
:rtype: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5523
5514
|
"""
|
5524
5515
|
return self._Porn
|
@@ -5530,7 +5521,6 @@ class ServiceStatus(AbstractModel):
|
|
5530
5521
|
@property
|
5531
5522
|
def Live(self):
|
5532
5523
|
"""语音录制服务开关状态
|
5533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5534
5524
|
:rtype: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5535
5525
|
"""
|
5536
5526
|
return self._Live
|
@@ -5542,7 +5532,6 @@ class ServiceStatus(AbstractModel):
|
|
5542
5532
|
@property
|
5543
5533
|
def RealTimeAsr(self):
|
5544
5534
|
"""语音转文本服务开关状态
|
5545
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5546
5535
|
:rtype: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5547
5536
|
"""
|
5548
5537
|
return self._RealTimeAsr
|
@@ -5554,7 +5543,6 @@ class ServiceStatus(AbstractModel):
|
|
5554
5543
|
@property
|
5555
5544
|
def TextTranslate(self):
|
5556
5545
|
"""文本翻译服务开关状态
|
5557
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5558
5546
|
:rtype: :class:`tencentcloud.gme.v20180711.models.StatusInfo`
|
5559
5547
|
"""
|
5560
5548
|
return self._TextTranslate
|
@@ -97,6 +97,7 @@ class KeewidbClient(AbstractClient):
|
|
97
97
|
|
98
98
|
def ClearInstance(self, request):
|
99
99
|
"""本接口(ClearInstance)用于清空实例数据。
|
100
|
+
> **说明**:在清空数据流程中,系统将自动进行数据备份,耗时较长,请您耐心等待并提前做好时间规划。
|
100
101
|
|
101
102
|
:param request: Request instance for ClearInstance.
|
102
103
|
:type request: :class:`tencentcloud.keewidb.v20220308.models.ClearInstanceRequest`
|