Scaleway · Schema

scaleway.rdb.v1.Maintenance

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
starts_at string Start date of the maintenance window. (RFC 3339 format)
stops_at string End date of the maintenance window. (RFC 3339 format)
closed_at string Closed maintenance date. (RFC 3339 format)
reason string Maintenance information message.
status string Status of the maintenance.
forced_at string Time when Scaleway-side maintenance will be applied. (RFC 3339 format)
is_applicable boolean Indicate if the maintenance can be applied by the user.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayrdbv1maintenance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.rdb.v1.Maintenance",
  "title": "scaleway.rdb.v1.Maintenance",
  "type": "object",
  "properties": {
    "starts_at": {
      "type": "string",
      "description": "Start date of the maintenance window. (RFC 3339 format)",
      "format": "date-time",
      "example": "2022-03-22T12:34:56.123456Z",
      "nullable": true
    },
    "stops_at": {
      "type": "string",
      "description": "End date of the maintenance window. (RFC 3339 format)",
      "format": "date-time",
      "example": "2022-03-22T12:34:56.123456Z",
      "nullable": true
    },
    "closed_at": {
      "type": "string",
      "description": "Closed maintenance date. (RFC 3339 format)",
      "format": "date-time",
      "example": "2022-03-22T12:34:56.123456Z",
      "nullable": true
    },
    "reason": {
      "type": "string",
      "description": "Maintenance information message."
    },
    "status": {
      "type": "string",
      "description": "Status of the maintenance.",
      "enum": [
        "unknown",
        "pending",
        "done",
        "canceled",
        "ongoing"
      ],
      "default": "unknown"
    },
    "forced_at": {
      "type": "string",
      "description": "Time when Scaleway-side maintenance will be applied. (RFC 3339 format)",
      "format": "date-time",
      "example": "2022-03-22T12:34:56.123456Z",
      "nullable": true
    },
    "is_applicable": {
      "type": "boolean",
      "description": "Indicate if the maintenance can be applied by the user."
    }
  },
  "x-properties-order": [
    "starts_at",
    "stops_at",
    "closed_at",
    "reason",
    "status",
    "forced_at",
    "is_applicable"
  ]
}