[BETA] Create a new DBaaS connection between a DBaaS service and an external service

PUT /dbaas-external-endpoint/{source-service-name}/attach

[BETA] Create a new DBaaS connection between a DBaaS service and an external service

Path parameters

application/json

Body Required

  • dest-endpoint-id string(uuid) Required

    External endpoint id

  • type string Required

    External integration endpoint type

    Values are prometheus, opensearch, rsyslog, datadog, or elasticsearch.

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object

    Operation

    • id string(uuid)

      Operation ID

    • reason string

      Operation failure reason

      Values are incorrect, unknown, unavailable, forbidden, busy, fault, partial, not-found, interrupted, unsupported, or conflict.

    • Related resource reference

      Hide reference attributes Show reference attributes object
      • id string(uuid)

        Reference ID

      • command string

        Command name

    • message string

      Operation message

    • state string

      Operation status

      Values are failure, pending, success, or timeout.

PUT /dbaas-external-endpoint/{source-service-name}/attach
curl \
 -X PUT https://api-ch-gva-2.exoscale.com/v2/dbaas-external-endpoint/{source-service-name}/attach \
 -H "Content-Type: application/json" \
 -d '{"dest-endpoint-id":"string","type":"prometheus"}'
Request examples
{
  "dest-endpoint-id": "string",
  "type": "prometheus"
}
Response examples (200)
{
  "id": "string",
  "reason": "incorrect",
  "reference": {
    "id": "string",
    "link": "string",
    "command": "string"
  },
  "message": "string",
  "state": "failure"
}