tccli-intl-en 3.0.1270.1__py2.py3-none-any.whl → 3.0.1272.1__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.
Potentially problematic release.
This version of tccli-intl-en might be problematic. Click here for more details.
- tccli/__init__.py +1 -1
- tccli/services/__init__.py +2 -1
- tccli/services/ccc/ccc_client.py +65 -12
- tccli/services/ccc/v20200210/api.json +112 -15
- tccli/services/ccc/v20200210/examples.json +8 -0
- tccli/services/clb/v20180317/api.json +29 -14
- tccli/services/cynosdb/cynosdb_client.py +114 -8
- tccli/services/cynosdb/v20190107/api.json +718 -54
- tccli/services/cynosdb/v20190107/examples.json +20 -4
- tccli/services/dlc/dlc_client.py +175 -16
- tccli/services/dlc/v20210125/api.json +282 -6
- tccli/services/dlc/v20210125/examples.json +24 -0
- tccli/services/faceid/v20180301/examples.json +1 -1
- tccli/services/mdl/v20200326/api.json +104 -0
- tccli/services/mongodb/mongodb_client.py +159 -0
- tccli/services/mongodb/v20190725/api.json +533 -226
- tccli/services/mongodb/v20190725/examples.json +46 -22
- tccli/services/monitor/monitor_client.py +273 -8
- tccli/services/monitor/v20180724/api.json +649 -0
- tccli/services/monitor/v20180724/examples.json +40 -0
- tccli/services/mps/v20190612/api.json +179 -30
- tccli/services/mps/v20190612/examples.json +8 -8
- tccli/services/quota/v20241204/api.json +13 -2
- tccli/services/quota/v20241204/examples.json +4 -3
- tccli/services/redis/v20180412/api.json +225 -113
- tccli/services/redis/v20180412/examples.json +19 -19
- tccli/services/wedata/v20250806/api.json +13644 -0
- tccli/services/wedata/v20250806/examples.json +621 -0
- tccli/services/wedata/wedata_client.py +4663 -789
- {tccli_intl_en-3.0.1270.1.dist-info → tccli_intl_en-3.0.1272.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.0.1270.1.dist-info → tccli_intl_en-3.0.1272.1.dist-info}/RECORD +35 -33
- {tccli_intl_en-3.0.1270.1.dist-info → tccli_intl_en-3.0.1272.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.0.1270.1.dist-info → tccli_intl_en-3.0.1272.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.0.1270.1.dist-info → tccli_intl_en-3.0.1272.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.0.1270.1.dist-info → tccli_intl_en-3.0.1272.1.dist-info}/top_level.txt +0 -0
tccli/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '3.0.
|
|
1
|
+
__version__ = '3.0.1272.1'
|
tccli/services/__init__.py
CHANGED
tccli/services/ccc/ccc_client.py
CHANGED
|
@@ -17,7 +17,7 @@ from tencentcloud.ccc.v20200210 import models as models_v20200210
|
|
|
17
17
|
from jmespath import search
|
|
18
18
|
import time
|
|
19
19
|
|
|
20
|
-
def
|
|
20
|
+
def doDescribeAIAnalysisResult(args, parsed_globals):
|
|
21
21
|
g_param = parse_global_arg(parsed_globals)
|
|
22
22
|
|
|
23
23
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
|
@@ -46,11 +46,11 @@ def doUnbindNumberCallOutSkillGroup(args, parsed_globals):
|
|
|
46
46
|
client = mod.CccClient(cred, g_param[OptionsDefine.Region], profile)
|
|
47
47
|
client._sdkVersion += ("_CLI_" + __version__)
|
|
48
48
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
|
49
|
-
model = models.
|
|
49
|
+
model = models.DescribeAIAnalysisResultRequest()
|
|
50
50
|
model.from_json_string(json.dumps(args))
|
|
51
51
|
start_time = time.time()
|
|
52
52
|
while True:
|
|
53
|
-
rsp = client.
|
|
53
|
+
rsp = client.DescribeAIAnalysisResult(model)
|
|
54
54
|
result = rsp.to_json_string()
|
|
55
55
|
try:
|
|
56
56
|
json_obj = json.loads(result)
|
|
@@ -69,7 +69,7 @@ def doUnbindNumberCallOutSkillGroup(args, parsed_globals):
|
|
|
69
69
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
def
|
|
72
|
+
def doDescribeExtensions(args, parsed_globals):
|
|
73
73
|
g_param = parse_global_arg(parsed_globals)
|
|
74
74
|
|
|
75
75
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
|
@@ -98,11 +98,11 @@ def doModifyStaff(args, parsed_globals):
|
|
|
98
98
|
client = mod.CccClient(cred, g_param[OptionsDefine.Region], profile)
|
|
99
99
|
client._sdkVersion += ("_CLI_" + __version__)
|
|
100
100
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
|
101
|
-
model = models.
|
|
101
|
+
model = models.DescribeExtensionsRequest()
|
|
102
102
|
model.from_json_string(json.dumps(args))
|
|
103
103
|
start_time = time.time()
|
|
104
104
|
while True:
|
|
105
|
-
rsp = client.
|
|
105
|
+
rsp = client.DescribeExtensions(model)
|
|
106
106
|
result = rsp.to_json_string()
|
|
107
107
|
try:
|
|
108
108
|
json_obj = json.loads(result)
|
|
@@ -901,7 +901,7 @@ def doDeleteStaff(args, parsed_globals):
|
|
|
901
901
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
902
902
|
|
|
903
903
|
|
|
904
|
-
def
|
|
904
|
+
def doModifyStaff(args, parsed_globals):
|
|
905
905
|
g_param = parse_global_arg(parsed_globals)
|
|
906
906
|
|
|
907
907
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
|
@@ -930,11 +930,11 @@ def doDescribeExtensions(args, parsed_globals):
|
|
|
930
930
|
client = mod.CccClient(cred, g_param[OptionsDefine.Region], profile)
|
|
931
931
|
client._sdkVersion += ("_CLI_" + __version__)
|
|
932
932
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
|
933
|
-
model = models.
|
|
933
|
+
model = models.ModifyStaffRequest()
|
|
934
934
|
model.from_json_string(json.dumps(args))
|
|
935
935
|
start_time = time.time()
|
|
936
936
|
while True:
|
|
937
|
-
rsp = client.
|
|
937
|
+
rsp = client.ModifyStaff(model)
|
|
938
938
|
result = rsp.to_json_string()
|
|
939
939
|
try:
|
|
940
940
|
json_obj = json.loads(result)
|
|
@@ -1681,6 +1681,58 @@ def doDescribeStaffStatusHistory(args, parsed_globals):
|
|
|
1681
1681
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
1682
1682
|
|
|
1683
1683
|
|
|
1684
|
+
def doUnbindNumberCallOutSkillGroup(args, parsed_globals):
|
|
1685
|
+
g_param = parse_global_arg(parsed_globals)
|
|
1686
|
+
|
|
1687
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
|
1688
|
+
cred = credential.CVMRoleCredential()
|
|
1689
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
|
1690
|
+
cred = credential.STSAssumeRoleCredential(
|
|
1691
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
|
1692
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
|
1693
|
+
)
|
|
1694
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
|
1695
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
|
1696
|
+
else:
|
|
1697
|
+
cred = credential.Credential(
|
|
1698
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
|
1699
|
+
)
|
|
1700
|
+
http_profile = HttpProfile(
|
|
1701
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
|
1702
|
+
reqMethod="POST",
|
|
1703
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
|
1704
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
|
1705
|
+
)
|
|
1706
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
|
1707
|
+
if g_param[OptionsDefine.Language]:
|
|
1708
|
+
profile.language = g_param[OptionsDefine.Language]
|
|
1709
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
|
1710
|
+
client = mod.CccClient(cred, g_param[OptionsDefine.Region], profile)
|
|
1711
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
|
1712
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
|
1713
|
+
model = models.UnbindNumberCallOutSkillGroupRequest()
|
|
1714
|
+
model.from_json_string(json.dumps(args))
|
|
1715
|
+
start_time = time.time()
|
|
1716
|
+
while True:
|
|
1717
|
+
rsp = client.UnbindNumberCallOutSkillGroup(model)
|
|
1718
|
+
result = rsp.to_json_string()
|
|
1719
|
+
try:
|
|
1720
|
+
json_obj = json.loads(result)
|
|
1721
|
+
except TypeError as e:
|
|
1722
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
|
1723
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
|
1724
|
+
break
|
|
1725
|
+
cur_time = time.time()
|
|
1726
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
|
1727
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
|
1728
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
|
1729
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
|
1730
|
+
else:
|
|
1731
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
|
1732
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
|
1733
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
1734
|
+
|
|
1735
|
+
|
|
1684
1736
|
def doModifyOwnNumberApply(args, parsed_globals):
|
|
1685
1737
|
g_param = parse_global_arg(parsed_globals)
|
|
1686
1738
|
|
|
@@ -3512,8 +3564,8 @@ MODELS_MAP = {
|
|
|
3512
3564
|
}
|
|
3513
3565
|
|
|
3514
3566
|
ACTION_MAP = {
|
|
3515
|
-
"
|
|
3516
|
-
"
|
|
3567
|
+
"DescribeAIAnalysisResult": doDescribeAIAnalysisResult,
|
|
3568
|
+
"DescribeExtensions": doDescribeExtensions,
|
|
3517
3569
|
"DescribeAILatency": doDescribeAILatency,
|
|
3518
3570
|
"CreateExtension": doCreateExtension,
|
|
3519
3571
|
"AbortAgentCruiseDialingCampaign": doAbortAgentCruiseDialingCampaign,
|
|
@@ -3529,7 +3581,7 @@ ACTION_MAP = {
|
|
|
3529
3581
|
"BindNumberCallOutSkillGroup": doBindNumberCallOutSkillGroup,
|
|
3530
3582
|
"CreatePredictiveDialingCampaign": doCreatePredictiveDialingCampaign,
|
|
3531
3583
|
"DeleteStaff": doDeleteStaff,
|
|
3532
|
-
"
|
|
3584
|
+
"ModifyStaff": doModifyStaff,
|
|
3533
3585
|
"DescribeAutoCalloutTasks": doDescribeAutoCalloutTasks,
|
|
3534
3586
|
"ResetExtensionPassword": doResetExtensionPassword,
|
|
3535
3587
|
"CreateStaff": doCreateStaff,
|
|
@@ -3544,6 +3596,7 @@ ACTION_MAP = {
|
|
|
3544
3596
|
"DescribeTelCdr": doDescribeTelCdr,
|
|
3545
3597
|
"TransferToManual": doTransferToManual,
|
|
3546
3598
|
"DescribeStaffStatusHistory": doDescribeStaffStatusHistory,
|
|
3599
|
+
"UnbindNumberCallOutSkillGroup": doUnbindNumberCallOutSkillGroup,
|
|
3547
3600
|
"ModifyOwnNumberApply": doModifyOwnNumberApply,
|
|
3548
3601
|
"DescribeSessionDetail": doDescribeSessionDetail,
|
|
3549
3602
|
"DescribeIvrAudioList": doDescribeIvrAudioList,
|
|
@@ -168,6 +168,13 @@
|
|
|
168
168
|
"output": "DeleteStaffResponse",
|
|
169
169
|
"status": "online"
|
|
170
170
|
},
|
|
171
|
+
"DescribeAIAnalysisResult": {
|
|
172
|
+
"document": "This API is used to obtain AI Conversation Analytics results.",
|
|
173
|
+
"input": "DescribeAIAnalysisResultRequest",
|
|
174
|
+
"name": "Query AI conversation analysis result",
|
|
175
|
+
"output": "DescribeAIAnalysisResultResponse",
|
|
176
|
+
"status": "online"
|
|
177
|
+
},
|
|
171
178
|
"DescribeAICallExtractResult": {
|
|
172
179
|
"document": "Obtain AI call content extraction result",
|
|
173
180
|
"input": "DescribeAICallExtractResultRequest",
|
|
@@ -476,6 +483,32 @@
|
|
|
476
483
|
"serviceShortName": "ccc"
|
|
477
484
|
},
|
|
478
485
|
"objects": {
|
|
486
|
+
"AIAnalysisResult": {
|
|
487
|
+
"document": "AI conversation analytics result.",
|
|
488
|
+
"members": [
|
|
489
|
+
{
|
|
490
|
+
"disabled": false,
|
|
491
|
+
"document": "Summary: describes the session summary.\nmood: specifies the emotion analysis.\nintention extraction.",
|
|
492
|
+
"example": "summary",
|
|
493
|
+
"member": "string",
|
|
494
|
+
"name": "Type",
|
|
495
|
+
"output_required": true,
|
|
496
|
+
"type": "string",
|
|
497
|
+
"value_allowed_null": false
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"disabled": false,
|
|
501
|
+
"document": "AI session analysis result.",
|
|
502
|
+
"example": "会话小结结果",
|
|
503
|
+
"member": "string",
|
|
504
|
+
"name": "Result",
|
|
505
|
+
"output_required": true,
|
|
506
|
+
"type": "string",
|
|
507
|
+
"value_allowed_null": false
|
|
508
|
+
}
|
|
509
|
+
],
|
|
510
|
+
"usage": "out"
|
|
511
|
+
},
|
|
479
512
|
"AICallExtractConfigElement": {
|
|
480
513
|
"document": "AI call extraction configuration item.",
|
|
481
514
|
"members": [
|
|
@@ -1493,7 +1526,7 @@
|
|
|
1493
1526
|
{
|
|
1494
1527
|
"disabled": false,
|
|
1495
1528
|
"document": "Specifies the session ID.",
|
|
1496
|
-
"example": "
|
|
1529
|
+
"example": "7cb26a84-83b2-42d8-a19b-7dae78e9b78e",
|
|
1497
1530
|
"member": "string",
|
|
1498
1531
|
"name": "SessionId",
|
|
1499
1532
|
"required": true,
|
|
@@ -1511,7 +1544,7 @@
|
|
|
1511
1544
|
{
|
|
1512
1545
|
"disabled": false,
|
|
1513
1546
|
"document": "Control command. currently supports the following commands:.\n\n-ServerPushText. specifies the text sent by the server to the AI robot. the AI robot will broadcast the text.",
|
|
1514
|
-
"example": "
|
|
1547
|
+
"example": "ServerPushText",
|
|
1515
1548
|
"member": "string",
|
|
1516
1549
|
"name": "Command",
|
|
1517
1550
|
"required": false,
|
|
@@ -2136,7 +2169,7 @@
|
|
|
2136
2169
|
{
|
|
2137
2170
|
"disabled": false,
|
|
2138
2171
|
"document": "List of called numbers.",
|
|
2139
|
-
"example": "[
|
|
2172
|
+
"example": "[\"0086139xxxxxxxx\",\"0086130xxxxxxxxx\"]",
|
|
2140
2173
|
"member": "string",
|
|
2141
2174
|
"name": "Callees",
|
|
2142
2175
|
"required": true,
|
|
@@ -2145,7 +2178,7 @@
|
|
|
2145
2178
|
{
|
|
2146
2179
|
"disabled": false,
|
|
2147
2180
|
"document": "List of calling numbers.",
|
|
2148
|
-
"example": "[
|
|
2181
|
+
"example": "[\"0086010xxxxxxxx\"]",
|
|
2149
2182
|
"member": "string",
|
|
2150
2183
|
"name": "Callers",
|
|
2151
2184
|
"required": true,
|
|
@@ -2199,7 +2232,7 @@
|
|
|
2199
2232
|
{
|
|
2200
2233
|
"disabled": false,
|
|
2201
2234
|
"document": "Custom variables (supported only in advanced versions).",
|
|
2202
|
-
"example": "
|
|
2235
|
+
"example": "无",
|
|
2203
2236
|
"member": "Variable",
|
|
2204
2237
|
"name": "Variables",
|
|
2205
2238
|
"required": false,
|
|
@@ -2217,7 +2250,7 @@
|
|
|
2217
2250
|
{
|
|
2218
2251
|
"disabled": false,
|
|
2219
2252
|
"document": "Property of the called.",
|
|
2220
|
-
"example": "
|
|
2253
|
+
"example": "无",
|
|
2221
2254
|
"member": "CalleeAttribute",
|
|
2222
2255
|
"name": "CalleeAttributes",
|
|
2223
2256
|
"required": false,
|
|
@@ -2235,7 +2268,7 @@
|
|
|
2235
2268
|
{
|
|
2236
2269
|
"disabled": false,
|
|
2237
2270
|
"document": "Available time period.",
|
|
2238
|
-
"example": "
|
|
2271
|
+
"example": "无",
|
|
2239
2272
|
"member": "TimeRange",
|
|
2240
2273
|
"name": "AvailableTime",
|
|
2241
2274
|
"required": false,
|
|
@@ -3186,6 +3219,70 @@
|
|
|
3186
3219
|
],
|
|
3187
3220
|
"type": "object"
|
|
3188
3221
|
},
|
|
3222
|
+
"DescribeAIAnalysisResultRequest": {
|
|
3223
|
+
"document": "DescribeAIAnalysisResult request structure.",
|
|
3224
|
+
"members": [
|
|
3225
|
+
{
|
|
3226
|
+
"disabled": false,
|
|
3227
|
+
"document": "App ID (required). can be viewed at https://console.cloud.tencent.com/ccc.",
|
|
3228
|
+
"example": "1400000000",
|
|
3229
|
+
"member": "int64",
|
|
3230
|
+
"name": "SdkAppId",
|
|
3231
|
+
"required": true,
|
|
3232
|
+
"type": "int"
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
"disabled": false,
|
|
3236
|
+
"document": "Specifies the conversation ID.",
|
|
3237
|
+
"example": "6bb56a09-2787-40bc-80c5-dc6dab783eff",
|
|
3238
|
+
"member": "string",
|
|
3239
|
+
"name": "SessionId",
|
|
3240
|
+
"required": true,
|
|
3241
|
+
"type": "string"
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
"disabled": false,
|
|
3245
|
+
"document": "Specifies the search start time.\t",
|
|
3246
|
+
"example": "1737350008",
|
|
3247
|
+
"member": "int64",
|
|
3248
|
+
"name": "StartTime",
|
|
3249
|
+
"required": true,
|
|
3250
|
+
"type": "int"
|
|
3251
|
+
},
|
|
3252
|
+
{
|
|
3253
|
+
"disabled": false,
|
|
3254
|
+
"document": "1737350008",
|
|
3255
|
+
"example": "1737350008",
|
|
3256
|
+
"member": "int64",
|
|
3257
|
+
"name": "EndTime",
|
|
3258
|
+
"required": true,
|
|
3259
|
+
"type": "int"
|
|
3260
|
+
}
|
|
3261
|
+
],
|
|
3262
|
+
"type": "object"
|
|
3263
|
+
},
|
|
3264
|
+
"DescribeAIAnalysisResultResponse": {
|
|
3265
|
+
"document": "DescribeAIAnalysisResult response structure.",
|
|
3266
|
+
"members": [
|
|
3267
|
+
{
|
|
3268
|
+
"disabled": false,
|
|
3269
|
+
"document": "AI session analysis result.",
|
|
3270
|
+
"example": "无",
|
|
3271
|
+
"member": "AIAnalysisResult",
|
|
3272
|
+
"name": "ResultList",
|
|
3273
|
+
"output_required": false,
|
|
3274
|
+
"type": "list",
|
|
3275
|
+
"value_allowed_null": false
|
|
3276
|
+
},
|
|
3277
|
+
{
|
|
3278
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
3279
|
+
"member": "string",
|
|
3280
|
+
"name": "RequestId",
|
|
3281
|
+
"type": "string"
|
|
3282
|
+
}
|
|
3283
|
+
],
|
|
3284
|
+
"type": "object"
|
|
3285
|
+
},
|
|
3189
3286
|
"DescribeAICallExtractResultRequest": {
|
|
3190
3287
|
"document": "DescribeAICallExtractResult request structure.",
|
|
3191
3288
|
"members": [
|
|
@@ -8170,7 +8267,7 @@
|
|
|
8170
8267
|
{
|
|
8171
8268
|
"disabled": false,
|
|
8172
8269
|
"document": "Caller number.",
|
|
8173
|
-
"example": "
|
|
8270
|
+
"example": "0086010xxxxxxxx",
|
|
8174
8271
|
"member": "string",
|
|
8175
8272
|
"name": "Caller",
|
|
8176
8273
|
"output_required": true,
|
|
@@ -8180,7 +8277,7 @@
|
|
|
8180
8277
|
{
|
|
8181
8278
|
"disabled": false,
|
|
8182
8279
|
"document": "Called number.",
|
|
8183
|
-
"example": "
|
|
8280
|
+
"example": "0086130xxxxxxxx",
|
|
8184
8281
|
"member": "string",
|
|
8185
8282
|
"name": "Callee",
|
|
8186
8283
|
"output_required": true,
|
|
@@ -8250,7 +8347,7 @@
|
|
|
8250
8347
|
{
|
|
8251
8348
|
"disabled": false,
|
|
8252
8349
|
"document": "Agent information.",
|
|
8253
|
-
"example": "
|
|
8350
|
+
"example": "无",
|
|
8254
8351
|
"member": "SeatUserInfo",
|
|
8255
8352
|
"name": "SeatUser",
|
|
8256
8353
|
"output_required": true,
|
|
@@ -8350,7 +8447,7 @@
|
|
|
8350
8447
|
{
|
|
8351
8448
|
"disabled": false,
|
|
8352
8449
|
"document": "Service participant list.",
|
|
8353
|
-
"example": "
|
|
8450
|
+
"example": "无",
|
|
8354
8451
|
"member": "ServeParticipant",
|
|
8355
8452
|
"name": "ServeParticipants",
|
|
8356
8453
|
"output_required": true,
|
|
@@ -8400,7 +8497,7 @@
|
|
|
8400
8497
|
{
|
|
8401
8498
|
"disabled": false,
|
|
8402
8499
|
"document": "Post-IVR key information (e.g. [{\"key\":\"1\",\"label\":\"very satisfied\"}]).",
|
|
8403
|
-
"example": "
|
|
8500
|
+
"example": "无",
|
|
8404
8501
|
"member": "IVRKeyPressedElement",
|
|
8405
8502
|
"name": "PostIVRKeyPressed",
|
|
8406
8503
|
"output_required": true,
|
|
@@ -8430,7 +8527,7 @@
|
|
|
8430
8527
|
{
|
|
8431
8528
|
"disabled": false,
|
|
8432
8529
|
"document": "Caller number protection id. effective when the number protection map feature is activated, and the caller field is empty.",
|
|
8433
|
-
"example": "
|
|
8530
|
+
"example": "0086130xxxxxxxx",
|
|
8434
8531
|
"member": "string",
|
|
8435
8532
|
"name": "ProtectedCaller",
|
|
8436
8533
|
"output_required": true,
|
|
@@ -8440,7 +8537,7 @@
|
|
|
8440
8537
|
{
|
|
8441
8538
|
"disabled": false,
|
|
8442
8539
|
"document": "Called number protection id. effective when the number protection map feature is activated, and the callee field is empty.",
|
|
8443
|
-
"example": "
|
|
8540
|
+
"example": "0086130xxxxxxxx",
|
|
8444
8541
|
"member": "string",
|
|
8445
8542
|
"name": "ProtectedCallee",
|
|
8446
8543
|
"output_required": true,
|
|
@@ -8470,7 +8567,7 @@
|
|
|
8470
8567
|
{
|
|
8471
8568
|
"disabled": false,
|
|
8472
8569
|
"document": "IVR key information (e.g. [{\"key\":\"1\",\"label\":\"very satisfied\"}]).",
|
|
8473
|
-
"example": "
|
|
8570
|
+
"example": "无",
|
|
8474
8571
|
"member": "IVRKeyPressedElement",
|
|
8475
8572
|
"name": "IVRKeyPressedEx",
|
|
8476
8573
|
"output_required": true,
|
|
@@ -192,6 +192,14 @@
|
|
|
192
192
|
"title": "Example Of Deleting Agent Information"
|
|
193
193
|
}
|
|
194
194
|
],
|
|
195
|
+
"DescribeAIAnalysisResult": [
|
|
196
|
+
{
|
|
197
|
+
"document": "",
|
|
198
|
+
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAILatency\n<Common request parameters>\n\n{\n \"SdkAppId\": 1400000000,\n \"SessionId\": \"adcf61b8-dbb9-4c20-87bf-c0744c04bade\",\n \"StartTime\": 1737350008,\n \"EndTime\": 1737356008\n}",
|
|
199
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"xxx-xxx\",\n \"ResultList\": [\n {\n \"Type\": \"summary\",\nSession summary\n },\n {\n \"Type\": \"mood\",\nNeutral\n },\n {\n \"Type\": \"intention\",\n\"Result\": \"pending follow-up\"\n }\n ]\n }\n}",
|
|
200
|
+
"title": "Query AI Conversation Analysis Result"
|
|
201
|
+
}
|
|
202
|
+
],
|
|
195
203
|
"DescribeAICallExtractResult": [
|
|
196
204
|
{
|
|
197
205
|
"document": "This example shows you how to query the extraction results of AI call content.",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"status": "online"
|
|
107
107
|
},
|
|
108
108
|
"DeleteLoadBalancer": {
|
|
109
|
-
"document": "This API
|
|
109
|
+
"document": "This API is used to delete one or more specified CLB instances. After successful deletion, the listeners and forwarding rules under the CLB instance will be deleted together, and the backend service will be unbound.\nThis API is asynchronous. After it returns the result successfully, you can call the [DescribeTaskStatus](https://www.tencentcloud.com/document/product/214/30683?from_cn_redirect=1) API with the returned RequestId as an input parameter to query whether the task is successful.",
|
|
110
110
|
"input": "DeleteLoadBalancerRequest",
|
|
111
111
|
"name": "Deletes one or more CLB instances",
|
|
112
112
|
"output": "DeleteLoadBalancerResponse",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"status": "online"
|
|
149
149
|
},
|
|
150
150
|
"DeregisterFunctionTargets": {
|
|
151
|
-
"document": "This API is used to unbind a SCF function with a CLB forwarding rule. For L7 listeners, you need to specify the forwarding rule by using `LocationId` or `Domain+Url`. \nThis is an async API. After it is returned successfully, you can call the [DescribeTaskStatus](https://intl.cloud.tencent.com/document/product/214/30683?from_cn_redirect=1) API with the returned RequestID to check whether this task is successful.\n<br/>Limits: \n\n- Binding with SCF is only available in Guangzhou, Shenzhen Finance, Shanghai, Shanghai Finance, Beijing, Chengdu, Hong Kong (China), Singapore, Mumbai, Tokyo, and Silicon Valley.\n- SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account.
|
|
151
|
+
"document": "This API is used to unbind a SCF function with a CLB forwarding rule. For L7 listeners, you need to specify the forwarding rule by using `LocationId` or `Domain+Url`. \nThis is an async API. After it is returned successfully, you can call the [DescribeTaskStatus](https://intl.cloud.tencent.com/document/product/214/30683?from_cn_redirect=1) API with the returned RequestID to check whether this task is successful.\n<br/>Limits: \n\n- Binding with SCF is only available in Guangzhou, Shenzhen Finance, Shanghai, Shanghai Finance, Beijing, Chengdu, Hong Kong (China), Singapore, Mumbai, Tokyo, and Silicon Valley.\n- SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account. \n- SCF functions cannot be bound with classic CLB instances.\n- SCF functions cannot be bound with classic network-based CLB instances.\n- SCF functions in the same region can be bound with CLB instances. SCF functions can only be bound across VPCs but not regions.\n- SCF functions can only be bound with IPv4 and IPv6 NAT64 CLB instances, but currently not with IPv6 CLB instances.\n- SCF functions can only be bound with layer-7 HTTP and HTTPS listeners, but not with layer-7 QUIC listeners or layer-4 (TCP, UDP, and TCP SSL) listeners.\n- Only SCF event-triggered functions can be bound with CLB instances.",
|
|
152
152
|
"input": "DeregisterFunctionTargetsRequest",
|
|
153
153
|
"name": "Unbinding an SCF function from a forwarding rule",
|
|
154
154
|
"output": "DeregisterFunctionTargetsResponse",
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
"status": "online"
|
|
513
513
|
},
|
|
514
514
|
"RegisterFunctionTargets": {
|
|
515
|
-
"document": "This API is used to bind an SCF function with the L7 forwarding rule of a CLB instance. Note that you need to create an L7 listener (HTTP, HTTPS) and forwarding rule first.\nThis is an async API. After it is returned successfully, you can call the `DescribeTaskStatus` API with the returned `RequestID` as an input parameter to check whether this task is successful.<br/>\n**Limits:**\n- Binding with SCF is only available in Guangzhou, Shenzhen Finance, Shanghai, Shanghai Finance, Beijing, Chengdu, Hong Kong (China), Singapore, Mumbai, Tokyo, and Silicon Valley.\n- SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account.
|
|
515
|
+
"document": "This API is used to bind an SCF function with the L7 forwarding rule of a CLB instance. Note that you need to create an L7 listener (HTTP, HTTPS) and forwarding rule first.\nThis is an async API. After it is returned successfully, you can call the `DescribeTaskStatus` API with the returned `RequestID` as an input parameter to check whether this task is successful.<br/>\n**Limits:**\n- Binding with SCF is only available in Guangzhou, Shenzhen Finance, Shanghai, Shanghai Finance, Beijing, Chengdu, Hong Kong (China), Singapore, Mumbai, Tokyo, and Silicon Valley.\n- SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account. \n- SCF functions cannot be bound with classic CLB instances.\n- SCF functions cannot be bound with classic network-based CLB instances.\n- SCF functions in the same region can be bound with CLB instances. SCF functions can only be bound across VPCs but not regions.\n- SCF functions can only be bound with IPv4 and IPv6 NAT64 CLB instances, but currently not with IPv6 CLB instances.\n- SCF functions can only be bound with layer-7 HTTP and HTTPS listeners, but not with layer-7 QUIC listeners or layer-4 (TCP, UDP, and TCP SSL) listeners.\n- Only SCF event-triggered functions can be bound with CLB instances.",
|
|
516
516
|
"input": "RegisterFunctionTargetsRequest",
|
|
517
517
|
"name": "Binds an SCF function with a forwarding rule",
|
|
518
518
|
"output": "RegisterFunctionTargetsResponse",
|
|
@@ -3120,12 +3120,21 @@
|
|
|
3120
3120
|
"members": [
|
|
3121
3121
|
{
|
|
3122
3122
|
"disabled": false,
|
|
3123
|
-
"document": "
|
|
3124
|
-
"example": "[\"lb-hsb93u5o
|
|
3123
|
+
"document": "CLB instance ID array to be deleted, which can be obtained by calling the [DescribeLoadBalancers](https://www.tencentcloud.com/document/product/214/30685?from_cn_redirect=1) API. The array can include up to 20 elements.",
|
|
3124
|
+
"example": "[\"lb-hsb93u5o\"]",
|
|
3125
3125
|
"member": "string",
|
|
3126
3126
|
"name": "LoadBalancerIds",
|
|
3127
3127
|
"required": true,
|
|
3128
3128
|
"type": "list"
|
|
3129
|
+
},
|
|
3130
|
+
{
|
|
3131
|
+
"disabled": false,
|
|
3132
|
+
"document": "Whether to forcibly delete the CLB instance. True indicates forced deletion; False indicates non-forced deletion, and blocking verification is required.\nThe default value is False.\nThe deletion operation is blocked by default in the following cases. If you confirm forced deletion, the value of the forced verification parameter ForceDelete should be set to True.\n1. The instance with 20 or more RS bound to the backend is deleted.\n2. The instance with RS bound to the backend and the maximum peak inbound/outbound bandwidth exceeding 10 Mbps within 5 minutes is deleted.\n3. Thirty or more instances are deleted within 5 minutes in a single region.",
|
|
3133
|
+
"example": "true",
|
|
3134
|
+
"member": "bool",
|
|
3135
|
+
"name": "ForceDelete",
|
|
3136
|
+
"required": false,
|
|
3137
|
+
"type": "bool"
|
|
3129
3138
|
}
|
|
3130
3139
|
],
|
|
3131
3140
|
"type": "object"
|
|
@@ -3346,7 +3355,7 @@
|
|
|
3346
3355
|
{
|
|
3347
3356
|
"disabled": false,
|
|
3348
3357
|
"document": "CLB listener ID.",
|
|
3349
|
-
"example": "
|
|
3358
|
+
"example": "lbl-1234tgbh",
|
|
3350
3359
|
"member": "string",
|
|
3351
3360
|
"name": "ListenerId",
|
|
3352
3361
|
"required": true,
|
|
@@ -5362,9 +5371,10 @@
|
|
|
5362
5371
|
{
|
|
5363
5372
|
"disabled": false,
|
|
5364
5373
|
"document": "Function namespace",
|
|
5365
|
-
"example": "",
|
|
5374
|
+
"example": "default",
|
|
5366
5375
|
"member": "string",
|
|
5367
5376
|
"name": "FunctionNamespace",
|
|
5377
|
+
"output_required": true,
|
|
5368
5378
|
"required": true,
|
|
5369
5379
|
"type": "string",
|
|
5370
5380
|
"value_allowed_null": false
|
|
@@ -5372,9 +5382,10 @@
|
|
|
5372
5382
|
{
|
|
5373
5383
|
"disabled": false,
|
|
5374
5384
|
"document": "Function name",
|
|
5375
|
-
"example": "",
|
|
5385
|
+
"example": "bxs-open-api",
|
|
5376
5386
|
"member": "string",
|
|
5377
5387
|
"name": "FunctionName",
|
|
5388
|
+
"output_required": true,
|
|
5378
5389
|
"required": true,
|
|
5379
5390
|
"type": "string",
|
|
5380
5391
|
"value_allowed_null": false
|
|
@@ -5382,9 +5393,10 @@
|
|
|
5382
5393
|
{
|
|
5383
5394
|
"disabled": false,
|
|
5384
5395
|
"document": "Function version name or alias",
|
|
5385
|
-
"example": "",
|
|
5396
|
+
"example": "$LATEST",
|
|
5386
5397
|
"member": "string",
|
|
5387
5398
|
"name": "FunctionQualifier",
|
|
5399
|
+
"output_required": true,
|
|
5388
5400
|
"required": true,
|
|
5389
5401
|
"type": "string",
|
|
5390
5402
|
"value_allowed_null": false
|
|
@@ -5392,9 +5404,10 @@
|
|
|
5392
5404
|
{
|
|
5393
5405
|
"disabled": false,
|
|
5394
5406
|
"document": "Function qualifier type. Values: `VERSION`, `ALIAS`.\nNote: This field may return `null`, indicating that no valid values can be obtained.",
|
|
5395
|
-
"example": "",
|
|
5407
|
+
"example": "VERSION",
|
|
5396
5408
|
"member": "string",
|
|
5397
5409
|
"name": "FunctionQualifierType",
|
|
5410
|
+
"output_required": true,
|
|
5398
5411
|
"required": false,
|
|
5399
5412
|
"type": "string",
|
|
5400
5413
|
"value_allowed_null": true
|
|
@@ -5408,19 +5421,21 @@
|
|
|
5408
5421
|
{
|
|
5409
5422
|
"disabled": false,
|
|
5410
5423
|
"document": "SCF related information\nNote: This field may return `null`, indicating that no valid values can be obtained.",
|
|
5411
|
-
"example": "",
|
|
5424
|
+
"example": "无",
|
|
5412
5425
|
"member": "FunctionInfo",
|
|
5413
5426
|
"name": "Function",
|
|
5427
|
+
"output_required": true,
|
|
5414
5428
|
"required": true,
|
|
5415
5429
|
"type": "object",
|
|
5416
|
-
"value_allowed_null":
|
|
5430
|
+
"value_allowed_null": false
|
|
5417
5431
|
},
|
|
5418
5432
|
{
|
|
5419
5433
|
"disabled": false,
|
|
5420
5434
|
"document": "Weight",
|
|
5421
|
-
"example": "",
|
|
5435
|
+
"example": "10",
|
|
5422
5436
|
"member": "uint64",
|
|
5423
5437
|
"name": "Weight",
|
|
5438
|
+
"output_required": true,
|
|
5424
5439
|
"required": false,
|
|
5425
5440
|
"type": "int",
|
|
5426
5441
|
"value_allowed_null": false
|
|
@@ -9081,7 +9096,7 @@
|
|
|
9081
9096
|
{
|
|
9082
9097
|
"disabled": false,
|
|
9083
9098
|
"document": "CLB listener ID.",
|
|
9084
|
-
"example": "
|
|
9099
|
+
"example": "lbl-1234tgbh",
|
|
9085
9100
|
"member": "string",
|
|
9086
9101
|
"name": "ListenerId",
|
|
9087
9102
|
"required": true,
|