...
Code Block | ||||
---|---|---|---|---|
| ||||
// Deleting from PAP will remove the policy from the PolicyEntity & PolicyVersion tables (UI-Editor tab). // This means that the policy willis no longer be available in Policy System. // PayLoad: { "policyName": "com.testpolicy", //scope.policyName "policyType": "Base", //policy type "policyComponent": "PAP", //component name "deleteCondition": "ALL" //versions (ALL or CURRENT) } |
Code Block | ||||
---|---|---|---|---|
| ||||
// Deleting from PDP will delete the policy from the PDP Group. The policy is still available in Policy System. // When the policy is needed again, the policy should be pushed to the PDP. // PayLoad: { "policyName": "com.testpolicy", //scope.policyName "policyType": "Base", //policy type "policyComponent": "PDP", //component name "pdpGroup": "Default" //group name } |
...