tccli 3.0.1339.1__py2.py3-none-any.whl → 3.0.1341.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/bh/bh_client.py +326 -8
- tccli/services/bh/v20230418/api.json +547 -0
- tccli/services/bh/v20230418/examples.json +48 -0
- tccli/services/ccc/v20200210/api.json +1 -1
- tccli/services/cdb/v20170320/api.json +144 -144
- tccli/services/cdb/v20170320/examples.json +19 -19
- tccli/services/cdn/v20180606/examples.json +1 -1
- tccli/services/csip/v20221121/api.json +48 -10
- tccli/services/csip/v20221121/examples.json +11 -11
- tccli/services/cvm/v20170312/api.json +9 -0
- tccli/services/cwp/v20180228/api.json +106 -2
- tccli/services/cwp/v20180228/examples.json +12 -0
- tccli/services/cynosdb/v20190107/api.json +29 -2
- tccli/services/cynosdb/v20190107/examples.json +1 -1
- tccli/services/dsgc/v20190723/api.json +215 -17
- tccli/services/emr/emr_client.py +363 -310
- tccli/services/emr/v20190103/api.json +299 -0
- tccli/services/emr/v20190103/examples.json +8 -0
- tccli/services/ess/v20201111/api.json +16 -5
- tccli/services/essbasic/v20210526/api.json +1 -1
- tccli/services/gs/v20191118/api.json +10 -1
- tccli/services/ims/v20200713/api.json +1 -1
- tccli/services/ims/v20200713/examples.json +1 -1
- tccli/services/kms/kms_client.py +915 -120
- tccli/services/kms/v20190118/api.json +1104 -27
- tccli/services/kms/v20190118/examples.json +126 -0
- tccli/services/live/v20180801/api.json +9 -0
- tccli/services/live/v20180801/examples.json +4 -4
- tccli/services/lke/lke_client.py +228 -16
- tccli/services/lke/v20231130/api.json +1490 -217
- tccli/services/lke/v20231130/examples.json +33 -1
- tccli/services/mqtt/v20240516/api.json +80 -0
- tccli/services/mqtt/v20240516/examples.json +6 -0
- tccli/services/organization/v20210331/api.json +11 -0
- tccli/services/organization/v20210331/examples.json +1 -1
- tccli/services/partners/v20180321/api.json +2 -2
- tccli/services/postgres/v20170312/api.json +4 -4
- tccli/services/ses/v20201002/api.json +8 -8
- tccli/services/tcss/v20201101/api.json +10 -0
- tccli/services/thpc/v20230321/api.json +32 -2
- tccli/services/tione/v20211111/api.json +11 -0
- tccli/services/trocket/trocket_client.py +53 -0
- tccli/services/trocket/v20230308/api.json +233 -143
- tccli/services/trocket/v20230308/examples.json +14 -6
- tccli/services/vpc/v20170312/api.json +9 -0
- tccli/services/waf/v20180125/api.json +59 -21
- tccli/services/wedata/v20210820/api.json +432 -10
- tccli/services/wedata/v20210820/examples.json +17 -1
- tccli/services/wedata/wedata_client.py +114 -8
- {tccli-3.0.1339.1.dist-info → tccli-3.0.1341.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1339.1.dist-info → tccli-3.0.1341.1.dist-info}/RECORD +55 -55
- {tccli-3.0.1339.1.dist-info → tccli-3.0.1341.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1339.1.dist-info → tccli-3.0.1341.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1339.1.dist-info → tccli-3.0.1341.1.dist-info}/license_files/LICENSE +0 -0
@@ -301,6 +301,13 @@
|
|
301
301
|
"output": "DescribeServiceNodeInfosResponse",
|
302
302
|
"status": "online"
|
303
303
|
},
|
304
|
+
"DescribeSparkApplications": {
|
305
|
+
"document": "获取spark应用列表",
|
306
|
+
"input": "DescribeSparkApplicationsRequest",
|
307
|
+
"name": "获取Spark任务列表",
|
308
|
+
"output": "DescribeSparkApplicationsResponse",
|
309
|
+
"status": "online"
|
310
|
+
},
|
304
311
|
"DescribeSparkQueries": {
|
305
312
|
"document": "查询Spark查询信息列表",
|
306
313
|
"input": "DescribeSparkQueriesRequest",
|
@@ -3398,6 +3405,15 @@
|
|
3398
3405
|
"name": "CosBucket",
|
3399
3406
|
"required": false,
|
3400
3407
|
"type": "string"
|
3408
|
+
},
|
3409
|
+
{
|
3410
|
+
"disabled": false,
|
3411
|
+
"document": "节点标识信息,目前只提供给tf平台使用",
|
3412
|
+
"example": "无",
|
3413
|
+
"member": "NodeMark",
|
3414
|
+
"name": "NodeMarks",
|
3415
|
+
"required": false,
|
3416
|
+
"type": "list"
|
3401
3417
|
}
|
3402
3418
|
],
|
3403
3419
|
"type": "object"
|
@@ -3769,6 +3785,15 @@
|
|
3769
3785
|
"name": "CosBucket",
|
3770
3786
|
"required": false,
|
3771
3787
|
"type": "string"
|
3788
|
+
},
|
3789
|
+
{
|
3790
|
+
"disabled": false,
|
3791
|
+
"document": "节点标识信息,目前只提供给tf平台使用",
|
3792
|
+
"example": "无",
|
3793
|
+
"member": "NodeMark",
|
3794
|
+
"name": "NodeMarks",
|
3795
|
+
"required": false,
|
3796
|
+
"type": "list"
|
3772
3797
|
}
|
3773
3798
|
],
|
3774
3799
|
"type": "object"
|
@@ -7197,6 +7222,89 @@
|
|
7197
7222
|
],
|
7198
7223
|
"type": "object"
|
7199
7224
|
},
|
7225
|
+
"DescribeSparkApplicationsRequest": {
|
7226
|
+
"document": "DescribeSparkApplications请求参数结构体",
|
7227
|
+
"members": [
|
7228
|
+
{
|
7229
|
+
"disabled": false,
|
7230
|
+
"document": "集群id",
|
7231
|
+
"example": "emr-xxxx",
|
7232
|
+
"member": "string",
|
7233
|
+
"name": "InstanceId",
|
7234
|
+
"required": true,
|
7235
|
+
"type": "string"
|
7236
|
+
},
|
7237
|
+
{
|
7238
|
+
"disabled": false,
|
7239
|
+
"document": "查询开始时间",
|
7240
|
+
"example": "1746498971",
|
7241
|
+
"member": "int64",
|
7242
|
+
"name": "StartTime",
|
7243
|
+
"required": true,
|
7244
|
+
"type": "int"
|
7245
|
+
},
|
7246
|
+
{
|
7247
|
+
"disabled": false,
|
7248
|
+
"document": "查询结束时间",
|
7249
|
+
"example": "1746498972",
|
7250
|
+
"member": "int64",
|
7251
|
+
"name": "EndTime",
|
7252
|
+
"required": true,
|
7253
|
+
"type": "int"
|
7254
|
+
},
|
7255
|
+
{
|
7256
|
+
"disabled": false,
|
7257
|
+
"document": "每一页条数",
|
7258
|
+
"example": "100",
|
7259
|
+
"member": "int64",
|
7260
|
+
"name": "PageSize",
|
7261
|
+
"required": true,
|
7262
|
+
"type": "int"
|
7263
|
+
},
|
7264
|
+
{
|
7265
|
+
"disabled": false,
|
7266
|
+
"document": "第几页",
|
7267
|
+
"example": "1",
|
7268
|
+
"member": "int64",
|
7269
|
+
"name": "Page",
|
7270
|
+
"required": true,
|
7271
|
+
"type": "int"
|
7272
|
+
}
|
7273
|
+
],
|
7274
|
+
"type": "object"
|
7275
|
+
},
|
7276
|
+
"DescribeSparkApplicationsResponse": {
|
7277
|
+
"document": "DescribeSparkApplications返回参数结构体",
|
7278
|
+
"members": [
|
7279
|
+
{
|
7280
|
+
"disabled": false,
|
7281
|
+
"document": "返回数量",
|
7282
|
+
"example": "5",
|
7283
|
+
"member": "int64",
|
7284
|
+
"name": "TotalCount",
|
7285
|
+
"output_required": true,
|
7286
|
+
"type": "int",
|
7287
|
+
"value_allowed_null": false
|
7288
|
+
},
|
7289
|
+
{
|
7290
|
+
"disabled": false,
|
7291
|
+
"document": "spark应用列表",
|
7292
|
+
"example": "无",
|
7293
|
+
"member": "SparkApplicationsList",
|
7294
|
+
"name": "ResultList",
|
7295
|
+
"output_required": true,
|
7296
|
+
"type": "list",
|
7297
|
+
"value_allowed_null": false
|
7298
|
+
},
|
7299
|
+
{
|
7300
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
7301
|
+
"member": "string",
|
7302
|
+
"name": "RequestId",
|
7303
|
+
"type": "string"
|
7304
|
+
}
|
7305
|
+
],
|
7306
|
+
"type": "object"
|
7307
|
+
},
|
7200
7308
|
"DescribeSparkQueriesRequest": {
|
7201
7309
|
"document": "DescribeSparkQueries请求参数结构体",
|
7202
7310
|
"members": [
|
@@ -13119,6 +13227,7 @@
|
|
13119
13227
|
"example": "无",
|
13120
13228
|
"member": "Resource",
|
13121
13229
|
"name": "MasterResourceSpec",
|
13230
|
+
"output_required": true,
|
13122
13231
|
"required": false,
|
13123
13232
|
"type": "object",
|
13124
13233
|
"value_allowed_null": false
|
@@ -13129,6 +13238,7 @@
|
|
13129
13238
|
"example": "无",
|
13130
13239
|
"member": "Resource",
|
13131
13240
|
"name": "CoreResourceSpec",
|
13241
|
+
"output_required": true,
|
13132
13242
|
"required": false,
|
13133
13243
|
"type": "object",
|
13134
13244
|
"value_allowed_null": false
|
@@ -13139,6 +13249,7 @@
|
|
13139
13249
|
"example": "无",
|
13140
13250
|
"member": "Resource",
|
13141
13251
|
"name": "TaskResourceSpec",
|
13252
|
+
"output_required": true,
|
13142
13253
|
"required": false,
|
13143
13254
|
"type": "object",
|
13144
13255
|
"value_allowed_null": false
|
@@ -13149,6 +13260,7 @@
|
|
13149
13260
|
"example": "2",
|
13150
13261
|
"member": "int64",
|
13151
13262
|
"name": "MasterCount",
|
13263
|
+
"output_required": true,
|
13152
13264
|
"required": false,
|
13153
13265
|
"type": "int",
|
13154
13266
|
"value_allowed_null": false
|
@@ -13159,6 +13271,7 @@
|
|
13159
13271
|
"example": "3",
|
13160
13272
|
"member": "int64",
|
13161
13273
|
"name": "CoreCount",
|
13274
|
+
"output_required": true,
|
13162
13275
|
"required": false,
|
13163
13276
|
"type": "int",
|
13164
13277
|
"value_allowed_null": false
|
@@ -13169,6 +13282,7 @@
|
|
13169
13282
|
"example": "0",
|
13170
13283
|
"member": "int64",
|
13171
13284
|
"name": "TaskCount",
|
13285
|
+
"output_required": true,
|
13172
13286
|
"required": false,
|
13173
13287
|
"type": "int",
|
13174
13288
|
"value_allowed_null": false
|
@@ -13179,6 +13293,7 @@
|
|
13179
13293
|
"example": "无",
|
13180
13294
|
"member": "Resource",
|
13181
13295
|
"name": "CommonResourceSpec",
|
13296
|
+
"output_required": true,
|
13182
13297
|
"required": false,
|
13183
13298
|
"type": "object",
|
13184
13299
|
"value_allowed_null": false
|
@@ -13189,6 +13304,7 @@
|
|
13189
13304
|
"example": "3",
|
13190
13305
|
"member": "int64",
|
13191
13306
|
"name": "CommonCount",
|
13307
|
+
"output_required": true,
|
13192
13308
|
"required": false,
|
13193
13309
|
"type": "int",
|
13194
13310
|
"value_allowed_null": false
|
@@ -13822,10 +13938,59 @@
|
|
13822
13938
|
"output_required": false,
|
13823
13939
|
"type": "list",
|
13824
13940
|
"value_allowed_null": false
|
13941
|
+
},
|
13942
|
+
{
|
13943
|
+
"disabled": false,
|
13944
|
+
"document": "节点标注信息,目前只提供给tf平台使用",
|
13945
|
+
"example": "\"core1\"",
|
13946
|
+
"member": "string",
|
13947
|
+
"name": "NodeMark",
|
13948
|
+
"output_required": false,
|
13949
|
+
"type": "string",
|
13950
|
+
"value_allowed_null": false
|
13825
13951
|
}
|
13826
13952
|
],
|
13827
13953
|
"usage": "out"
|
13828
13954
|
},
|
13955
|
+
"NodeMark": {
|
13956
|
+
"document": "节点标记信息",
|
13957
|
+
"members": [
|
13958
|
+
{
|
13959
|
+
"disabled": false,
|
13960
|
+
"document": "节点类型:master,core,task,router",
|
13961
|
+
"example": "master",
|
13962
|
+
"member": "string",
|
13963
|
+
"name": "NodeType",
|
13964
|
+
"output_required": false,
|
13965
|
+
"required": false,
|
13966
|
+
"type": "string",
|
13967
|
+
"value_allowed_null": false
|
13968
|
+
},
|
13969
|
+
{
|
13970
|
+
"disabled": false,
|
13971
|
+
"document": "节点标记信息,目前只提供给tf平台使用,作为入参区分同类型节点信息",
|
13972
|
+
"example": "Master_1",
|
13973
|
+
"member": "string",
|
13974
|
+
"name": "NodeNames",
|
13975
|
+
"output_required": false,
|
13976
|
+
"required": false,
|
13977
|
+
"type": "list",
|
13978
|
+
"value_allowed_null": false
|
13979
|
+
},
|
13980
|
+
{
|
13981
|
+
"disabled": false,
|
13982
|
+
"document": "可用区名称",
|
13983
|
+
"example": "ap-guangzhou-1",
|
13984
|
+
"member": "string",
|
13985
|
+
"name": "Zone",
|
13986
|
+
"output_required": false,
|
13987
|
+
"required": false,
|
13988
|
+
"type": "string",
|
13989
|
+
"value_allowed_null": false
|
13990
|
+
}
|
13991
|
+
],
|
13992
|
+
"usage": "both"
|
13993
|
+
},
|
13829
13994
|
"NodeRenewPriceDetail": {
|
13830
13995
|
"document": "节点续费询价明细",
|
13831
13996
|
"members": [
|
@@ -16856,6 +17021,15 @@
|
|
16856
17021
|
"name": "ScaleOutServiceConfGroupsInfo",
|
16857
17022
|
"required": false,
|
16858
17023
|
"type": "list"
|
17024
|
+
},
|
17025
|
+
{
|
17026
|
+
"disabled": false,
|
17027
|
+
"document": "节点标记信息,当前只提供给tf平台使用",
|
17028
|
+
"example": "无",
|
17029
|
+
"member": "NodeMark",
|
17030
|
+
"name": "NodeMarks",
|
17031
|
+
"required": false,
|
17032
|
+
"type": "object"
|
16859
17033
|
}
|
16860
17034
|
],
|
16861
17035
|
"type": "object"
|
@@ -17195,6 +17369,15 @@
|
|
17195
17369
|
"name": "ComputeResourceAdvanceParams",
|
17196
17370
|
"required": false,
|
17197
17371
|
"type": "object"
|
17372
|
+
},
|
17373
|
+
{
|
17374
|
+
"disabled": false,
|
17375
|
+
"document": "节点标记信息,目前只提供tf平台使用",
|
17376
|
+
"example": "无",
|
17377
|
+
"member": "NodeMark",
|
17378
|
+
"name": "NodeMarks",
|
17379
|
+
"required": false,
|
17380
|
+
"type": "object"
|
17198
17381
|
}
|
17199
17382
|
],
|
17200
17383
|
"type": "object"
|
@@ -17980,6 +18163,122 @@
|
|
17980
18163
|
],
|
17981
18164
|
"usage": "out"
|
17982
18165
|
},
|
18166
|
+
"SparkApplicationsList": {
|
18167
|
+
"document": "spark任务列表",
|
18168
|
+
"members": [
|
18169
|
+
{
|
18170
|
+
"disabled": false,
|
18171
|
+
"document": "应用id",
|
18172
|
+
"example": "spark-49cdc7a5b06a46fca99c497a5b47e7f1",
|
18173
|
+
"member": "string",
|
18174
|
+
"name": "ID",
|
18175
|
+
"output_required": true,
|
18176
|
+
"type": "string",
|
18177
|
+
"value_allowed_null": false
|
18178
|
+
},
|
18179
|
+
{
|
18180
|
+
"disabled": false,
|
18181
|
+
"document": "应用名称",
|
18182
|
+
"example": "kyuubi_CONNECTION_SPARK_SQL_hadoop_7043f4f2-c8b6-4681-8e7a-873e477c6db7",
|
18183
|
+
"member": "string",
|
18184
|
+
"name": "Name",
|
18185
|
+
"output_required": true,
|
18186
|
+
"type": "string",
|
18187
|
+
"value_allowed_null": false
|
18188
|
+
},
|
18189
|
+
{
|
18190
|
+
"disabled": false,
|
18191
|
+
"document": "用户",
|
18192
|
+
"example": "hadoop",
|
18193
|
+
"member": "string",
|
18194
|
+
"name": "User",
|
18195
|
+
"output_required": true,
|
18196
|
+
"type": "string",
|
18197
|
+
"value_allowed_null": false
|
18198
|
+
},
|
18199
|
+
{
|
18200
|
+
"disabled": false,
|
18201
|
+
"document": "起始时间",
|
18202
|
+
"example": "1746003194374",
|
18203
|
+
"member": "int64",
|
18204
|
+
"name": "StartTime",
|
18205
|
+
"output_required": true,
|
18206
|
+
"type": "int",
|
18207
|
+
"value_allowed_null": false
|
18208
|
+
},
|
18209
|
+
{
|
18210
|
+
"disabled": false,
|
18211
|
+
"document": "结束时间",
|
18212
|
+
"example": "1746003394835",
|
18213
|
+
"member": "int64",
|
18214
|
+
"name": "EndTime",
|
18215
|
+
"output_required": true,
|
18216
|
+
"type": "int",
|
18217
|
+
"value_allowed_null": false
|
18218
|
+
},
|
18219
|
+
{
|
18220
|
+
"disabled": false,
|
18221
|
+
"document": "持续时间",
|
18222
|
+
"example": "200461",
|
18223
|
+
"member": "int64",
|
18224
|
+
"name": "Duration",
|
18225
|
+
"output_required": true,
|
18226
|
+
"type": "int",
|
18227
|
+
"value_allowed_null": false
|
18228
|
+
},
|
18229
|
+
{
|
18230
|
+
"disabled": false,
|
18231
|
+
"document": "状态",
|
18232
|
+
"example": "completed",
|
18233
|
+
"member": "string",
|
18234
|
+
"name": "State",
|
18235
|
+
"output_required": true,
|
18236
|
+
"type": "string",
|
18237
|
+
"value_allowed_null": false
|
18238
|
+
},
|
18239
|
+
{
|
18240
|
+
"disabled": false,
|
18241
|
+
"document": "类型",
|
18242
|
+
"example": "SPARK",
|
18243
|
+
"member": "string",
|
18244
|
+
"name": "ApplicationType",
|
18245
|
+
"output_required": true,
|
18246
|
+
"type": "string",
|
18247
|
+
"value_allowed_null": false
|
18248
|
+
},
|
18249
|
+
{
|
18250
|
+
"disabled": false,
|
18251
|
+
"document": "核数*秒",
|
18252
|
+
"example": "478",
|
18253
|
+
"member": "int64",
|
18254
|
+
"name": "CoreSeconds",
|
18255
|
+
"output_required": true,
|
18256
|
+
"type": "int",
|
18257
|
+
"value_allowed_null": false
|
18258
|
+
},
|
18259
|
+
{
|
18260
|
+
"disabled": false,
|
18261
|
+
"document": "内存MB*秒",
|
18262
|
+
"example": "489472 MB Seconds",
|
18263
|
+
"member": "string",
|
18264
|
+
"name": "MemorySeconds",
|
18265
|
+
"output_required": true,
|
18266
|
+
"type": "string",
|
18267
|
+
"value_allowed_null": false
|
18268
|
+
},
|
18269
|
+
{
|
18270
|
+
"disabled": false,
|
18271
|
+
"document": "洞察结果",
|
18272
|
+
"example": "UNKNOWN",
|
18273
|
+
"member": "string",
|
18274
|
+
"name": "Insight",
|
18275
|
+
"output_required": true,
|
18276
|
+
"type": "string",
|
18277
|
+
"value_allowed_null": false
|
18278
|
+
}
|
18279
|
+
],
|
18280
|
+
"usage": "out"
|
18281
|
+
},
|
17983
18282
|
"SparkQuery": {
|
17984
18283
|
"document": "spark查询详情",
|
17985
18284
|
"members": [
|
@@ -344,6 +344,14 @@
|
|
344
344
|
"title": "查询服务进程信息"
|
345
345
|
}
|
346
346
|
],
|
347
|
+
"DescribeSparkApplications": [
|
348
|
+
{
|
349
|
+
"document": "",
|
350
|
+
"input": "POST / HTTP/1.1\nHost: emr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeInsightList\n<公共请求参数>\n\n{\n \"InstanceId\": \"emr-j14o941k\",\n \"PageSize\": 10,\n \"StartTime\": 1745944098,\n \"EndTime\": 1746030498,\n \"Page\": 1\n}",
|
351
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"RequestId-1746503327\",\n \"ResultList\": [\n {\n \"ID\": \"spark-49cdc7a5b06a46fca99c497a5b47e7f1\",\n \"Name\": \"kyuubi_CONNECTION_SPARK_SQL_hadoop_7043f4f2-c8b6-4681-8e7a-873e477c6db7\",\n \"User\": \"hadoop\",\n \"StartTime\": 1746003194374,\n \"EndTime\": 1746003394835,\n \"Duration\": 200461,\n \"State\": \"completed\",\n \"ApplicationType\": \"SPARK\",\n \"CoreSeconds\": 478,\n \"MemorySeconds\": \"489472 MB Seconds\",\n \"Insight\": \"UNKNOWN\"\n }\n ],\n \"TotalCount\": 1\n }\n}",
|
352
|
+
"title": "获取spark应用列表"
|
353
|
+
}
|
354
|
+
],
|
347
355
|
"DescribeSparkQueries": [
|
348
356
|
{
|
349
357
|
"document": "",
|
@@ -99,7 +99,7 @@
|
|
99
99
|
"status": "online"
|
100
100
|
},
|
101
101
|
"CreateDynamicFlowApprover": {
|
102
|
-
"document": "此接口(CreateDynamicFlowApprover)接口主要用于补充动态签署方2.0合同的签署方信息,包括但不限于名字、手机号和签署区域等信息。\n\n\n**功能开通**\n动态签署方2.0功能的使用需要先<font color=\"red\">联系产品经理开通模块化计费功能</font>,然后到控制台中打开此功能。详细的使用说明请参考<a href=\"https://qian.tencent.com/developers/company/dynamic_signer_v2\" target=\"_blank\">动态签署方2.0</a>文档。\n\n**使用条件**\n- 在发起合同时,必须将OpenDynamicSignFlow参数设置为true,以确保合同以动态签署方2.0的方式处理,否则默认处理为普通合同。\n- 此接口只能在合同处于非终态时调用。一旦合同进入终态(例如:过期、拒签或撤销),将无法通过此接口添加新的签署方。\n\n\n动态签署方2.0合同<font color=\"red\">不会自动结束(整个合同变为签署完成)</font>,需要通过调用<a href=\"https://qian.tencent.com/developers/companyApis/operateFlows/ArchiveDynamicFlow/\" target=\"_blank\">结束动态签署合同</a>来手动结束签署流程。整体的流程如下图\n\n",
|
102
|
+
"document": "此接口(CreateDynamicFlowApprover)接口主要用于补充动态签署方2.0合同的签署方信息,包括但不限于名字、手机号和签署区域等信息。\n\n\n**功能开通**\n动态签署方2.0功能的使用需要先<font color=\"red\">联系产品经理开通模块化计费功能</font>,然后到控制台中打开此功能。详细的使用说明请参考<a href=\"https://qian.tencent.com/developers/company/dynamic_signer_v2\" target=\"_blank\">动态签署方2.0</a>文档。\n\n**使用条件**\n- 在发起合同时,必须将OpenDynamicSignFlow参数设置为true,以确保合同以动态签署方2.0的方式处理,否则默认处理为普通合同。\n- 此接口只能在合同处于非终态时调用。一旦合同进入终态(例如:过期、拒签或撤销),将无法通过此接口添加新的签署方。\n- 此接口补充的动态签署人暂不支持他方企业自动签署。\n\n\n动态签署方2.0合同<font color=\"red\">不会自动结束(整个合同变为签署完成)</font>,需要通过调用<a href=\"https://qian.tencent.com/developers/companyApis/operateFlows/ArchiveDynamicFlow/\" target=\"_blank\">结束动态签署合同</a>来手动结束签署流程。整体的流程如下图\n\n",
|
103
103
|
"input": "CreateDynamicFlowApproverRequest",
|
104
104
|
"name": "补充动态签署合同的签署方",
|
105
105
|
"output": "CreateDynamicFlowApproverResponse",
|
@@ -10156,7 +10156,7 @@
|
|
10156
10156
|
"example": "10",
|
10157
10157
|
"member": "int64",
|
10158
10158
|
"name": "Limit",
|
10159
|
-
"required":
|
10159
|
+
"required": false,
|
10160
10160
|
"type": "int"
|
10161
10161
|
},
|
10162
10162
|
{
|
@@ -15197,7 +15197,7 @@
|
|
15197
15197
|
"members": [
|
15198
15198
|
{
|
15199
15199
|
"disabled": false,
|
15200
|
-
"document": "
|
15200
|
+
"document": "<font color=\"red\">字段不再使用</font>,法人姓名",
|
15201
15201
|
"example": "张三",
|
15202
15202
|
"member": "string",
|
15203
15203
|
"name": "LegalName",
|
@@ -15219,7 +15219,7 @@
|
|
15219
15219
|
},
|
15220
15220
|
{
|
15221
15221
|
"disabled": false,
|
15222
|
-
"document": "
|
15222
|
+
"document": "<font color=\"red\">字段不再使用</font>,社会统一信用代码",
|
15223
15223
|
"example": "91110108772551611J",
|
15224
15224
|
"member": "string",
|
15225
15225
|
"name": "UnifiedSocialCreditCode",
|
@@ -15229,7 +15229,7 @@
|
|
15229
15229
|
"value_allowed_null": false
|
15230
15230
|
},
|
15231
15231
|
{
|
15232
|
-
"disabled":
|
15232
|
+
"disabled": true,
|
15233
15233
|
"document": "指定企业认证的授权方式 支持多选:\n\n<ul>\n<li><strong>2</strong>: 法人授权方式</li>\n<li><strong>5</strong>: 授权书+对公打款方式</li>\n</ul>",
|
15234
15234
|
"example": "[2,5]",
|
15235
15235
|
"member": "uint64",
|
@@ -15238,6 +15238,17 @@
|
|
15238
15238
|
"required": false,
|
15239
15239
|
"type": "list",
|
15240
15240
|
"value_allowed_null": false
|
15241
|
+
},
|
15242
|
+
{
|
15243
|
+
"disabled": false,
|
15244
|
+
"document": "指定企业认证的授权方式 支持多选:\n\n<ul>\n<li><strong>2</strong>: 法人授权方式</li>\n<li><strong>5</strong>: 授权书+对公打款方式</li>\n</ul>",
|
15245
|
+
"example": "2",
|
15246
|
+
"member": "int64",
|
15247
|
+
"name": "AuthorizationType",
|
15248
|
+
"output_required": false,
|
15249
|
+
"required": false,
|
15250
|
+
"type": "int",
|
15251
|
+
"value_allowed_null": false
|
15241
15252
|
}
|
15242
15253
|
],
|
15243
15254
|
"usage": "both"
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"status": "online"
|
72
72
|
},
|
73
73
|
"ChannelCreateDynamicFlowApprover": {
|
74
|
-
"document": "接口(ChannelCreateDynamicFlowApprover)用来补充<a href=\"https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles\" target=\"_blank\">用PDF文件创建签署流程</a>发起的动态合同的签署人信息\n**注**: \n<ul>\n<li>此接口需要保证:渠道企业已开启:模块化计费能力,</li>\n<li>此接口需要保证:渠道应用已开启:动态签署人2.0能力</li>\n<li>此接口需要保证:合同发起时指定开启了动态合同</li>\n<li>此接口补充的动态签署人传参规则,请参考接口:<a href=\"https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles\" target=\"_blank\">用PDF文件创建签署流程</a>的签署人传参规则</li>\n</ul>",
|
74
|
+
"document": "接口(ChannelCreateDynamicFlowApprover)用来补充<a href=\"https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles\" target=\"_blank\">用PDF文件创建签署流程</a>发起的动态合同的签署人信息\n**注**: \n<ul>\n<li>此接口需要保证:渠道企业已开启:模块化计费能力,</li>\n<li>此接口需要保证:渠道应用已开启:动态签署人2.0能力</li>\n<li>此接口需要保证:合同发起时指定开启了动态合同</li>\n<li>此接口补充的动态签署人传参规则,请参考接口:<a href=\"https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles\" target=\"_blank\">用PDF文件创建签署流程</a>的签署人传参规则</li>\n<li>此接口补充的动态签署人暂不支持他方企业自动签署。</li>\n</ul>",
|
75
75
|
"input": "ChannelCreateDynamicFlowApproverRequest",
|
76
76
|
"name": "渠道版补充动态合同签署人接口",
|
77
77
|
"output": "ChannelCreateDynamicFlowApproverResponse",
|
@@ -2863,12 +2863,21 @@
|
|
2863
2863
|
{
|
2864
2864
|
"disabled": false,
|
2865
2865
|
"document": "镜像 ID 列表",
|
2866
|
-
"example": "[\"
|
2866
|
+
"example": "[\"cai-abcd1234\"]",
|
2867
2867
|
"member": "string",
|
2868
2868
|
"name": "AndroidInstanceImageIds",
|
2869
2869
|
"required": false,
|
2870
2870
|
"type": "list"
|
2871
2871
|
},
|
2872
|
+
{
|
2873
|
+
"disabled": false,
|
2874
|
+
"document": "镜像可用区列表",
|
2875
|
+
"example": "[\"ap-shenzhen-1\"]",
|
2876
|
+
"member": "string",
|
2877
|
+
"name": "AndroidInstanceImageZones",
|
2878
|
+
"required": false,
|
2879
|
+
"type": "list"
|
2880
|
+
},
|
2872
2881
|
{
|
2873
2882
|
"disabled": false,
|
2874
2883
|
"document": "偏移量,默认为0",
|
@@ -295,7 +295,7 @@
|
|
295
295
|
{
|
296
296
|
"disabled": false,
|
297
297
|
"document": "扩展字段,用于特定信息返回,不同客户/Biztype下返回信息不同。\n注意:此字段可能返回 null,表示取不到有效值。\n注意:此字段可能返回 null,表示取不到有效值。",
|
298
|
-
"example": "
|
298
|
+
"example": "{\\\"TerrorInfo\\\":[{\\\"Label\\\":\\\"Terror\\\"}}",
|
299
299
|
"member": "string",
|
300
300
|
"name": "Extra",
|
301
301
|
"output_required": true,
|
@@ -4,7 +4,7 @@
|
|
4
4
|
{
|
5
5
|
"document": "图片同步检测",
|
6
6
|
"input": "POST / HTTP/1.1\nHost: ims.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ImageModeration\n<公共请求参数>\n\n{\n \"BizType\": \"test_1001\",\n \"DataId\": \"1213\",\n \"FileUrl\": \"https://xxx.jpg\"\n}",
|
7
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"a61237dd-c2a0-43e7-a3da-d27022d39ba7\",\n \"DataId\": \"a61237dd-c2a0-43e7-a3da-d27022d39ba7\",\n \"BizType\": \"test_1001\",\n \"Suggestion\": \"Block\",\n \"Label\": \"Porn\",\n \"SubLabel\": \"SexyBehavior\",\n \"Score\": 90,\n \"HitFlag\": 1,\n \"LabelResults\": [\n {\n \"Scene\": \"Porn\",\n \"Suggestion\": \"Block\",\n \"Label\": \"Porn\",\n \"SubLabel\": \"SexyBehavior\",\n \"Score\": 90,\n \"Details\": [\n {\n \"Id\": 0,\n \"Name\": \"SexBehavior\",\n \"Score\": 90\n }\n ]\n }\n ],\n \"ObjectResults\": [\n {\n \"Scene\": \"QrCode\",\n \"Suggestion\": \"Block\",\n \"Label\": \"Ad\",\n \"SubLabel\": \"\",\n \"Score\": 100,\n \"Names\": [\n \"QRCODE\"\n ],\n \"Details\": [\n {\n \"Id\": 0,\n \"Name\": \"QRCODE\",\n \"Value\": \"https://test.com/test\",\n \"Score\": 100,\n \"Location\": {\n \"X\": 155.01746,\n \"Y\": 396.01746,\n \"Width\": 769.9824,\n \"Height\": 769.98254,\n \"Rotate\": 0\n },\n \"SubLabel\": \"
|
7
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"a61237dd-c2a0-43e7-a3da-d27022d39ba7\",\n \"DataId\": \"a61237dd-c2a0-43e7-a3da-d27022d39ba7\",\n \"BizType\": \"test_1001\",\n \"Suggestion\": \"Block\",\n \"Label\": \"Porn\",\n \"SubLabel\": \"SexyBehavior\",\n \"Score\": 90,\n \"HitFlag\": 1,\n \"LabelResults\": [\n {\n \"Scene\": \"Porn\",\n \"Suggestion\": \"Block\",\n \"Label\": \"Porn\",\n \"SubLabel\": \"SexyBehavior\",\n \"Score\": 90,\n \"Details\": [\n {\n \"Id\": 0,\n \"Name\": \"SexBehavior\",\n \"Score\": 90\n }\n ]\n }\n ],\n \"ObjectResults\": [\n {\n \"Scene\": \"QrCode\",\n \"Suggestion\": \"Block\",\n \"Label\": \"Ad\",\n \"SubLabel\": \"\",\n \"Score\": 100,\n \"Names\": [\n \"QRCODE\"\n ],\n \"Details\": [\n {\n \"Id\": 0,\n \"Name\": \"QRCODE\",\n \"Value\": \"https://test.com/test\",\n \"Score\": 100,\n \"Location\": {\n \"X\": 155.01746,\n \"Y\": 396.01746,\n \"Width\": 769.9824,\n \"Height\": 769.98254,\n \"Rotate\": 0\n },\n \"SubLabel\": \"QRCODE\",\n \"GroupId\": \"group_id\",\n \"ObjectId\": \"object_id\"\n }\n ]\n }\n ],\n \"OcrResults\": [\n {\n \"HitFlag\": 0,\n \"Scene\": \"OCR\",\n \"Suggestion\": \"Pass\",\n \"Label\": \"Normal\",\n \"SubLabel\": \"\",\n \"Score\": 0,\n \"Text\": \"hello world\",\n \"Details\": [\n {\n \"Text\": \"hello world\",\n \"Label\": \"\",\n \"LibId\": \"\",\n \"LibName\": \"\",\n \"Keywords\": [],\n \"Rate\": 0,\n \"Score\": 0,\n \"Location\": {\n \"X\": 8,\n \"Y\": 0,\n \"Width\": 111,\n \"Height\": 19,\n \"Rotate\": 0\n }\n }\n ]\n }\n ],\n \"LibResults\": [\n {\n \"Scene\": \"Similar\",\n \"Label\": \"Porn\",\n \"SubLabel\": \"\",\n \"Score\": 99,\n \"Details\": [\n {\n \"LibName\": \"123\",\n \"Score\": 99,\n \"Label\": \"Porn\",\n \"Tag\": \"\",\n \"ImageId\": \"image_id\",\n \"Id\": 0,\n \"LibId\": \"\"\n }\n ],\n \"Suggestion\": \"Block\"\n }\n ],\n \"RecognitionResults\": [\n {\n \"Label\": \"Scene\",\n \"Tags\": [\n {\n \"Name\": \"MedicalImage\",\n \"Score\": 30,\n \"Location\": {\n \"X\": 0,\n \"Y\": 0,\n \"Width\": 0,\n \"Height\": 0,\n \"Rotate\": 0\n }\n }\n ]\n }\n ],\n \"Extra\": \"\"\n }\n}",
|
8
8
|
"title": "图片同步检测"
|
9
9
|
}
|
10
10
|
]
|