Comment 20 for bug 1204956

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to python-neutronclient (master)

Reviewed: https://review.openstack.org/313134
Committed: https://git.openstack.org/cgit/openstack/python-neutronclient/commit/?id=d45442b3d46b26d928a5634874530168f961bb2b
Submitter: Jenkins
Branch: master

commit d45442b3d46b26d928a5634874530168f961bb2b
Author: Abhishek Raut <email address hidden>
Date: Tue May 3 05:17:12 2016 -0700

    Add support to expose default quotas for tenants

    Neutron client should be able to show the default quotas
    set for tenants. This patch adds support for the same and
    introduces a new CLI to retrieve default quotas.

    Sample usage:

    neutron quota-default-show
    +-----------------------+-------+
    | Field | Value |
    +-----------------------+-------+
    | floatingip | 50 |
    | l2-gateway-connection | -1 |
    | network | 10 |
    | port | 50 |
    | rbac_policy | 10 |
    | router | 10 |
    | security_group | 10 |
    | security_group_rule | 100 |
    | subnet | 10 |
    | subnetpool | -1 |
    +-----------------------+-------+

    Change-Id: Ie92c22862d2b8ace32a2cf4cb642a6d0bac7932d
    Closes-Bug: #1204956