Add exception for policy deleted objects

For the NSX policy manager, if an object was deleted, it cannot be
recreated immediately with the same name/path, and should wait until
it is permanently deleted from the backend.
This patch adds the error code and exception for this case.

Change-Id: Icaa41ada29209b476963a8cee4362f211ef02c66
This commit is contained in:
Adit Sarfaty
2018-03-25 12:28:38 +03:00
parent 3483579700
commit a4a11df7e2
2 changed files with 8 additions and 1 deletions

View File

@@ -145,3 +145,9 @@ class NsxSearchInvalidQuery(NsxLibException):
class NsxIndexingInProgress(NsxLibException):
message = _("Bad Request due to indexing is in progress, please retry "
"after sometime")
class NsxPendingDelete(NsxLibException):
message = _("An object with the same name is marked for deletion. Either "
"use another path or wait for the purge cycle to permanently "
"remove the deleted object")