summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/source/cli/command-objects/quota.rst3
-rw-r--r--openstackclient/common/quota.py3
-rw-r--r--openstackclient/tests/unit/common/test_quota.py9
3 files changed, 0 insertions, 15 deletions
diff --git a/doc/source/cli/command-objects/quota.rst b/doc/source/cli/command-objects/quota.rst
index f39536af..126b210c 100644
--- a/doc/source/cli/command-objects/quota.rst
+++ b/doc/source/cli/command-objects/quota.rst
@@ -70,10 +70,7 @@ Set quotas for project
[--ports <num-ports>]
[--routers <num-routers>]
[--rbac-policies <num-rbac-policies>]
- [--vips <num-vips>]
[--subnetpools <num-subnetpools>]
- [--members <num-members>]
- [--health-monitors <num-health-monitors>]
<project>
diff --git a/openstackclient/common/quota.py b/openstackclient/common/quota.py
index 282ea428..1027859a 100644
--- a/openstackclient/common/quota.py
+++ b/openstackclient/common/quota.py
@@ -75,10 +75,7 @@ NETWORK_QUOTAS = {
'port': 'ports',
'router': 'routers',
'rbac_policy': 'rbac-policies',
- 'vip': 'vips',
'subnetpool': 'subnetpools',
- 'healthmonitor': 'health-monitors',
- 'l7policy': 'l7policies',
}
NETWORK_KEYS = ['floating_ips', 'networks', 'rbac_policies', 'routers',
diff --git a/openstackclient/tests/unit/common/test_quota.py b/openstackclient/tests/unit/common/test_quota.py
index 1a3da31d..fc975b98 100644
--- a/openstackclient/tests/unit/common/test_quota.py
+++ b/openstackclient/tests/unit/common/test_quota.py
@@ -644,9 +644,6 @@ class TestQuotaSet(TestQuota):
'--routers', str(network_fakes.QUOTA['router']),
'--rbac-policies', str(network_fakes.QUOTA['rbac_policy']),
'--ports', str(network_fakes.QUOTA['port']),
- '--vips', str(network_fakes.QUOTA['vip']),
- '--health-monitors', str(network_fakes.QUOTA['healthmonitor']),
- '--l7policies', str(network_fakes.QUOTA['l7policy']),
self.projects[0].name,
]
verifylist = [
@@ -660,9 +657,6 @@ class TestQuotaSet(TestQuota):
('router', network_fakes.QUOTA['router']),
('rbac_policy', network_fakes.QUOTA['rbac_policy']),
('port', network_fakes.QUOTA['port']),
- ('vip', network_fakes.QUOTA['vip']),
- ('healthmonitor', network_fakes.QUOTA['healthmonitor']),
- ('l7policy', network_fakes.QUOTA['l7policy']),
('project', self.projects[0].name),
]
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
@@ -679,9 +673,6 @@ class TestQuotaSet(TestQuota):
'router': network_fakes.QUOTA['router'],
'rbac_policy': network_fakes.QUOTA['rbac_policy'],
'port': network_fakes.QUOTA['port'],
- 'vip': network_fakes.QUOTA['vip'],
- 'healthmonitor': network_fakes.QUOTA['healthmonitor'],
- 'l7policy': network_fakes.QUOTA['l7policy'],
}
self.network_mock.update_quota.assert_called_once_with(
self.projects[0].id,