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.
- 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
|
@@ -210,6 +210,13 @@
|
|
|
210
210
|
"output": "DeleteDataEngineResponse",
|
|
211
211
|
"status": "online"
|
|
212
212
|
},
|
|
213
|
+
"DeleteDataMaskStrategy": {
|
|
214
|
+
"document": "This API is used to delete a data masking policy.",
|
|
215
|
+
"input": "DeleteDataMaskStrategyRequest",
|
|
216
|
+
"name": "Delete a DMask policy",
|
|
217
|
+
"output": "DeleteDataMaskStrategyResponse",
|
|
218
|
+
"status": "online"
|
|
219
|
+
},
|
|
213
220
|
"DeleteSparkApp": {
|
|
214
221
|
"document": "This API is used to delete a Spark job.",
|
|
215
222
|
"input": "DeleteSparkAppRequest",
|
|
@@ -315,6 +322,13 @@
|
|
|
315
322
|
"output": "DescribeDataEnginesScaleDetailResponse",
|
|
316
323
|
"status": "online"
|
|
317
324
|
},
|
|
325
|
+
"DescribeDataMaskStrategies": {
|
|
326
|
+
"document": "This API is used to query the DMask list.",
|
|
327
|
+
"input": "DescribeDataMaskStrategiesRequest",
|
|
328
|
+
"name": "Query DMask policy list",
|
|
329
|
+
"output": "DescribeDataMaskStrategiesResponse",
|
|
330
|
+
"status": "online"
|
|
331
|
+
},
|
|
318
332
|
"DescribeEngineUsageInfo": {
|
|
319
333
|
"document": "This API is used to query the resource usage of a data engine based on its ID.",
|
|
320
334
|
"input": "DescribeEngineUsageInfoRequest",
|
|
@@ -721,6 +735,13 @@
|
|
|
721
735
|
"output": "UpdateDataEngineConfigResponse",
|
|
722
736
|
"status": "online"
|
|
723
737
|
},
|
|
738
|
+
"UpdateDataMaskStrategy": {
|
|
739
|
+
"document": "This API is used to update the DMask policy.",
|
|
740
|
+
"input": "UpdateDataMaskStrategyRequest",
|
|
741
|
+
"name": "Update the DMask policy",
|
|
742
|
+
"output": "UpdateDataMaskStrategyResponse",
|
|
743
|
+
"status": "online"
|
|
744
|
+
},
|
|
724
745
|
"UpdateRowFilter": {
|
|
725
746
|
"document": "This API is used to update row filters. Please note that it updates filters only but not catalogs, databases, or tables.",
|
|
726
747
|
"input": "UpdateRowFilterRequest",
|
|
@@ -4990,6 +5011,144 @@
|
|
|
4990
5011
|
],
|
|
4991
5012
|
"usage": "both"
|
|
4992
5013
|
},
|
|
5014
|
+
"DataMaskStrategy": {
|
|
5015
|
+
"document": "DMask policy information.",
|
|
5016
|
+
"members": [
|
|
5017
|
+
{
|
|
5018
|
+
"disabled": false,
|
|
5019
|
+
"document": "Policy ID\n\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5020
|
+
"example": "1",
|
|
5021
|
+
"member": "string",
|
|
5022
|
+
"name": "StrategyId",
|
|
5023
|
+
"output_required": false,
|
|
5024
|
+
"required": false,
|
|
5025
|
+
"type": "string",
|
|
5026
|
+
"value_allowed_null": true
|
|
5027
|
+
},
|
|
5028
|
+
{
|
|
5029
|
+
"disabled": false,
|
|
5030
|
+
"document": "User AppId\n\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5031
|
+
"example": "1232121211",
|
|
5032
|
+
"member": "string",
|
|
5033
|
+
"name": "UserAppId",
|
|
5034
|
+
"output_required": false,
|
|
5035
|
+
"required": false,
|
|
5036
|
+
"type": "string",
|
|
5037
|
+
"value_allowed_null": true
|
|
5038
|
+
},
|
|
5039
|
+
{
|
|
5040
|
+
"disabled": false,
|
|
5041
|
+
"document": "User UIN\n\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5042
|
+
"example": "1212313121",
|
|
5043
|
+
"member": "string",
|
|
5044
|
+
"name": "Uin",
|
|
5045
|
+
"output_required": false,
|
|
5046
|
+
"required": false,
|
|
5047
|
+
"type": "string",
|
|
5048
|
+
"value_allowed_null": true
|
|
5049
|
+
},
|
|
5050
|
+
{
|
|
5051
|
+
"disabled": false,
|
|
5052
|
+
"document": "Specifies the uin of the user sub-account to operate.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5053
|
+
"example": "1213124121",
|
|
5054
|
+
"member": "string",
|
|
5055
|
+
"name": "SubAccountUin",
|
|
5056
|
+
"output_required": false,
|
|
5057
|
+
"required": false,
|
|
5058
|
+
"type": "string",
|
|
5059
|
+
"value_allowed_null": true
|
|
5060
|
+
},
|
|
5061
|
+
{
|
|
5062
|
+
"disabled": false,
|
|
5063
|
+
"document": "Policy name\n\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5064
|
+
"example": "策略1",
|
|
5065
|
+
"member": "string",
|
|
5066
|
+
"name": "StrategyName",
|
|
5067
|
+
"output_required": false,
|
|
5068
|
+
"required": false,
|
|
5069
|
+
"type": "string",
|
|
5070
|
+
"value_allowed_null": true
|
|
5071
|
+
},
|
|
5072
|
+
{
|
|
5073
|
+
"disabled": false,
|
|
5074
|
+
"document": "MASK_SHOW_FIRST_4, MASK_SHOW_LAST_4, MASK_HASH, MASK_DATE_SHOW_YEAR, MASK_NULL, MASK_DEFAULT.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5075
|
+
"example": "MASK_SHOW_FIRST_4",
|
|
5076
|
+
"member": "string",
|
|
5077
|
+
"name": "StrategyType",
|
|
5078
|
+
"output_required": false,
|
|
5079
|
+
"required": false,
|
|
5080
|
+
"type": "string",
|
|
5081
|
+
"value_allowed_null": true
|
|
5082
|
+
},
|
|
5083
|
+
{
|
|
5084
|
+
"disabled": false,
|
|
5085
|
+
"document": "Policy description\n\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5086
|
+
"example": "描述",
|
|
5087
|
+
"member": "string",
|
|
5088
|
+
"name": "StrategyDesc",
|
|
5089
|
+
"output_required": false,
|
|
5090
|
+
"required": false,
|
|
5091
|
+
"type": "string",
|
|
5092
|
+
"value_allowed_null": true
|
|
5093
|
+
},
|
|
5094
|
+
{
|
|
5095
|
+
"disabled": false,
|
|
5096
|
+
"document": "User group policy list.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5097
|
+
"example": "无",
|
|
5098
|
+
"member": "GroupInfo",
|
|
5099
|
+
"name": "Groups",
|
|
5100
|
+
"output_required": false,
|
|
5101
|
+
"required": false,
|
|
5102
|
+
"type": "list",
|
|
5103
|
+
"value_allowed_null": true
|
|
5104
|
+
},
|
|
5105
|
+
{
|
|
5106
|
+
"disabled": false,
|
|
5107
|
+
"document": "User sub-account uin list, concatenated by ;.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5108
|
+
"example": "12312314112;1231231231",
|
|
5109
|
+
"member": "string",
|
|
5110
|
+
"name": "Users",
|
|
5111
|
+
"output_required": false,
|
|
5112
|
+
"required": false,
|
|
5113
|
+
"type": "string",
|
|
5114
|
+
"value_allowed_null": true
|
|
5115
|
+
},
|
|
5116
|
+
{
|
|
5117
|
+
"disabled": false,
|
|
5118
|
+
"document": "1: in effect; 0: deleted.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5119
|
+
"example": "1",
|
|
5120
|
+
"member": "int64",
|
|
5121
|
+
"name": "State",
|
|
5122
|
+
"output_required": false,
|
|
5123
|
+
"required": false,
|
|
5124
|
+
"type": "int",
|
|
5125
|
+
"value_allowed_null": true
|
|
5126
|
+
},
|
|
5127
|
+
{
|
|
5128
|
+
"disabled": false,
|
|
5129
|
+
"document": "Policy creation time. timestamp in milliseconds.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5130
|
+
"example": "1723106621346",
|
|
5131
|
+
"member": "int64",
|
|
5132
|
+
"name": "CreateTime",
|
|
5133
|
+
"output_required": false,
|
|
5134
|
+
"required": false,
|
|
5135
|
+
"type": "int",
|
|
5136
|
+
"value_allowed_null": true
|
|
5137
|
+
},
|
|
5138
|
+
{
|
|
5139
|
+
"disabled": false,
|
|
5140
|
+
"document": "Policy update time. timestamp in milliseconds.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
5141
|
+
"example": "1723106621346",
|
|
5142
|
+
"member": "int64",
|
|
5143
|
+
"name": "UpdateTime",
|
|
5144
|
+
"output_required": false,
|
|
5145
|
+
"required": false,
|
|
5146
|
+
"type": "int",
|
|
5147
|
+
"value_allowed_null": true
|
|
5148
|
+
}
|
|
5149
|
+
],
|
|
5150
|
+
"usage": "both"
|
|
5151
|
+
},
|
|
4993
5152
|
"DataMaskStrategyInfo": {
|
|
4994
5153
|
"document": "DMask policy information.",
|
|
4995
5154
|
"members": [
|
|
@@ -5191,6 +5350,33 @@
|
|
|
5191
5350
|
],
|
|
5192
5351
|
"type": "object"
|
|
5193
5352
|
},
|
|
5353
|
+
"DeleteDataMaskStrategyRequest": {
|
|
5354
|
+
"document": "DeleteDataMaskStrategy request structure.",
|
|
5355
|
+
"members": [
|
|
5356
|
+
{
|
|
5357
|
+
"disabled": false,
|
|
5358
|
+
"document": "DMask policy Id. specifies the Id of the data masking policy.",
|
|
5359
|
+
"example": "1",
|
|
5360
|
+
"member": "string",
|
|
5361
|
+
"name": "StrategyId",
|
|
5362
|
+
"required": false,
|
|
5363
|
+
"type": "string"
|
|
5364
|
+
}
|
|
5365
|
+
],
|
|
5366
|
+
"type": "object"
|
|
5367
|
+
},
|
|
5368
|
+
"DeleteDataMaskStrategyResponse": {
|
|
5369
|
+
"document": "DeleteDataMaskStrategy response structure.",
|
|
5370
|
+
"members": [
|
|
5371
|
+
{
|
|
5372
|
+
"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.",
|
|
5373
|
+
"member": "string",
|
|
5374
|
+
"name": "RequestId",
|
|
5375
|
+
"type": "string"
|
|
5376
|
+
}
|
|
5377
|
+
],
|
|
5378
|
+
"type": "object"
|
|
5379
|
+
},
|
|
5194
5380
|
"DeleteSparkAppRequest": {
|
|
5195
5381
|
"document": "DeleteSparkApp request structure.",
|
|
5196
5382
|
"members": [
|
|
@@ -6037,6 +6223,71 @@
|
|
|
6037
6223
|
],
|
|
6038
6224
|
"type": "object"
|
|
6039
6225
|
},
|
|
6226
|
+
"DescribeDataMaskStrategiesRequest": {
|
|
6227
|
+
"document": "DescribeDataMaskStrategies request structure.",
|
|
6228
|
+
"members": [
|
|
6229
|
+
{
|
|
6230
|
+
"disabled": false,
|
|
6231
|
+
"document": "The pagination parameter, specifies the amount of data returned per page. it is 10 by default.",
|
|
6232
|
+
"example": "10",
|
|
6233
|
+
"member": "int64",
|
|
6234
|
+
"name": "Limit",
|
|
6235
|
+
"required": false,
|
|
6236
|
+
"type": "int"
|
|
6237
|
+
},
|
|
6238
|
+
{
|
|
6239
|
+
"disabled": false,
|
|
6240
|
+
"document": "Pagination parameters. data offset. default: 0.",
|
|
6241
|
+
"example": "0",
|
|
6242
|
+
"member": "int64",
|
|
6243
|
+
"name": "Offset",
|
|
6244
|
+
"required": false,
|
|
6245
|
+
"type": "int"
|
|
6246
|
+
},
|
|
6247
|
+
{
|
|
6248
|
+
"disabled": false,
|
|
6249
|
+
"document": "Filter field. strategy-name: search by policy name.",
|
|
6250
|
+
"example": "无",
|
|
6251
|
+
"member": "Filter",
|
|
6252
|
+
"name": "Filters",
|
|
6253
|
+
"required": false,
|
|
6254
|
+
"type": "list"
|
|
6255
|
+
}
|
|
6256
|
+
],
|
|
6257
|
+
"type": "object"
|
|
6258
|
+
},
|
|
6259
|
+
"DescribeDataMaskStrategiesResponse": {
|
|
6260
|
+
"document": "DescribeDataMaskStrategies response structure.",
|
|
6261
|
+
"members": [
|
|
6262
|
+
{
|
|
6263
|
+
"disabled": false,
|
|
6264
|
+
"document": "Total DMask policies.",
|
|
6265
|
+
"example": "10",
|
|
6266
|
+
"member": "uint64",
|
|
6267
|
+
"name": "TotalCount",
|
|
6268
|
+
"output_required": false,
|
|
6269
|
+
"type": "int",
|
|
6270
|
+
"value_allowed_null": false
|
|
6271
|
+
},
|
|
6272
|
+
{
|
|
6273
|
+
"disabled": false,
|
|
6274
|
+
"document": "DMask policy list. specifies the list of data masking policies.",
|
|
6275
|
+
"example": "无",
|
|
6276
|
+
"member": "DataMaskStrategy",
|
|
6277
|
+
"name": "Strategies",
|
|
6278
|
+
"output_required": false,
|
|
6279
|
+
"type": "list",
|
|
6280
|
+
"value_allowed_null": false
|
|
6281
|
+
},
|
|
6282
|
+
{
|
|
6283
|
+
"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.",
|
|
6284
|
+
"member": "string",
|
|
6285
|
+
"name": "RequestId",
|
|
6286
|
+
"type": "string"
|
|
6287
|
+
}
|
|
6288
|
+
],
|
|
6289
|
+
"type": "object"
|
|
6290
|
+
},
|
|
6040
6291
|
"DescribeEngineUsageInfoRequest": {
|
|
6041
6292
|
"document": "DescribeEngineUsageInfo request structure.",
|
|
6042
6293
|
"members": [
|
|
@@ -8402,22 +8653,20 @@
|
|
|
8402
8653
|
{
|
|
8403
8654
|
"disabled": false,
|
|
8404
8655
|
"document": "Attribute name. If more than one filter exists, the logical relationship between these filters is `OR`.",
|
|
8405
|
-
"example": "
|
|
8656
|
+
"example": "house_name",
|
|
8406
8657
|
"member": "string",
|
|
8407
8658
|
"name": "Name",
|
|
8408
8659
|
"required": true,
|
|
8409
|
-
"type": "string"
|
|
8410
|
-
"value_allowed_null": false
|
|
8660
|
+
"type": "string"
|
|
8411
8661
|
},
|
|
8412
8662
|
{
|
|
8413
8663
|
"disabled": false,
|
|
8414
8664
|
"document": "Attribute value. If multiple values exist in one filter, the logical relationship between these values is `OR`.",
|
|
8415
|
-
"example": "
|
|
8665
|
+
"example": "dlc-engine",
|
|
8416
8666
|
"member": "string",
|
|
8417
8667
|
"name": "Values",
|
|
8418
8668
|
"required": true,
|
|
8419
|
-
"type": "list"
|
|
8420
|
-
"value_allowed_null": false
|
|
8669
|
+
"type": "list"
|
|
8421
8670
|
}
|
|
8422
8671
|
],
|
|
8423
8672
|
"usage": "in"
|
|
@@ -13115,6 +13364,33 @@
|
|
|
13115
13364
|
],
|
|
13116
13365
|
"type": "object"
|
|
13117
13366
|
},
|
|
13367
|
+
"UpdateDataMaskStrategyRequest": {
|
|
13368
|
+
"document": "UpdateDataMaskStrategy request structure.",
|
|
13369
|
+
"members": [
|
|
13370
|
+
{
|
|
13371
|
+
"disabled": false,
|
|
13372
|
+
"document": "Masking policy description.",
|
|
13373
|
+
"example": "无",
|
|
13374
|
+
"member": "DataMaskStrategyInfo",
|
|
13375
|
+
"name": "Strategy",
|
|
13376
|
+
"required": false,
|
|
13377
|
+
"type": "object"
|
|
13378
|
+
}
|
|
13379
|
+
],
|
|
13380
|
+
"type": "object"
|
|
13381
|
+
},
|
|
13382
|
+
"UpdateDataMaskStrategyResponse": {
|
|
13383
|
+
"document": "UpdateDataMaskStrategy response structure.",
|
|
13384
|
+
"members": [
|
|
13385
|
+
{
|
|
13386
|
+
"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.",
|
|
13387
|
+
"member": "string",
|
|
13388
|
+
"name": "RequestId",
|
|
13389
|
+
"type": "string"
|
|
13390
|
+
}
|
|
13391
|
+
],
|
|
13392
|
+
"type": "object"
|
|
13393
|
+
},
|
|
13118
13394
|
"UpdateRowFilterRequest": {
|
|
13119
13395
|
"document": "UpdateRowFilter request structure.",
|
|
13120
13396
|
"members": [
|
|
@@ -240,6 +240,14 @@
|
|
|
240
240
|
"title": "test"
|
|
241
241
|
}
|
|
242
242
|
],
|
|
243
|
+
"DeleteDataMaskStrategy": [
|
|
244
|
+
{
|
|
245
|
+
"document": "",
|
|
246
|
+
"input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteDataMaskStrategy\n<Common request parameters>\n\n{\n \"StrategyId\": \"c82f17bd-f577-4930-a8ef-83b9647259b8\"\n}",
|
|
247
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"12345678-1234-1234-1234-12345678\"\n }\n}",
|
|
248
|
+
"title": "Deleting a DMask Policy"
|
|
249
|
+
}
|
|
250
|
+
],
|
|
243
251
|
"DeleteSparkApp": [
|
|
244
252
|
{
|
|
245
253
|
"document": "u200cThis example shows you how to delete a Spark job.",
|
|
@@ -366,6 +374,14 @@
|
|
|
366
374
|
"title": "Querying Engine Specification Details"
|
|
367
375
|
}
|
|
368
376
|
],
|
|
377
|
+
"DescribeDataMaskStrategies": [
|
|
378
|
+
{
|
|
379
|
+
"document": "",
|
|
380
|
+
"input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDataMaskStrategies\n<Common request parameters>\n\n{\n \"Limit\": 10,\n \"Offset\": 0,\n \"Filters\": []\n}",
|
|
381
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"14ba6c26-2d36-4646-b1c4-6fe8dc2711d5\",\n \"Strategies\": [\n {\n \"StrategyId\": \"9facbbd7-ab31-4f56-8657-f981f3fea223\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100041604908\",\n \"StrategyName\": \"default_mask_1\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225289,\n \"StrategyType\": \"MASK_SHOW_FIRST_4\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1753416120334,\n \"UpdateTime\": 1753416120334\n },\n {\n \"StrategyId\": \"af088222-22f0-4e7b-a179-8640b4f29ac9\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100018370021\",\n \"StrategyName\": \"default_mask_2\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225285,\n \"StrategyType\": \"MASK\"\n },\n {\n \"WorkGroupId\": 225284,\n \"StrategyType\": \"MASK_NONE\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1752579358146,\n \"UpdateTime\": 1752579472439\n },\n {\n \"StrategyId\": \"1f14426d-fb9c-4e91-98a9-41d9691d0186\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100042020000\",\n \"StrategyName\": \"default_mask_3\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225284,\n \"StrategyType\": \"MASK_SHOW_FIRST_4\"\n },\n {\n \"WorkGroupId\": 225285,\n \"StrategyType\": \"MASK_SHOW_LAST_4\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1752578536032,\n \"UpdateTime\": 1752578536032\n },\n {\n \"StrategyId\": \"f4ac2013-d004-4b6a-b3f9-89dc313e8f44\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100042020000\",\n \"StrategyName\": \"data_mask_4\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 221485,\n \"StrategyType\": \"MASK_DATE_SHOW_YEAR\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1752570666841,\n \"UpdateTime\": 1752570666841\n },\n {\n \"StrategyId\": \"f9c49afd-d5f5-4a22-b4a5-80d66061601c\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100040310000\",\n \"StrategyName\": \"default_mask_5\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225254,\n \"StrategyType\": \"MASK_NONE\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1752213893224,\n \"UpdateTime\": 1752213893224\n },\n {\n \"StrategyId\": \"7a5cc300-baad-44b8-a918-46883a8a8454\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100018430000\",\n \"StrategyName\": \"default_mask_6\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225237,\n \"StrategyType\": \"MASK_NULL\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1750851717526,\n \"UpdateTime\": 1750851717526\n },\n {\n \"StrategyId\": \"72de85e2-887a-4a87-bf86-90fc90ff25fa\",\n \"UserAppId\": \"1305424723\",\n \"Uin\": \"100018379117\",\n \"SubAccountUin\": \"100018370000\",\n \"StrategyName\": \"default_mask_7\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225237,\n \"StrategyType\": \"MASK_SHOW_LAST_4\"\n }\n ],\n \"Users\": \"\",\n \"State\": 1,\n \"CreateTime\": 1750144801970,\n \"UpdateTime\": 1750257014072\n }\n ],\n \"TotalCount\": 7\n }\n}",
|
|
382
|
+
"title": "Querying Data List"
|
|
383
|
+
}
|
|
384
|
+
],
|
|
369
385
|
"DescribeEngineUsageInfo": [
|
|
370
386
|
{
|
|
371
387
|
"document": "This example shows you how to query the resource usage of a data engine.",
|
|
@@ -836,6 +852,14 @@
|
|
|
836
852
|
"title": "Updating the Result Bucket Configuration Information for the Specified Engine"
|
|
837
853
|
}
|
|
838
854
|
],
|
|
855
|
+
"UpdateDataMaskStrategy": [
|
|
856
|
+
{
|
|
857
|
+
"document": "",
|
|
858
|
+
"input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateDataMaskStrategy\n<Common request parameters>\n\n{\n \"Strategy\": {\n \"StrategyId\": \"c82f17bd-f577-4930-a8ef-83b9647259b8\",\n \"StrategyName\": \"default_strategy\",\n \"StrategyType\": \"\",\n \"StrategyDesc\": \"\",\n \"Groups\": [\n {\n \"WorkGroupId\": 225249,\n \"StrategyType\": \"MASK_SHOW_LAST_4\"\n },\n {\n \"WorkGroupId\": 225237,\n \"StrategyType\": \"MASK_HASH\"\n }\n ]\n }\n}",
|
|
859
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"0d2dc2eb-0a9c-483b-9454-e7e8db604507\"\n }\n}",
|
|
860
|
+
"title": "Updating Data Masking Policy"
|
|
861
|
+
}
|
|
862
|
+
],
|
|
839
863
|
"UpdateRowFilter": [
|
|
840
864
|
{
|
|
841
865
|
"document": " ",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
{
|
|
57
57
|
"document": "Liveness detection failed, the specified action was not detected.",
|
|
58
58
|
"input": "POST / HTTP/1.1\nHost: faceid.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CompareFaceLiveness\n<Common request parameters>\n\n{\n \"ImageBase64\": \"iVBORw0KGg...s97n//2Q==\",\n \"VideoBase64\": \"AAAAGGZ0eX...AAwAAAAEecg=\",\n \"LivenessType\": \"ACTION\",\n \"ValidateData\": \"4,2\"\n}",
|
|
59
|
-
"output": "{\n \"Response\": {\n \"Result\": \"FailedOperation.ActionFirstAction\",\n \"Description\": \"The first motion is not detected.\",\n \"Sim\": 0,\n \"BestFrameBase64\": \"/9j/4AAQSk...W/M7/M/9k=\",\n \"RequestId\": \"df5afd82-6469-4a4a-bd62-
|
|
59
|
+
"output": "{\n \"Response\": {\n \"Result\": \"FailedOperation.ActionFirstAction\",\n \"Description\": \"The first motion is not detected.\",\n \"Sim\": 0,\n \"BestFrameBase64\": \"/9j/4AAQSk...W/M7/M/9k=\",\n \"RequestId\": \"df5afd82-6469-4a4a-bd62-debf8c2ef94e\"\n }\n}",
|
|
60
60
|
"title": "Liveness detection failed, the specified action was not detected."
|
|
61
61
|
}
|
|
62
62
|
],
|
|
@@ -3514,6 +3514,15 @@
|
|
|
3514
3514
|
"name": "StaticImageDeactivateSetting",
|
|
3515
3515
|
"required": false,
|
|
3516
3516
|
"type": "object"
|
|
3517
|
+
},
|
|
3518
|
+
{
|
|
3519
|
+
"disabled": false,
|
|
3520
|
+
"document": "Dynamic graphic overlay activate configuration",
|
|
3521
|
+
"example": "无",
|
|
3522
|
+
"member": "MotionGraphicsActivateSetting",
|
|
3523
|
+
"name": "MotionGraphicsActivateSetting",
|
|
3524
|
+
"required": false,
|
|
3525
|
+
"type": "object"
|
|
3517
3526
|
}
|
|
3518
3527
|
],
|
|
3519
3528
|
"usage": "in"
|
|
@@ -3641,6 +3650,17 @@
|
|
|
3641
3650
|
"required": false,
|
|
3642
3651
|
"type": "object",
|
|
3643
3652
|
"value_allowed_null": false
|
|
3653
|
+
},
|
|
3654
|
+
{
|
|
3655
|
+
"disabled": false,
|
|
3656
|
+
"document": "Dynamic graphic overlay activate configuration.",
|
|
3657
|
+
"example": "无",
|
|
3658
|
+
"member": "MotionGraphicsActivateSetting",
|
|
3659
|
+
"name": "MotionGraphicsActivateSetting",
|
|
3660
|
+
"output_required": false,
|
|
3661
|
+
"required": false,
|
|
3662
|
+
"type": "object",
|
|
3663
|
+
"value_allowed_null": false
|
|
3644
3664
|
}
|
|
3645
3665
|
],
|
|
3646
3666
|
"usage": "both"
|
|
@@ -3780,6 +3800,28 @@
|
|
|
3780
3800
|
"required": false,
|
|
3781
3801
|
"type": "object",
|
|
3782
3802
|
"value_allowed_null": false
|
|
3803
|
+
},
|
|
3804
|
+
{
|
|
3805
|
+
"disabled": false,
|
|
3806
|
+
"document": "Dynamic graphic overlay configuration.",
|
|
3807
|
+
"example": "无",
|
|
3808
|
+
"member": "MotionGraphicsSetting",
|
|
3809
|
+
"name": "MotionGraphicsSettings",
|
|
3810
|
+
"output_required": false,
|
|
3811
|
+
"required": false,
|
|
3812
|
+
"type": "object",
|
|
3813
|
+
"value_allowed_null": false
|
|
3814
|
+
},
|
|
3815
|
+
{
|
|
3816
|
+
"disabled": false,
|
|
3817
|
+
"document": "Thumbnail Configuration.",
|
|
3818
|
+
"example": "无",
|
|
3819
|
+
"member": "ThumbnailSettings",
|
|
3820
|
+
"name": "ThumbnailSettings",
|
|
3821
|
+
"output_required": false,
|
|
3822
|
+
"required": false,
|
|
3823
|
+
"type": "object",
|
|
3824
|
+
"value_allowed_null": false
|
|
3783
3825
|
}
|
|
3784
3826
|
],
|
|
3785
3827
|
"usage": "both"
|
|
@@ -4896,6 +4938,51 @@
|
|
|
4896
4938
|
],
|
|
4897
4939
|
"type": "object"
|
|
4898
4940
|
},
|
|
4941
|
+
"MotionGraphicsActivateSetting": {
|
|
4942
|
+
"document": "",
|
|
4943
|
+
"members": [
|
|
4944
|
+
{
|
|
4945
|
+
"disabled": false,
|
|
4946
|
+
"document": "Duration in ms, valid when MOTION_Graphics_ACTIVATE, required; An integer in the range of 0-86400000, where 0 represents the duration until the end of the live stream.",
|
|
4947
|
+
"example": "无",
|
|
4948
|
+
"member": "int64",
|
|
4949
|
+
"name": "Duration",
|
|
4950
|
+
"output_required": false,
|
|
4951
|
+
"required": false,
|
|
4952
|
+
"type": "int",
|
|
4953
|
+
"value_allowed_null": true
|
|
4954
|
+
},
|
|
4955
|
+
{
|
|
4956
|
+
"disabled": false,
|
|
4957
|
+
"document": "The address of HTML5 needs to comply with the format specification of http/https.",
|
|
4958
|
+
"example": "无",
|
|
4959
|
+
"member": "string",
|
|
4960
|
+
"name": "Url",
|
|
4961
|
+
"output_required": false,
|
|
4962
|
+
"required": false,
|
|
4963
|
+
"type": "string",
|
|
4964
|
+
"value_allowed_null": true
|
|
4965
|
+
}
|
|
4966
|
+
],
|
|
4967
|
+
"usage": "both"
|
|
4968
|
+
},
|
|
4969
|
+
"MotionGraphicsSetting": {
|
|
4970
|
+
"document": "",
|
|
4971
|
+
"members": [
|
|
4972
|
+
{
|
|
4973
|
+
"disabled": false,
|
|
4974
|
+
"document": "Whether to enable dynamic graphic overlay, '0' not enabled, '1' enabled; Default 0.",
|
|
4975
|
+
"example": "0",
|
|
4976
|
+
"member": "int64",
|
|
4977
|
+
"name": "MotionGraphicsOverlayEnabled",
|
|
4978
|
+
"output_required": false,
|
|
4979
|
+
"required": false,
|
|
4980
|
+
"type": "int",
|
|
4981
|
+
"value_allowed_null": true
|
|
4982
|
+
}
|
|
4983
|
+
],
|
|
4984
|
+
"usage": "both"
|
|
4985
|
+
},
|
|
4899
4986
|
"OutputInfo": {
|
|
4900
4987
|
"document": "Output information.",
|
|
4901
4988
|
"members": [
|
|
@@ -6668,6 +6755,23 @@
|
|
|
6668
6755
|
],
|
|
6669
6756
|
"usage": "both"
|
|
6670
6757
|
},
|
|
6758
|
+
"ThumbnailSettings": {
|
|
6759
|
+
"document": "",
|
|
6760
|
+
"members": [
|
|
6761
|
+
{
|
|
6762
|
+
"disabled": false,
|
|
6763
|
+
"document": "Generate thumbnail ,0: Disabled ,1: Enabled , Default: 0",
|
|
6764
|
+
"example": "0",
|
|
6765
|
+
"member": "int64",
|
|
6766
|
+
"name": "ThumbnailEnabled",
|
|
6767
|
+
"output_required": false,
|
|
6768
|
+
"required": false,
|
|
6769
|
+
"type": "int",
|
|
6770
|
+
"value_allowed_null": false
|
|
6771
|
+
}
|
|
6772
|
+
],
|
|
6773
|
+
"usage": "both"
|
|
6774
|
+
},
|
|
6671
6775
|
"TimeShiftSettingsInfo": {
|
|
6672
6776
|
"document": "Time-shift configuration. This parameter is valid only for HLS_ARCHIVE and DASH_ARCHIVE output groups.",
|
|
6673
6777
|
"members": [
|