Scaleway · Schema

scaleway.rdb.v1.ListPrivilegesResponse

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
privileges array Privileges of a user in a database in a Database Instance.
total_count integer Total count of privileges present on a database.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayrdbv1listprivilegesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.rdb.v1.ListPrivilegesResponse",
  "title": "scaleway.rdb.v1.ListPrivilegesResponse",
  "type": "object",
  "properties": {
    "privileges": {
      "type": "array",
      "description": "Privileges of a user in a database in a Database Instance.",
      "items": {
        "$ref": "#/components/schemas/scaleway.rdb.v1.Privilege"
      }
    },
    "total_count": {
      "type": "integer",
      "description": "Total count of privileges present on a database.",
      "format": "uint32"
    }
  },
  "x-properties-order": [
    "privileges",
    "total_count"
  ]
}