[BETA] Get DBaaS integration types

GET /dbaas-integration-types

[BETA] Get DBaaS integration types

Responses

  • 200 application/json

    200

    Hide response attribute Show response attribute object
    • dbaas-integration-types array[object]
      Hide dbaas-integration-types attributes Show dbaas-integration-types attributes object
      • type string

        The type of the integration.

      • source-description string

        The description of the source service types.

      • source-service-types array[string]

        A list of the source service types the integration supports.

      • dest-description string

        The description of the destination service types.

      • dest-service-types array[string]

        A list of the destination service types the integration supports.

      • settings object

        A JSON schema of additional settings of the integration.

        Hide settings attributes Show settings attributes object
        • properties object
        • additionalProperties boolean
        • type string
        • title string
GET /dbaas-integration-types
curl \
 --request GET 'https://api-ch-gva-2.exoscale.com/v2/dbaas-integration-types'
Response examples (200)
{
  "dbaas-integration-types": [
    {
      "type": "string",
      "source-description": "string",
      "source-service-types": [
        "string"
      ],
      "dest-description": "string",
      "dest-service-types": [
        "string"
      ],
      "settings": {
        "properties": {},
        "additionalProperties": true,
        "type": "string",
        "title": "string"
      }
    }
  ]
}