Deployment add-ons now discoverable via the API

The Compose API team has rolled out a new endpoint that provides the list of currently active add-ons provisioned for a given deployment.

Here is an example of a response for an Elasticsearch deployment that has the Telegraf add-on enabled:

{
  "_embedded": {
    "addons": [{
      "name": "telegraf"
    }]
  }
}

Further support for addon management is planned.

Changelog