Add info about direction in QoS bandwidth limit rule
As `direction` parameter was added to QoS bandwidth limit rule in Ia13568879c2b6f80fb190ccafe7e19ca05b0c6a8 This commit adds info about this parameter to API documention. Change-Id: Id41844715f5385e89b2b9f97ee922b7072360a8a
This commit is contained in:
parent
8deff26d53
commit
38fa5a00e1
@ -4377,6 +4377,44 @@ psk:
|
||||
in: body
|
||||
required: true
|
||||
type: string
|
||||
qos-rule-direction:
|
||||
description: |
|
||||
The direction of the traffic to which the QoS
|
||||
rule is applied, as seen from the point of view
|
||||
of the ``port``.
|
||||
Valid values are ``egress`` and ``ingress``.
|
||||
Default value is ``egress``.
|
||||
in: body
|
||||
required: false
|
||||
type: string
|
||||
qos-rule-direction-response:
|
||||
description: |
|
||||
The direction of the traffic to which the QoS
|
||||
rule is applied, as seen from the point of view
|
||||
of the ``port``.
|
||||
Valid values are ``egress`` and ``ingress``.
|
||||
Default value is ``egress``.
|
||||
in: body
|
||||
required: true
|
||||
type: string
|
||||
qos-rule-direction-update:
|
||||
description: |
|
||||
The direction of the traffic to which the QoS
|
||||
rule is applied, as seen from the point of view
|
||||
of the ``port``.
|
||||
Valid values are ``egress`` and ``ingress``.
|
||||
in: body
|
||||
required: false
|
||||
type: string
|
||||
qos-rule-direction-update-response:
|
||||
description: |
|
||||
The direction of the traffic to which the QoS
|
||||
rule is applied, as seen from the point of view
|
||||
of the ``port``.
|
||||
Valid values are ``egress`` and ``ingress``.
|
||||
in: body
|
||||
required: true
|
||||
type: string
|
||||
qos-rule-type:
|
||||
description: |
|
||||
The type of QoS rule.
|
||||
|
@ -278,6 +278,7 @@ Response Parameters
|
||||
- max_kbps: max_kbps-response
|
||||
- id: qos_bandwidth_limit_rule-id
|
||||
- max_burst_kbps: max_burst_kbps-response
|
||||
- direction: qos-rule-direction-response
|
||||
|
||||
Response Example
|
||||
----------------
|
||||
@ -305,6 +306,7 @@ Request
|
||||
- bandwidth_limit_rule: bandwidth_limit_rule
|
||||
- max_kbps: max_kbps
|
||||
- max_burst_kbps: max_burst_kbps
|
||||
- direction: qos-rule-direction
|
||||
|
||||
Request Example
|
||||
---------------
|
||||
@ -321,6 +323,7 @@ Response Parameters
|
||||
- max_kbps: max_kbps-response
|
||||
- id: qos_bandwidth_limit_rule-id
|
||||
- max_burst_kbps: max_burst_kbps-response
|
||||
- direction: qos-rule-direction-response
|
||||
|
||||
Response Example
|
||||
----------------
|
||||
@ -356,6 +359,7 @@ Response Parameters
|
||||
- max_kbps: max_kbps-response
|
||||
- id: qos_bandwidth_limit_rule-id
|
||||
- max_burst_kbps: max_burst_kbps-response
|
||||
- direction: qos-rule-direction-response
|
||||
|
||||
Response Example
|
||||
----------------
|
||||
@ -387,6 +391,7 @@ Request
|
||||
- bandwidth_limit_rule: bandwidth_limit_rule
|
||||
- max_kbps: max_kbps
|
||||
- max_burst_kbps: max_burst_kbps
|
||||
- direction: qos-rule-direction-update
|
||||
|
||||
Request Example
|
||||
---------------
|
||||
@ -403,6 +408,7 @@ Response Parameters
|
||||
- max_kbps: max_kbps-response
|
||||
- id: qos_bandwidth_limit_rule-id
|
||||
- max_burst_kbps: max_burst_kbps-response
|
||||
- direction: qos-rule-direction-update-response
|
||||
|
||||
Response Example
|
||||
----------------
|
||||
|
@ -2,6 +2,7 @@
|
||||
"bandwidth_limit_rule": {
|
||||
"id": "5f126d84-551a-4dcf-bb01-0e9c0df0c793",
|
||||
"max_kbps": 10000,
|
||||
"max_burst_kbps": 0
|
||||
"max_burst_kbps": 0,
|
||||
"direction": "egress"
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
"bandwidth_limit_rule": {
|
||||
"id": "5f126d84-551a-4dcf-bb01-0e9c0df0c793",
|
||||
"max_kbps": 10000,
|
||||
"max_burst_kbps": 0
|
||||
"max_burst_kbps": 0,
|
||||
"direction": "egress"
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
"bandwidth_limit_rule": {
|
||||
"id": "5f126d84-551a-4dcf-bb01-0e9c0df0c793",
|
||||
"max_kbps": 10000,
|
||||
"max_burst_kbps": 0
|
||||
"max_burst_kbps": 0,
|
||||
"direction": "egress"
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,8 @@
|
||||
{
|
||||
"id": "5f126d84-551a-4dcf-bb01-0e9c0df0c793",
|
||||
"max_kbps": 10000,
|
||||
"max_burst_kbps": 0
|
||||
"max_burst_kbps": 0,
|
||||
"direction": "egress"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user