correcting property names to align with review comments

This commit is contained in:
Binny
2025-01-29 14:29:20 +00:00
parent 548b76a948
commit cb0069a356
4 changed files with 21 additions and 21 deletions

View File

@@ -368,17 +368,17 @@ properties:
type: boolean type: boolean
description: Enables the transmission of SNMP trap notifications about LLDP changes. description: Enables the transmission of SNMP trap notifications about LLDP changes.
default: false default: false
rate-limit-config: rate-limit-port:
type: object type: object
description: "Configuration for ingress and egress rate limiting on a specific port or interface." description: Configuration for ingress and egress rate limiting on a specific port (in kbps)
properties: properties:
rate-limit-ingress: ingress-kbps:
type: integer type: integer
description: Sets the maximum allowed ingress (input) traffic rate for the interface, in kilobits per second (kbps). description: Sets the maximum allowed ingress (input) traffic rate for the port, in kilobits per second (kbps).
minimum: 64 minimum: 64
maximum: 1000000000 maximum: 1000000000
rate-limit-egress: egress-kbps:
type: integer type: integer
description: Sets the maximum allowed egress (output) traffic rate for the interface, in kilobits per second (kbps). description: Sets the maximum allowed egress (output) traffic rate for the port, in kilobits per second (kbps).
minimum: 64 minimum: 64
maximum: 1000000000 maximum: 1000000000

View File

@@ -589,19 +589,19 @@
} }
} }
}, },
"rate-limit-config": { "rate-limit-port": {
"type": "object", "type": "object",
"description": "Configuration for ingress and egress rate limiting on a specific port or interface.", "description": "Configuration for ingress and egress rate limiting on a specific port (in kbps)",
"properties": { "properties": {
"rate-limit-ingress": { "ingress-kbps": {
"type": "integer", "type": "integer",
"description": "Sets the maximum allowed ingress (input) traffic rate for the interface, in kilobits per second (kbps).", "description": "Sets the maximum allowed ingress (input) traffic rate for the port, in kilobits per second (kbps).",
"minimum": 64, "minimum": 64,
"maximum": 1000000000 "maximum": 1000000000
}, },
"rate-limit-egress": { "egress-kbps": {
"type": "integer", "type": "integer",
"description": "Sets the maximum allowed egress (output) traffic rate for the interface, in kilobits per second (kbps).", "description": "Sets the maximum allowed egress (output) traffic rate for the port, in kilobits per second (kbps).",
"minimum": 64, "minimum": 64,
"maximum": 1000000000 "maximum": 1000000000
} }

View File

@@ -529,15 +529,15 @@
} }
} }
}, },
"rate-limit-config": { "rate-limit-port": {
"type": "object", "type": "object",
"properties": { "properties": {
"rate-limit-ingress": { "ingress-kbps": {
"type": "integer", "type": "integer",
"minimum": 64, "minimum": 64,
"maximum": 1000000000 "maximum": 1000000000
}, },
"rate-limit-egress": { "egress-kbps": {
"type": "integer", "type": "integer",
"minimum": 64, "minimum": 64,
"maximum": 1000000000 "maximum": 1000000000

View File

@@ -623,19 +623,19 @@
} }
} }
}, },
"rate-limit-config": { "rate-limit-port": {
"type": "object", "type": "object",
"description": "Configuration for ingress and egress rate limiting on a specific port or interface.", "description": "Configuration for ingress and egress rate limiting on a specific port (in kbps)",
"properties": { "properties": {
"rate-limit-ingress": { "ingress-kbps": {
"type": "integer", "type": "integer",
"description": "Sets the maximum allowed ingress (input) traffic rate for the interface, in kilobits per second (kbps).", "description": "Sets the maximum allowed ingress (input) traffic rate for the port, in kilobits per second (kbps).",
"minimum": 64, "minimum": 64,
"maximum": 1000000000 "maximum": 1000000000
}, },
"rate-limit-egress": { "egress-kbps": {
"type": "integer", "type": "integer",
"description": "Sets the maximum allowed egress (output) traffic rate for the interface, in kilobits per second (kbps).", "description": "Sets the maximum allowed egress (output) traffic rate for the port, in kilobits per second (kbps).",
"minimum": 64, "minimum": 64,
"maximum": 1000000000 "maximum": 1000000000
} }