summaryrefslogtreecommitdiff
path: root/ovn/ovn-nb.ovsschema
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@ovn.org>2016-12-16 17:40:24 -0800
committerJustin Pettit <jpettit@ovn.org>2017-07-28 17:00:32 -0700
commitd383eed5958967fa38661b6ac978be4bdb98dfea (patch)
tree7aba43b8f3bef55deebc0d6b1add8101dbf2548e /ovn/ovn-nb.ovsschema
parent19536b6a4b2dcf4e469b50eac090bf2442c8dd37 (diff)
downloadopenvswitch-d383eed5958967fa38661b6ac978be4bdb98dfea.tar.gz
ovn: Add support for ACL logging.
Signed-off-by: Justin Pettit <jpettit@ovn.org> Acked-by: Han Zhou <zhouhan@gmail.com> Acked-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ovn/ovn-nb.ovsschema')
-rw-r--r--ovn/ovn-nb.ovsschema15
1 files changed, 12 insertions, 3 deletions
diff --git a/ovn/ovn-nb.ovsschema b/ovn/ovn-nb.ovsschema
index d85a3fe98..a077bfb81 100644
--- a/ovn/ovn-nb.ovsschema
+++ b/ovn/ovn-nb.ovsschema
@@ -1,7 +1,7 @@
{
"name": "OVN_Northbound",
- "version": "5.7.0",
- "cksum": "3754583060 16164",
+ "version": "5.8.0",
+ "cksum": "2812300190 16766",
"tables": {
"NB_Global": {
"columns": {
@@ -116,7 +116,7 @@
"isRoot": true},
"Load_Balancer": {
"columns": {
- "name": {"type": "string"},
+ "name": {"type": "string"},
"vips": {
"type": {"key": "string", "value": "string",
"min": 0, "max": "unlimited"}},
@@ -130,6 +130,9 @@
"isRoot": true},
"ACL": {
"columns": {
+ "name": {"type": {"key": {"type": "string",
+ "maxLength": 63},
+ "min": 0, "max": 1}},
"priority": {"type": {"key": {"type": "integer",
"minInteger": 0,
"maxInteger": 32767}}},
@@ -139,6 +142,12 @@
"action": {"type": {"key": {"type": "string",
"enum": ["set", ["allow", "allow-related", "drop", "reject"]]}}},
"log": {"type": "boolean"},
+ "severity": {"type": {"key": {"type": "string",
+ "enum": ["set",
+ ["alert", "warning",
+ "notice", "info",
+ "debug"]]},
+ "min": 0, "max": 1}},
"external_ids": {
"type": {"key": "string", "value": "string",
"min": 0, "max": "unlimited"}}},