Scaleway · Schema

scaleway.rdb.v1.ListDatabaseEnginesResponse

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
engines array List of the available database engines.
total_count integer Total count of database engines available.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayrdbv1listdatabaseenginesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.rdb.v1.ListDatabaseEnginesResponse",
  "title": "scaleway.rdb.v1.ListDatabaseEnginesResponse",
  "type": "object",
  "properties": {
    "engines": {
      "type": "array",
      "description": "List of the available database engines.",
      "items": {
        "$ref": "#/components/schemas/scaleway.rdb.v1.DatabaseEngine"
      }
    },
    "total_count": {
      "type": "integer",
      "description": "Total count of database engines available.",
      "format": "uint32"
    }
  },
  "x-properties-order": [
    "engines",
    "total_count"
  ]
}