diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-01-17 17:13:51 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-01-17 17:13:51 +0000 |
| commit | 820c46021d62a922da753a1bdee2df8b25ed23bc (patch) | |
| tree | 61121080026955ba477eeb72c820bb15e3f6b018 /etc | |
| parent | 70bf86e13fbdaf5a2deec24993744f8c0e41b4e3 (diff) | |
| parent | 480875d49c722a2310b52c3bd4b2241598df86c8 (diff) | |
Merge "Add policy checking to nova.network.api.API"
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/nova/policy.json | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/etc/nova/policy.json b/etc/nova/policy.json index 78003d2e3..44bbee65d 100644 --- a/etc/nova/policy.json +++ b/etc/nova/policy.json @@ -13,5 +13,40 @@ "volume:get_all": [], "volume:get_volume_metadata": [], "volume:get_snapshot": [], - "volume:get_all_snapshots": [] + "volume:get_all_snapshots": [], + + + "network:get_all_networks": [], + "network:get_network": [], + "network:delete_network": [], + "network:disassociate_network": [], + "network:get_vifs_by_instance": [], + "network:allocate_for_instance": [], + "network:deallocate_for_instance": [], + "network:validate_networks": [], + "network:get_instance_uuids_by_ip_filter": [], + + "network:get_floating_ip": [], + "network:get_floating_ip_pools": [], + "network:get_floating_ip_by_address": [], + "network:get_floating_ips_by_project": [], + "network:get_floating_ips_by_fixed_address": [], + "network:allocate_floating_ip": [], + "network:deallocate_floating_ip": [], + "network:associate_floating_ip": [], + "network:disassociate_floating_ip": [], + + "network:get_fixed_ip": [], + "network:add_fixed_ip_to_instance": [], + "network:remove_fixed_ip_from_instance": [], + "network:add_network_to_project": [], + "network:get_instance_nw_info": [], + + "network:get_dns_zones": [], + "network:add_dns_entry": [], + "network:modify_dns_entry": [], + "network:delete_dns_entry": [], + "network:get_dns_entries_by_address": [], + "network:get_dns_entries_by_name": [] } + |
