Merge "Add policy description for Servers IPs"

This commit is contained in:
Jenkins
2017-05-04 03:55:21 +00:00
committed by Gerrit Code Review
+20 -8
View File
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_policy import policy
from nova.policies import base
@@ -22,12 +20,26 @@ POLICY_ROOT = 'os_compute_api:ips:%s'
ips_policies = [
policy.RuleDefault(
name=POLICY_ROOT % 'show',
check_str=base.RULE_ADMIN_OR_OWNER),
policy.RuleDefault(
name=POLICY_ROOT % 'index',
check_str=base.RULE_ADMIN_OR_OWNER),
base.create_rule_default(
POLICY_ROOT % 'show',
base.RULE_ADMIN_OR_OWNER,
"""Shows IP addresses details for a network label of a server.""",
[
{
'method': 'GET',
'path': '/servers/{server_id}/ips/{network_label}'
}
]),
base.create_rule_default(
POLICY_ROOT % 'index',
base.RULE_ADMIN_OR_OWNER,
"""Lists IP addresses that are assigned to a server.""",
[
{
'method': 'GET',
'path': '/servers/{server_id}/ips'
}
]),
]