VMware Cloud Director 10.x
To remove the AMQP Broker settings use the Cloud Director API.
By setting a blank hostname and setting the additional properties to their default values Cloud Director will no longer utilize the AMQP Broker.
To achieve this, run a 'PUT' method to the /admin/extension/settings/amqp API which is detailed in the Cloud Director API documentation here, VMware Cloud Director API - PUT /admin/extension/settings/amqp.
For example:
PUT https://vcloud.example.com/api/admin/extension/settings/amqpAccept: application/*+json;version=39.1Authorization: Bearer …Content-Type: application/*+json{ "href": https://vcloud.example.com/api/admin/extension/settings/amqp, "type": "application/vnd.vmware.admin.amqpSettings+json", "amqpHost": "", "amqpPort": 5671, "amqpUsername": "vcd", "amqpPassword": null, "amqpExchange": "vcdExchange", "amqpVHost": "/", "amqpUseSSL": true, "amqpPrefix": "vcd", "vCloudExtension": []}For more information on interacting with the Cloud Director API see the KB article How to establish an API connection VMware Cloud Director.