BFE · Schema

ReloadResponse

Result of a configuration reload operation.

Load BalancerNetworkingOpen SourceTraffic ManagementCNCFBaidu

Properties

Name Type Description
success boolean Whether the reload succeeded.
message string Human-readable result message.
name string Name of the reloaded configuration.
View JSON Schema on GitHub

JSON Schema

bfe-reload-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bfe/refs/heads/main/json-schema/bfe-reload-response-schema.json",
  "title": "ReloadResponse",
  "description": "Result of a configuration reload operation.",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the reload succeeded.",
      "example": true
    },
    "message": {
      "type": "string",
      "description": "Human-readable result message.",
      "example": "Configuration reloaded successfully"
    },
    "name": {
      "type": "string",
      "description": "Name of the reloaded configuration.",
      "example": "server_data_conf"
    }
  }
}