Modify a Single Data Access Rule¶
POST /api/v1/logging_query_rule/set_disable
Overview¶
Disable a data access rule
Body Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
loggingQueryRuleUuids | array | Y | UUID of the data access rule Allow null: False |
isDisable | boolean | Y | Set the enable status Allow null: False |
Additional Parameter Explanation¶
Request Example¶
curl 'https://openapi.guance.com/api/v1/logging_query_rule/set_disable' \
-H 'Accept: application/json, text/plain, */*' \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw '{"loggingQueryRuleUuids":["lqrl_9f1de1d1440f4af5917a534299d0ad09","lqrl_81bc72d7b58b4764accf773564dfce6a"],"isDisable":true}' \
--compressed