BFE · Schema

ReloadEntry

A configuration reload entry.

Load BalancerNetworkingOpen SourceTraffic ManagementCNCFBaidu

Properties

Name Type Description
name string Unique name of the reload entry.
description string Human-readable description of what is reloaded.
View JSON Schema on GitHub

JSON Schema

bfe-reload-entry-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-entry-schema.json",
  "title": "ReloadEntry",
  "description": "A configuration reload entry.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Unique name of the reload entry.",
      "example": "server_data_conf"
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of what is reloaded.",
      "example": "Server data configuration"
    }
  }
}