Call the DsgDesensPlanQueryList API to query Data Security Guard's (DSG) data masking rules.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
dataworks:DsgDesensPlanQueryList |
list |
*All Resource
|
None | None |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| PageNumber |
integer |
Yes |
The page number. |
1 |
| PageSize |
integer |
Yes |
The number of entries to return on each page. The maximum value is 100. |
10 |
| SceneId |
integer |
Yes |
The ID of the Level-2 data desensitization scene. You can call the DsgSceneQuerySceneListByName operation to obtain this ID. |
123 |
| RuleName |
string |
No |
The name of the desensitization rule. |
phone |
| Owner |
string |
No |
The owner of the desensitization rule. |
user1 |
| Status |
integer |
No |
The status of the desensitization rule. Valid values:
|
1 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
OpenApiResultModel<PagingResultModel |
||
| Success |
boolean |
Indicates whether the request was successful. Valid values:
|
true |
| ErrorCode |
string |
The error code. |
1029030003 |
| ErrorMessage |
string |
The error message. |
param error |
| HttpStatusCode |
integer |
The HTTP status code. |
400 |
| PageData |
object |
The paginated data. |
|
| PageNumber |
integer |
The page number. |
1 |
| PageSize |
integer |
The number of entries per page. Maximum value: 100. |
10 |
| TotalCount |
integer |
The total number of matching desensitization rules. |
100 |
| Data |
array<object> |
The details of the desensitization rules. |
|
|
array<object> |
A single desensitization rule object. |
||
| Id |
integer |
The ID of the desensitization rule. |
123 |
| DataType |
string |
The sensitive data type. |
phone |
| RuleName |
string |
The name of the desensitization rule. |
phone_hash |
| DesensPlan |
object |
The details of the desensitization plan. |
|
| DesensPlanType |
string |
The type of the desensitization plan. |
hash |
| ExtParam |
object |
The parameters for the desensitization rule. For details, see the DsgDesensPlanAddOrUpdate operation. |
|
|
any |
The details of the desensitization rule parameters. |
"extParam": { "algo":"MD5", "salt":"5" } |
|
| Owner |
string |
The owner of the desensitization rule. |
user1 |
| GmtCreate |
string |
The time when the rule was created. |
2024-05-09 15:46:20 |
| GmtModified |
string |
The time when the rule was last modified. |
2024-05-09 15:46:20 |
| Status |
integer |
The status of the rule. Valid values:
|
1 |
| DesensWay |
string |
The desensitization method. |
HASH |
| DesenMode |
string |
The desensitization method. |
HASH |
| DesensRule |
string |
The desensitization rule. |
HASH |
| SceneCode |
string |
The level-1 desensitization scene code. Valid values:
|
dataworks_display_desense_code |
| CheckWatermark |
boolean |
Indicates whether to add a watermark. Valid values:
|
true |
| SceneName |
string |
The name of the level-2 desensitization scene. |
test_scene |
| emptyNotDesesn |
boolean |
||
| columns |
array<object> |
||
|
object |
|||
| dbType |
string |
||
| project |
string |
||
| table |
string |
||
| column |
string |
||
| RequestId |
string |
The request ID. You can use this ID to locate logs and troubleshoot issues. |
102400001 |
Examples
Success response
JSON format
{
"Success": true,
"ErrorCode": "1029030003",
"ErrorMessage": "param error",
"HttpStatusCode": 400,
"PageData": {
"PageNumber": 1,
"PageSize": 10,
"TotalCount": 100,
"Data": [
{
"Id": 123,
"DataType": "phone",
"RuleName": "phone_hash",
"DesensPlan": {
"DesensPlanType": "hash",
"ExtParam": {
"key": "\"extParam\": { \"algo\":\"MD5\", \"salt\":\"5\" }"
}
},
"Owner": "user1",
"GmtCreate": "2024-05-09 15:46:20",
"GmtModified": "2024-05-09 15:46:20",
"Status": 1,
"DesensWay": "HASH",
"DesenMode": "HASH",
"DesensRule": "HASH",
"SceneCode": "dataworks_display_desense_code",
"CheckWatermark": true,
"SceneName": "test_scene",
"emptyNotDesesn": false,
"columns": [
{
"dbType": "",
"project": "",
"table": "",
"column": ""
}
]
}
]
},
"RequestId": "102400001"
}
Error codes
|
HTTP status code |
Error code |
Error message |
Description |
|---|---|---|---|
| 400 | DESENSPLAN.DATATYPE.ERROR | Sensitive type already has a desensitization rule. | Desensitization rules have been configured for sensitive types. |
| 400 | DESENSPLAN.DATATYPENOTEXIST.ERROR | Sensitive type not exist. | The sensitive type does not exist. |
| 400 | DESENSPLAN.ID.ERROR | Desensitization rule ID does not exist. | The desensitization rule ID does not exist. |
| 400 | DESENSPLAN.PAGESIZE.ERROR | Page size is too large, maximum of 100. | Page size limit, up to 100 |
| 400 | DESENSPLAN.PARAM.ERROR | Desensitization rule parameter error. | The desensitization rule parameter is incorrect. |
| 400 | DESENSPLAN.SCENECODE.ERROR | Scene code does not exist. | Scene code does not exist |
| 400 | DESENSPLAN.SCENEID.ERROR | Scene ID does not exist. | Scene ID does not exist. |
| 400 | DESENSPLAN.SCENEIDLEVEL.ERROR | The scene is not a secondary scene. | The scene is not a secondary scene. |
| 400 | DESENSPLAN.SIZE.ERROR | The number of desens plan exceeds the limit. | The number of desensitization rules exceeded the limit. |
| 400 | PARAMS.ERROR | param error. | |
| 500 | UNKNOWN.ERROR | unknown error. | Unknown error. |
| 403 | PERMISSION.DENIED.ERROR | Permission denied | Insufficient permissions. |
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.