All Products
Search
Document Center

DataWorks:DsgDesensPlanQueryList

Last Updated:Oct 17, 2024

Queries a list of data masking rules.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
PageNumberintegerYes

The page number.

1
PageSizeintegerYes

The number of entries per page. Maximum value: 100.

10
SceneIdintegerYes

The ID of the level-2 data masking scenario. You can call the DsgSceneQuerySceneListByName operation to query the list of IDs.

123
RuleNamestringNo

The name of the sensitive field.

phone
OwnerstringNo

The owner of the data masking rule.

user1
StatusintegerNo

The status of the data masking rule. Valid values:

  • 0: expired
  • 1: effective
1

Response parameters

ParameterTypeDescriptionExample
object

OpenApiResultModel<PagingResultModel>

Successboolean

Indicates whether the request was successful. Valid values:

  • true
  • false
true
ErrorCodestring

The error code.

1029030003
ErrorMessagestring

The error message.

param error
HttpStatusCodeinteger

The HTTP status code.

400
PageDataobject

The pagination information.

PageNumberinteger

The page number.

1
PageSizeinteger

The number of entries per page. Maximum value: 100.

10
TotalCountinteger

The number of data masking rules.

100
Dataarray<object>

The information about the data masking rule.

Datasobject
Idlong

The ID of the data masking rule.

123
DataTypestring

The sensitive field type.

phone
RuleNamestring

The name of the data masking rule.

phone_hash
DesensPlanobject

The details of the data masking rule.

DesensPlanTypestring

The type of the data masking rule.

hash
ExtParamobject

The parameters for the data masking rule. For more information about the parameters, see the DsgDesensPlanAddOrUpdate API reference.

any

The details of the data masking rule parameters.

"extParam": { "algo":"MD5", "salt":"5" }
Ownerstring

The owner of the data masking rule.

user1
GmtCreatestring

The time when the data masking rule was created.

2024-05-09 15:46:20
GmtModifiedstring

The time when the data masking rule was modified.

2024-05-09 15:46:20
Statusinteger

The status of the data masking rule. Valid values:

  • 0: expired
  • 1: effective
1
DesensWaystring

The data masking method.

HASH
DesenModestring

The type of the data masking method.

HASH
DesensRulestring

The data masking rule.

HASH
SceneCodestring

The code of the level-1 data masking scenario to which the rule belongs. Valid values:

  • dataworks_display_desense_code: masking of displayed data in DataStudio and Data Map
  • maxcompute_desense_code: data masking at the MaxCompute compute engine layer
  • maxcompute_new_desense_code: data masking at the MaxCompute compute engine layer (new)
  • hologres_display_desense_code: data masking at the Hologres compute engine layer
  • dataworks_data_integration_desense_code: static data masking in Data Integration
  • dataworks_analysis_desense_code: masking of displayed data in DataAnalysis
dataworks_display_desense_code
CheckWatermarkboolean

Indicates whether a watermark is added. Valid values:

  • true
  • false
true
SceneNamestring

The name of the level-2 data masking scenario to which the data masking rule belongs.

test_scene
RequestIdstring

The request ID. You can use the ID to locate logs and troubleshoot issues.

102400001

Examples

Sample success responses

JSONformat

{
  "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"
      }
    ]
  },
  "RequestId": "102400001"
}

Error codes

HTTP status codeError codeError messageDescription
400DESENSPLAN.DATATYPE.ERRORSensitive type already has a desensitization rule.Desensitization rules have been configured for sensitive types.
400DESENSPLAN.DATATYPENOTEXIST.ERRORSensitive type not exist.The sensitive type does not exist.
400DESENSPLAN.ID.ERRORDesensitization rule ID does not exist.The desensitization rule ID does not exist.
400DESENSPLAN.PAGESIZE.ERRORPage size is too large, maximum of 100.Page size limit, up to 100
400DESENSPLAN.PARAM.ERRORDesensitization rule parameter error.The desensitization rule parameter is incorrect.
400DESENSPLAN.SCENECODE.ERRORScene code does not exist.Scene code does not exist
400DESENSPLAN.SCENEID.ERRORScene ID does not exist.Scene ID does not exist.
400DESENSPLAN.SCENEIDLEVEL.ERRORThe scene is not a secondary scene.The scene is not a secondary scene.
400DESENSPLAN.SIZE.ERRORThe number of desens plan exceeds the limit.The number of desensitization rules exceeded the limit.
400PARAMS.ERRORparam error.-
403PERMISSION.DENIED.ERRORPermission deniedInsufficient permissions.
500UNKNOWN.ERRORunknown error.Unknown error.

For a list of error codes, visit the Service error codes.