The VMware Cloud Director entity <catalog_name> already exists
VMware Cloud Director
This issue can occur if a Catalog deletion task did not fully complete.
The old Catalog still exists in Cloud Director but in a state such that the Cloud Director UI will not display it.
Catalog names in Cloud Director must be unique within an Organization.
To resolve this issue the old Catalog can be retrieved and deleted using the Cloud Director API.
After the old Catalog is removed a new Catalog with the same name can be created in the same Organization.
WARNING: Ensure the Catalog is empty of Catalog items before deleting it as all child entities such as vApp Templates and Media will be deleted with the Catalog
https://<vcd_address>/provider/cloud/organizations/urn:vcloud:org:########-####-####-####-########01ab/configure/general
Organization ID:########-####-####-####-########01absudo -i -u postgres psql vcloud -c "select id,name,org_id from catalog where name = '<catalog_name>' and org_id ='<organization_id>';"sudo -i -u postgres psql vcloud -c "select id,name,org_id from catalog where name = 'ExampleCatalog' and org_id ='########-####-####-####-########01ab';" id | name | org_id --------------------------------------+----------------+-------------------------------------- ########-####-####-####-########23cd | ExampleCatalog | ########-####-####-####-########01ab(1 row)########-####-####-####-########23cdGET https://<vcd_address>/api/admin/catalog/<catalog_id>Accept: application/*+json;version=<vcd_api_version>Authorization: Bearer <vcd_auth_token>GET https://<vcd_address>/api/admin/catalog/########-####-####-####-########23cdDELETE https://<vcd_address>/api/admin/catalog/<catalog_id>
Request Headers:Accept: application/*+json;version=<vcd_api_version>Authorization: Bearer <vcd_auth_token>
For example:DELETE https://<vcd_address>/api/admin/catalog/########-####-####-####-########23cdTo resolve this issue, contact Broadcom Support and note this Article ID (387639) in the problem description. For more information, see Creating and managing Broadcom support cases.