nova/nova/policies/volumes.py
ghanshyam b413b41ad5 Fix indentation in policy doc
Few generated policy doc are not in horizontal
indentation.

Wrapping the policy doc string to have good indentation
in generated sample policy file.

Change-Id: Ia5576ded7bb4a449484a9d687fc2cd4fa724119a
Implements: blueprint policy-docs
2017-07-18 10:06:23 +03:00

81 lines
2.1 KiB
Python

# Copyright 2016 Cloudbase Solutions Srl
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo_policy import policy
from nova.policies import base
BASE_POLICY_NAME = 'os_compute_api:os-volumes'
volumes_policies = [
policy.DocumentedRuleDefault(
BASE_POLICY_NAME,
base.RULE_ADMIN_OR_OWNER,
"""Manage volumes for use with the Compute API.
Lists, shows details, creates, and deletes volumes and
snapshots. These APIs are proxy calls to the Volume service.
These are all deprecated.
""",
[
{
'method': 'GET',
'path': '/os-volumes'
},
{
'method': 'POST',
'path': '/os-volumes'
},
{
'method': 'GET',
'path': '/os-volumes/detail'
},
{
'method': 'GET',
'path': '/os-volumes/{volume_id}'
},
{
'method': 'DELETE',
'path': '/os-volumes/{volume_id}'
},
{
'method': 'GET',
'path': '/os-snapshots'
},
{
'method': 'POST',
'path': '/os-snapshots'
},
{
'method': 'GET',
'path': '/os-snapshots/detail'
},
{
'method': 'GET',
'path': '/os-snapshots/{snapshot_id}'
},
{
'method': 'DELETE',
'path': '/os-snapshots/{snapshot_id}'
}
]),
]
def list_rules():
return volumes_policies