diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-09-01 17:01:13 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-09-01 17:01:13 +0000 |
commit | f53d6241987bbf6c261069e0a62ebabcc0a83c67 (patch) | |
tree | a84373054db2dcd1c011ec55a77577604b6fa951 /neutronclient/shell.py | |
parent | d687f19e04881ae7b98dc81a61239cf21cd0c002 (diff) | |
parent | a6cdd1daced1080c42caabfcd9cb0ee509d8a269 (diff) | |
download | python-neutronclient-6.0.0.tar.gz |
Merge "Add QoS egress minimum bandwidth rule to neutronclient"6.0.0
Diffstat (limited to 'neutronclient/shell.py')
-rw-r--r-- | neutronclient/shell.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/neutronclient/shell.py b/neutronclient/shell.py index dad8d48..39ab0aa 100644 --- a/neutronclient/shell.py +++ b/neutronclient/shell.py @@ -73,6 +73,7 @@ from neutronclient.neutron.v2_0 import port from neutronclient.neutron.v2_0 import purge from neutronclient.neutron.v2_0.qos import bandwidth_limit_rule from neutronclient.neutron.v2_0.qos import dscp_marking_rule +from neutronclient.neutron.v2_0.qos import minimum_bandwidth_rule from neutronclient.neutron.v2_0.qos import policy as qos_policy from neutronclient.neutron.v2_0.qos import rule as qos_rule from neutronclient.neutron.v2_0 import quota @@ -397,6 +398,21 @@ COMMAND_V2 = { 'qos-dscp-marking-rule-delete': ( dscp_marking_rule.DeleteQoSDscpMarkingRule ), + 'qos-minimum-bandwidth-rule-create': ( + minimum_bandwidth_rule.CreateQoSMinimumBandwidthRule + ), + 'qos-minimum-bandwidth-rule-show': ( + minimum_bandwidth_rule.ShowQoSMinimumBandwidthRule + ), + 'qos-minimum-bandwidth-rule-list': ( + minimum_bandwidth_rule.ListQoSMinimumBandwidthRules + ), + 'qos-minimum-bandwidth-rule-update': ( + minimum_bandwidth_rule.UpdateQoSMinimumBandwidthRule + ), + 'qos-minimum-bandwidth-rule-delete': ( + minimum_bandwidth_rule.DeleteQoSMinimumBandwidthRule + ), 'qos-available-rule-types': qos_rule.ListQoSRuleTypes, 'flavor-list': flavor.ListFlavor, 'flavor-show': flavor.ShowFlavor, |