Etcd · Schema

AlarmResponse

Response from an alarm operation

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
header object
alarms array List of active alarms in the cluster
View JSON Schema on GitHub

JSON Schema

etcd-alarmresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlarmResponse",
  "title": "AlarmResponse",
  "type": "object",
  "description": "Response from an alarm operation",
  "properties": {
    "header": {
      "$ref": "#/components/schemas/ResponseHeader"
    },
    "alarms": {
      "type": "array",
      "description": "List of active alarms in the cluster",
      "items": {
        "$ref": "#/components/schemas/AlarmMember"
      }
    }
  }
}