load-balancing_filter_options

Filter options for a particular resource type (pool or origin). Use null to reset.

APIs.ioEngineeringPlatform

Properties

Name Type Description
disable boolean If set true, disable notifications for this type of resource (pool or origin).
healthy boolean If present, send notifications only for this health status (e.g. false for only DOWN events). Use null to reset (all events).
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-load-balancing-filter-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/load-balancing_filter_options",
  "title": "load-balancing_filter_options",
  "description": "Filter options for a particular resource type (pool or origin). Use null to reset.",
  "nullable": true,
  "properties": {
    "disable": {
      "default": false,
      "description": "If set true, disable notifications for this type of resource (pool or origin).",
      "type": "boolean"
    },
    "healthy": {
      "description": "If present, send notifications only for this health status (e.g. false for only DOWN events). Use null to reset (all events).",
      "nullable": true,
      "type": "boolean"
    }
  },
  "type": "object"
}