Scaleway · Schema

scaleway.rdb.v1.Privilege

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
permission string Permission (Read, Read/Write, All, Custom).
database_name string Name of the database.
user_name string Name of the user.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayrdbv1privilege-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.rdb.v1.Privilege",
  "title": "scaleway.rdb.v1.Privilege",
  "type": "object",
  "properties": {
    "permission": {
      "type": "string",
      "description": "Permission (Read, Read/Write, All, Custom).",
      "enum": [
        "readonly",
        "readwrite",
        "all",
        "custom",
        "none"
      ],
      "default": "readonly"
    },
    "database_name": {
      "type": "string",
      "description": "Name of the database."
    },
    "user_name": {
      "type": "string",
      "description": "Name of the user."
    }
  },
  "x-properties-order": [
    "permission",
    "database_name",
    "user_name"
  ]
}