tccli 3.0.1325.1__py2.py3-none-any.whl → 3.0.1327.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.
- tccli/__init__.py +1 -1
- tccli/services/ams/v20201229/api.json +9 -9
- tccli/services/cdb/v20170320/api.json +9 -9
- tccli/services/cdc/v20201214/api.json +5 -5
- tccli/services/cfs/v20190719/api.json +19 -19
- tccli/services/cfs/v20190719/examples.json +2 -2
- tccli/services/clb/clb_client.py +53 -0
- tccli/services/clb/v20180317/api.json +100 -0
- tccli/services/clb/v20180317/examples.json +8 -0
- tccli/services/cme/v20191029/api.json +16 -19
- tccli/services/cme/v20191029/examples.json +12 -12
- tccli/services/dlc/dlc_client.py +53 -0
- tccli/services/dlc/v20210125/api.json +51 -0
- tccli/services/dlc/v20210125/examples.json +8 -0
- tccli/services/domain/v20180808/api.json +1 -1
- tccli/services/emr/v20190103/api.json +29 -0
- tccli/services/es/es_client.py +4 -57
- tccli/services/es/v20250101/api.json +0 -207
- tccli/services/es/v20250101/examples.json +0 -8
- tccli/services/ess/v20201111/api.json +4 -4
- tccli/services/essbasic/v20210526/api.json +1 -1
- tccli/services/gs/gs_client.py +269 -4
- tccli/services/gs/v20191118/api.json +412 -7
- tccli/services/gs/v20191118/examples.json +42 -2
- tccli/services/hai/v20230812/api.json +5 -5
- tccli/services/lke/lke_client.py +0 -53
- tccli/services/lke/v20231130/api.json +0 -113
- tccli/services/lke/v20231130/examples.json +0 -8
- tccli/services/lkeap/v20240522/api.json +1 -1
- tccli/services/lowcode/v20210108/api.json +60 -0
- tccli/services/monitor/monitor_client.py +170 -11
- tccli/services/monitor/v20180724/api.json +205 -1
- tccli/services/monitor/v20180724/examples.json +24 -0
- tccli/services/mrs/v20200910/api.json +4 -4
- tccli/services/oceanus/v20190422/api.json +15 -5
- tccli/services/oceanus/v20190422/examples.json +8 -2
- tccli/services/postgres/postgres_client.py +0 -53
- tccli/services/postgres/v20170312/api.json +0 -235
- tccli/services/postgres/v20170312/examples.json +0 -8
- tccli/services/privatedns/privatedns_client.py +53 -0
- tccli/services/privatedns/v20201028/api.json +180 -1
- tccli/services/privatedns/v20201028/examples.json +8 -0
- tccli/services/pts/v20210728/api.json +18 -0
- tccli/services/redis/v20180412/api.json +1 -1
- tccli/services/tcss/v20201101/api.json +190 -32
- tccli/services/tcss/v20201101/examples.json +6 -6
- tccli/services/tms/v20201229/api.json +2 -2
- tccli/services/tms/v20201229/examples.json +1 -1
- tccli/services/vm/v20210922/api.json +13 -13
- tccli/services/vm/v20210922/examples.json +2 -2
- tccli/services/vpc/v20170312/api.json +2 -2
- {tccli-3.0.1325.1.dist-info → tccli-3.0.1327.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1325.1.dist-info → tccli-3.0.1327.1.dist-info}/RECORD +56 -56
- {tccli-3.0.1325.1.dist-info → tccli-3.0.1327.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1325.1.dist-info → tccli-3.0.1327.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1325.1.dist-info → tccli-3.0.1327.1.dist-info}/license_files/LICENSE +0 -0
tccli/services/es/es_client.py
CHANGED
@@ -2463,58 +2463,6 @@ def doUpdateIndex(args, parsed_globals):
|
|
2463
2463
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2464
2464
|
|
2465
2465
|
|
2466
|
-
def doDescribeLogstashInstanceOperations(args, parsed_globals):
|
2467
|
-
g_param = parse_global_arg(parsed_globals)
|
2468
|
-
|
2469
|
-
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
2470
|
-
cred = credential.CVMRoleCredential()
|
2471
|
-
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
2472
|
-
cred = credential.STSAssumeRoleCredential(
|
2473
|
-
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
2474
|
-
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
2475
|
-
)
|
2476
|
-
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):
|
2477
|
-
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
2478
|
-
else:
|
2479
|
-
cred = credential.Credential(
|
2480
|
-
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
2481
|
-
)
|
2482
|
-
http_profile = HttpProfile(
|
2483
|
-
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
2484
|
-
reqMethod="POST",
|
2485
|
-
endpoint=g_param[OptionsDefine.Endpoint],
|
2486
|
-
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
2487
|
-
)
|
2488
|
-
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
2489
|
-
if g_param[OptionsDefine.Language]:
|
2490
|
-
profile.language = g_param[OptionsDefine.Language]
|
2491
|
-
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
2492
|
-
client = mod.EsClient(cred, g_param[OptionsDefine.Region], profile)
|
2493
|
-
client._sdkVersion += ("_CLI_" + __version__)
|
2494
|
-
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
2495
|
-
model = models.DescribeLogstashInstanceOperationsRequest()
|
2496
|
-
model.from_json_string(json.dumps(args))
|
2497
|
-
start_time = time.time()
|
2498
|
-
while True:
|
2499
|
-
rsp = client.DescribeLogstashInstanceOperations(model)
|
2500
|
-
result = rsp.to_json_string()
|
2501
|
-
try:
|
2502
|
-
json_obj = json.loads(result)
|
2503
|
-
except TypeError as e:
|
2504
|
-
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
2505
|
-
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
2506
|
-
break
|
2507
|
-
cur_time = time.time()
|
2508
|
-
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
2509
|
-
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
2510
|
-
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
2511
|
-
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
2512
|
-
else:
|
2513
|
-
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
2514
|
-
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
2515
|
-
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2516
|
-
|
2517
|
-
|
2518
2466
|
def doDescribeInstances(args, parsed_globals):
|
2519
2467
|
g_param = parse_global_arg(parsed_globals)
|
2520
2468
|
|
@@ -3555,7 +3503,7 @@ def doChunkDocument(args, parsed_globals):
|
|
3555
3503
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3556
3504
|
|
3557
3505
|
|
3558
|
-
def
|
3506
|
+
def doDescribeLogstashInstanceOperations(args, parsed_globals):
|
3559
3507
|
g_param = parse_global_arg(parsed_globals)
|
3560
3508
|
|
3561
3509
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -3584,11 +3532,11 @@ def doWebSearch(args, parsed_globals):
|
|
3584
3532
|
client = mod.EsClient(cred, g_param[OptionsDefine.Region], profile)
|
3585
3533
|
client._sdkVersion += ("_CLI_" + __version__)
|
3586
3534
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3587
|
-
model = models.
|
3535
|
+
model = models.DescribeLogstashInstanceOperationsRequest()
|
3588
3536
|
model.from_json_string(json.dumps(args))
|
3589
3537
|
start_time = time.time()
|
3590
3538
|
while True:
|
3591
|
-
rsp = client.
|
3539
|
+
rsp = client.DescribeLogstashInstanceOperations(model)
|
3592
3540
|
result = rsp.to_json_string()
|
3593
3541
|
try:
|
3594
3542
|
json_obj = json.loads(result)
|
@@ -3771,7 +3719,6 @@ ACTION_MAP = {
|
|
3771
3719
|
"ParseDocument": doParseDocument,
|
3772
3720
|
"UpdateDictionaries": doUpdateDictionaries,
|
3773
3721
|
"UpdateIndex": doUpdateIndex,
|
3774
|
-
"DescribeLogstashInstanceOperations": doDescribeLogstashInstanceOperations,
|
3775
3722
|
"DescribeInstances": doDescribeInstances,
|
3776
3723
|
"UpdateServerlessSpace": doUpdateServerlessSpace,
|
3777
3724
|
"StartLogstashPipelines": doStartLogstashPipelines,
|
@@ -3792,7 +3739,7 @@ ACTION_MAP = {
|
|
3792
3739
|
"DescribeIndexMeta": doDescribeIndexMeta,
|
3793
3740
|
"ChatCompletions": doChatCompletions,
|
3794
3741
|
"ChunkDocument": doChunkDocument,
|
3795
|
-
"
|
3742
|
+
"DescribeLogstashInstanceOperations": doDescribeLogstashInstanceOperations,
|
3796
3743
|
"InquirePriceRenewInstance": doInquirePriceRenewInstance,
|
3797
3744
|
"CreateClusterSnapshot": doCreateClusterSnapshot,
|
3798
3745
|
|
@@ -62,13 +62,6 @@
|
|
62
62
|
"name": "重排序",
|
63
63
|
"output": "RunRerankResponse",
|
64
64
|
"status": "online"
|
65
|
-
},
|
66
|
-
"WebSearch": {
|
67
|
-
"document": "WebSearch API 是一个网页搜索服务,支持多种搜索引擎,可以获取网页的标题、URL、摘要和正文内容。",
|
68
|
-
"input": "WebSearchRequest",
|
69
|
-
"name": "网页搜索",
|
70
|
-
"output": "WebSearchResponse",
|
71
|
-
"status": "online"
|
72
65
|
}
|
73
66
|
},
|
74
67
|
"metadata": {
|
@@ -1185,206 +1178,6 @@
|
|
1185
1178
|
}
|
1186
1179
|
],
|
1187
1180
|
"usage": "out"
|
1188
|
-
},
|
1189
|
-
"WebPage": {
|
1190
|
-
"document": "网页搜索结果",
|
1191
|
-
"members": [
|
1192
|
-
{
|
1193
|
-
"disabled": false,
|
1194
|
-
"document": "标题",
|
1195
|
-
"example": "2025年政府财政改革报告",
|
1196
|
-
"member": "string",
|
1197
|
-
"name": "Title",
|
1198
|
-
"output_required": true,
|
1199
|
-
"required": false,
|
1200
|
-
"type": "string",
|
1201
|
-
"value_allowed_null": false
|
1202
|
-
},
|
1203
|
-
{
|
1204
|
-
"disabled": false,
|
1205
|
-
"document": "url",
|
1206
|
-
"example": "www.example.com",
|
1207
|
-
"member": "string",
|
1208
|
-
"name": "Url",
|
1209
|
-
"output_required": true,
|
1210
|
-
"required": false,
|
1211
|
-
"type": "string",
|
1212
|
-
"value_allowed_null": false
|
1213
|
-
},
|
1214
|
-
{
|
1215
|
-
"disabled": false,
|
1216
|
-
"document": "网页摘要\n注意:此字段可能返回 null,表示取不到有效值。",
|
1217
|
-
"example": "2025年财政改革措施为...",
|
1218
|
-
"member": "string",
|
1219
|
-
"name": "Summary",
|
1220
|
-
"output_required": false,
|
1221
|
-
"required": false,
|
1222
|
-
"type": "string",
|
1223
|
-
"value_allowed_null": true
|
1224
|
-
},
|
1225
|
-
{
|
1226
|
-
"disabled": false,
|
1227
|
-
"document": "网页收录时间。可能为空。\n注意:此字段可能返回 null,表示取不到有效值。",
|
1228
|
-
"example": "2025年4月9日",
|
1229
|
-
"member": "string",
|
1230
|
-
"name": "Time",
|
1231
|
-
"output_required": false,
|
1232
|
-
"required": false,
|
1233
|
-
"type": "string",
|
1234
|
-
"value_allowed_null": true
|
1235
|
-
},
|
1236
|
-
{
|
1237
|
-
"disabled": false,
|
1238
|
-
"document": "Markdown 格式的网页正文\n注意:此字段可能返回 null,表示取不到有效值。",
|
1239
|
-
"example": "2025年财政改革措施为...",
|
1240
|
-
"member": "string",
|
1241
|
-
"name": "Content",
|
1242
|
-
"output_required": false,
|
1243
|
-
"required": false,
|
1244
|
-
"type": "string",
|
1245
|
-
"value_allowed_null": true
|
1246
|
-
}
|
1247
|
-
],
|
1248
|
-
"usage": "both"
|
1249
|
-
},
|
1250
|
-
"WebSearchRequest": {
|
1251
|
-
"document": "WebSearch请求参数结构体",
|
1252
|
-
"members": [
|
1253
|
-
{
|
1254
|
-
"disabled": false,
|
1255
|
-
"document": "查询",
|
1256
|
-
"example": "2025年货币政策有哪些变化?",
|
1257
|
-
"member": "string",
|
1258
|
-
"name": "Query",
|
1259
|
-
"required": true,
|
1260
|
-
"type": "string"
|
1261
|
-
},
|
1262
|
-
{
|
1263
|
-
"disabled": false,
|
1264
|
-
"document": "搜索的网页数量,默认20",
|
1265
|
-
"example": "20",
|
1266
|
-
"member": "uint64",
|
1267
|
-
"name": "Count",
|
1268
|
-
"required": false,
|
1269
|
-
"type": "int"
|
1270
|
-
},
|
1271
|
-
{
|
1272
|
-
"disabled": false,
|
1273
|
-
"document": "指定域名,gov.cn 可匹配 *.gov.cn的域名。",
|
1274
|
-
"example": "gov.cn",
|
1275
|
-
"member": "string",
|
1276
|
-
"name": "Site",
|
1277
|
-
"required": false,
|
1278
|
-
"type": "string"
|
1279
|
-
},
|
1280
|
-
{
|
1281
|
-
"disabled": false,
|
1282
|
-
"document": "是否获取返回网页全文,默认 false。",
|
1283
|
-
"example": "false",
|
1284
|
-
"member": "bool",
|
1285
|
-
"name": "FetchContent",
|
1286
|
-
"required": false,
|
1287
|
-
"type": "bool"
|
1288
|
-
},
|
1289
|
-
{
|
1290
|
-
"disabled": false,
|
1291
|
-
"document": "域名白名单,在不指定 Site 时,只保存匹配白名单域名的网页。",
|
1292
|
-
"example": "[\"zhihu.com\"]",
|
1293
|
-
"member": "string",
|
1294
|
-
"name": "WhiteSites",
|
1295
|
-
"required": false,
|
1296
|
-
"type": "list"
|
1297
|
-
},
|
1298
|
-
{
|
1299
|
-
"disabled": false,
|
1300
|
-
"document": "域名黑名单,在不指定 Site 和白名单时,过滤黑名单中的域名。",
|
1301
|
-
"example": "[\"baidu.com\"]",
|
1302
|
-
"member": "string",
|
1303
|
-
"name": "BlackSites",
|
1304
|
-
"required": false,
|
1305
|
-
"type": "list"
|
1306
|
-
},
|
1307
|
-
{
|
1308
|
-
"disabled": false,
|
1309
|
-
"document": "秒级时间戳,搜索网页的开始时间,默认不限制开始时间。",
|
1310
|
-
"example": "1704038400",
|
1311
|
-
"member": "uint64",
|
1312
|
-
"name": "StartTime",
|
1313
|
-
"required": false,
|
1314
|
-
"type": "int"
|
1315
|
-
},
|
1316
|
-
{
|
1317
|
-
"disabled": false,
|
1318
|
-
"document": "秒级时间戳,搜索网页的结束时间,默认为现在。",
|
1319
|
-
"example": "1712592000",
|
1320
|
-
"member": "uint64",
|
1321
|
-
"name": "EndTime",
|
1322
|
-
"required": false,
|
1323
|
-
"type": "int"
|
1324
|
-
},
|
1325
|
-
{
|
1326
|
-
"disabled": false,
|
1327
|
-
"document": "指定搜索引擎,可选混合搜索 mixed,或 bing, baidu, sogou, 默认为 sogou",
|
1328
|
-
"example": "sogou",
|
1329
|
-
"member": "string",
|
1330
|
-
"name": "SearchEngine",
|
1331
|
-
"required": false,
|
1332
|
-
"type": "string"
|
1333
|
-
}
|
1334
|
-
],
|
1335
|
-
"type": "object"
|
1336
|
-
},
|
1337
|
-
"WebSearchResponse": {
|
1338
|
-
"document": "WebSearch返回参数结构体",
|
1339
|
-
"members": [
|
1340
|
-
{
|
1341
|
-
"disabled": false,
|
1342
|
-
"document": "查询",
|
1343
|
-
"example": "2025年货币政策有哪些变化?",
|
1344
|
-
"member": "string",
|
1345
|
-
"name": "Query",
|
1346
|
-
"output_required": false,
|
1347
|
-
"type": "string",
|
1348
|
-
"value_allowed_null": false
|
1349
|
-
},
|
1350
|
-
{
|
1351
|
-
"disabled": false,
|
1352
|
-
"document": "响应状态",
|
1353
|
-
"example": "completed",
|
1354
|
-
"member": "string",
|
1355
|
-
"name": "Status",
|
1356
|
-
"output_required": false,
|
1357
|
-
"type": "string",
|
1358
|
-
"value_allowed_null": false
|
1359
|
-
},
|
1360
|
-
{
|
1361
|
-
"disabled": false,
|
1362
|
-
"document": "执行搜索的引擎",
|
1363
|
-
"example": "sogou",
|
1364
|
-
"member": "string",
|
1365
|
-
"name": "SearchEngine",
|
1366
|
-
"output_required": false,
|
1367
|
-
"type": "string",
|
1368
|
-
"value_allowed_null": false
|
1369
|
-
},
|
1370
|
-
{
|
1371
|
-
"disabled": false,
|
1372
|
-
"document": "搜索结果",
|
1373
|
-
"example": "无",
|
1374
|
-
"member": "WebPage",
|
1375
|
-
"name": "Results",
|
1376
|
-
"output_required": false,
|
1377
|
-
"type": "list",
|
1378
|
-
"value_allowed_null": false
|
1379
|
-
},
|
1380
|
-
{
|
1381
|
-
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1382
|
-
"member": "string",
|
1383
|
-
"name": "RequestId",
|
1384
|
-
"type": "string"
|
1385
|
-
}
|
1386
|
-
],
|
1387
|
-
"type": "object"
|
1388
1181
|
}
|
1389
1182
|
},
|
1390
1183
|
"version": "1.0"
|
@@ -71,14 +71,6 @@
|
|
71
71
|
"output": "{\n \"Response\": {\n \"Data\": [\n {\n \"Document\": \"\",\n \"Index\": 1,\n \"RelevanceScore\": 0.9998511075973511\n },\n {\n \"Document\": \"\",\n \"Index\": 0,\n \"RelevanceScore\": 0.9996849298477173\n }\n ],\n \"RequestId\": \"cf9c5598-9625-436d-bc81-8dd3900e63c0\",\n \"Usage\": {\n \"TotalTokens\": 10\n }\n }\n}",
|
72
72
|
"title": "重排序"
|
73
73
|
}
|
74
|
-
],
|
75
|
-
"WebSearch": [
|
76
|
-
{
|
77
|
-
"document": "用户需要搜索 2025 年货币政策相关的网页内容,并指定来源为政府网站。",
|
78
|
-
"input": "POST / HTTP/1.1\nHost: es.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: WebSearch\n<公共请求参数>\n\n{\n \"Query\": \"2025年货币政策有哪些变化?\",\n \"Count\": 20,\n \"Site\": \"gov.cn\",\n \"FetchContent\": false,\n \"StartTime\": 1704038400,\n \"EndTime\": 1712592000,\n \"SearchEngine\": \"sogou\"\n}",
|
79
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"21739985-c9bf-4add-998b-7c5b055b3289\",\n \"Query\": \"2025年货币政策有哪些变化?\",\n \"Status\": \"completed\",\n \"SearchEngine\": \"sogou\",\n \"Results\": [\n {\n \"Title\": \"2025年政府财政改革报告\",\n \"Url\": \"www.example.gov.cn\",\n \"Summary\": \"2025年财政改革措施为...\",\n \"Time\": \"2025年4月9日\"\n }\n ]\n }\n}",
|
80
|
-
"title": "联网搜索"
|
81
|
-
}
|
82
74
|
]
|
83
75
|
},
|
84
76
|
"version": "1.0"
|
@@ -2251,7 +2251,7 @@
|
|
2251
2251
|
},
|
2252
2252
|
{
|
2253
2253
|
"disabled": false,
|
2254
|
-
"document": "**web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件\n<ul><li> <b>false(默认)</b>
|
2254
|
+
"document": "**web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件\n<ul><li> <b>false(默认)</b> :可以移动和删除控件</li>\n<li> <b>true</b> : 禁止移动和删除控件</li></ul>",
|
2255
2255
|
"example": "false",
|
2256
2256
|
"member": "bool",
|
2257
2257
|
"name": "ForbidMoveAndDelete",
|
@@ -4659,7 +4659,7 @@
|
|
4659
4659
|
},
|
4660
4660
|
{
|
4661
4661
|
"disabled": false,
|
4662
|
-
"document": "在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数
|
4662
|
+
"document": "在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数 只能二选一使用(注: \n<font color='red'>空数组代表未指定</font>),具体的控件类型如下\n\n<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>\n<li>SIGN_SEAL : 企业印章</li>\n<li>SIGN_PAGING_SEAL : 骑缝章</li>\n<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>\n<li>SIGN_APPROVE : 签批</li>\n<li>SIGN_OPINION : 签署意见</li>\n<li>SIGN_PAGING_SIGNATURE : 手写签名骑缝控件</li>\n<li>BUSI-FULL-NAME : 企业全称</li>\n<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>\n<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>\n<li>PERSONAL-NAME : 签署人姓名</li>\n<li>PERSONAL-MOBILE : 签署人手机号</li>\n<li>PERSONAL-IDCARD-TYPE : 签署人证件类型</li>\n<li>PERSONAL-IDCARD : 签署人证件号</li>\n<li>TEXT : 单行文本</li>\n<li>MULTI_LINE_TEXT : 多行文本</li>\n<li>CHECK_BOX : 勾选框</li>\n<li>SELECTOR : 选择器</li>\n<li>DIGIT : 数字</li>\n<li>DATE : 日期</li>\n<li>FILL_IMAGE : 图片</li>\n<li>ATTACHMENT : 附件</li>\n<li>EMAIL : 邮箱</li>\n<li>LOCATION : 地址</li>\n<li>EDUCATION : 学历</li>\n<li>GENDER : 性别</li>\n<li>DISTRICT : 省市区</li></ul>",
|
4663
4663
|
"example": "[\"MULTI_LINE_TEXT\"]",
|
4664
4664
|
"member": "string",
|
4665
4665
|
"name": "HideComponentTypes",
|
@@ -4668,7 +4668,7 @@
|
|
4668
4668
|
},
|
4669
4669
|
{
|
4670
4670
|
"disabled": false,
|
4671
|
-
"document": "在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数
|
4671
|
+
"document": "在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数 只能二选一使用(注: \n<font color='red'>空数组代表未指定</font>),具体的控件类型如下\n<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>\n<li>SIGN_SEAL : 企业印章</li>\n<li>SIGN_PAGING_SEAL : 骑缝章</li>\n<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>\n<li>SIGN_APPROVE : 签批</li>\n<li>SIGN_OPINION : 签署意见</li>\n<li>SIGN_PAGING_SIGNATURE : 手写签名骑缝控件</li>\n<li>BUSI-FULL-NAME : 企业全称</li>\n<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>\n<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>\n<li>PERSONAL-NAME : 签署人姓名</li>\n<li>PERSONAL-MOBILE : 签署人手机号</li>\n<li>PERSONAL-IDCARD-TYPE : 签署人证件类型</li>\n<li>PERSONAL-IDCARD : 签署人证件号</li>\n<li>TEXT : 单行文本</li>\n<li>MULTI_LINE_TEXT : 多行文本</li>\n<li>CHECK_BOX : 勾选框</li>\n<li>SELECTOR : 选择器</li>\n<li>DIGIT : 数字</li>\n<li>DATE : 日期</li>\n<li>FILL_IMAGE : 图片</li>\n<li>ATTACHMENT : 附件</li>\n<li>EMAIL : 邮箱</li>\n<li>LOCATION : 地址</li>\n<li>EDUCATION : 学历</li>\n<li>GENDER : 性别</li>\n<li>DISTRICT : 省市区</li></ul>",
|
4672
4672
|
"example": "[\"MULTI_LINE_TEXT\"]",
|
4673
4673
|
"member": "string",
|
4674
4674
|
"name": "ShowComponentTypes",
|
@@ -12215,7 +12215,7 @@
|
|
12215
12215
|
},
|
12216
12216
|
{
|
12217
12217
|
"disabled": false,
|
12218
|
-
"document": "合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **21** : 已解除</li></ul>\t",
|
12218
|
+
"document": "合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li> <li> **21** : 已解除</li></ul>\t",
|
12219
12219
|
"example": "1",
|
12220
12220
|
"member": "int64",
|
12221
12221
|
"name": "FlowStatus",
|
@@ -6426,7 +6426,7 @@
|
|
6426
6426
|
},
|
6427
6427
|
{
|
6428
6428
|
"disabled": false,
|
6429
|
-
"document": "**web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件\n<ul><li> <b>false(默认)</b>
|
6429
|
+
"document": "**web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件\n<ul><li> <b>false(默认)</b> :可以移动和删除控件</li>\n<li> <b>true</b> : 禁止移动和删除控件</li></ul>",
|
6430
6430
|
"example": "false",
|
6431
6431
|
"member": "bool",
|
6432
6432
|
"name": "ForbidMoveAndDelete",
|