Remove unnecessary entries in resource prefix map
The fix is trivial but the intent is to signal potential new
contributors that they don't need to populate this map if the prefix
is empty.
Change-Id: Ie012f57deeb0c7ec6242531a415adc8a2f65679d
diff --git a/neutron_tempest_plugin/services/network/json/network_client.py b/neutron_tempest_plugin/services/network/json/network_client.py
index d590c25..25fc8c1 100644
--- a/neutron_tempest_plugin/services/network/json/network_client.py
+++ b/neutron_tempest_plugin/services/network/json/network_client.py
@@ -42,20 +42,17 @@
# The following list represents resource names that do not require
# changing underscore to a hyphen
hyphen_exceptions = ["service_profiles", "availability_zones"]
- # the following map is used to construct proper URI
- # for the given neutron resource
+ # The following map is used to construct proper URI
+ # for the given neutron resource.
+ # No need to populate this map if the neutron resource
+ # doesn't have a URI prefix.
service_resource_prefix_map = {
- 'networks': '',
- 'subnets': '',
- 'subnetpools': '',
- 'ports': '',
'metering_labels': 'metering',
'metering_label_rules': 'metering',
'policies': 'qos',
'bandwidth_limit_rules': 'qos',
'minimum_bandwidth_rules': 'qos',
'rule_types': 'qos',
- 'rbac-policies': '',
'logs': 'log',
'loggable_resources': 'log',
}