If SSP if forced deleted, we skip the Rule Analysis feature deactivation that is required to de-register the Rule Analysis UI plugin from NSX. That plugin continues to show and display an error message.
SSP 5.x
Rule Analysis UI plugin not de-registered from NSX
1. Confirm the plugin is registered
curl -sk -u "admin:<password>" \
"https://<nsx-mgr>/policy/api/v1/ui-controller/remote-ui-plugins" \
| python3 -c "import sys,json; d=json.load(sys.stdin); [print(p['id']) for p in d['results']]"
Expected sample output (plugin is present):
security-ui
rule-analysis-ui
2. Delete the plugin
curl -sk -u "admin:<password>" \
-X DELETE \
-H "X-Allow-Overwrite: true" \
"https://<nsx-mgr>/policy/api/v1/ui-controller/remote-ui-plugins/rule-analysis-ui"
Expected output (only security-ui remains):
security-ui
Important notes
{"error_code": 289, "error_message": "Principal 'admin' ... attempts to delete or modify an object it doesn't own. (createUser=napp_platform_egress, allowOverwrite=null)"}