Change-Id: I9e13c75ae9bc0c63a0fa12782e52777586d93d8c Signed-off-by: lajoskatona <lajos.katona@est.tech>
99 lines
3.1 KiB
Python
99 lines
3.1 KiB
Python
# 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 neutron.conf.policies import base as neutron_base
|
|
from neutron_lib import policy as base
|
|
from oslo_policy import policy
|
|
|
|
DEPRECATED_REASON = """
|
|
The VPaaS API now supports Secure RBAC default roles for ike policies.
|
|
"""
|
|
|
|
rules = [
|
|
policy.DocumentedRuleDefault(
|
|
name='create_ikepolicy',
|
|
check_str=neutron_base.ADMIN_OR_PROJECT_MEMBER,
|
|
scope_types=['project'],
|
|
description='Create an IKE policy',
|
|
operations=[
|
|
{
|
|
'method': 'POST',
|
|
'path': '/vpn/ikepolicies',
|
|
},
|
|
],
|
|
deprecated_rule=policy.DeprecatedRule(
|
|
name='create_ikepolicy',
|
|
check_str=base.RULE_ANY,
|
|
deprecated_reason=DEPRECATED_REASON,
|
|
deprecated_since='2025.2')
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name='update_ikepolicy',
|
|
check_str=neutron_base.ADMIN_OR_PROJECT_MEMBER,
|
|
scope_types=['project'],
|
|
description='Update an IKE policy',
|
|
operations=[
|
|
{
|
|
'method': 'PUT',
|
|
'path': '/vpn/ikepolicies/{id}',
|
|
},
|
|
],
|
|
deprecated_rule=policy.DeprecatedRule(
|
|
name='update_ikepolicy',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
deprecated_reason=DEPRECATED_REASON,
|
|
deprecated_since='2025.2')
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name='delete_ikepolicy',
|
|
check_str=neutron_base.ADMIN_OR_PROJECT_MEMBER,
|
|
scope_types=['project'],
|
|
description='Delete an IKE policy',
|
|
operations=[
|
|
{
|
|
'method': 'DELETE',
|
|
'path': '/vpn/ikepolicies/{id}',
|
|
},
|
|
],
|
|
deprecated_rule=policy.DeprecatedRule(
|
|
name='delete_ikepolicy',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
deprecated_reason=DEPRECATED_REASON,
|
|
deprecated_since='2025.2')
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name='get_ikepolicy',
|
|
check_str=neutron_base.ADMIN_OR_PROJECT_MEMBER,
|
|
scope_types=['project'],
|
|
description='Get IKE policyies',
|
|
operations=[
|
|
{
|
|
'method': 'GET',
|
|
'path': '/vpn/ikepolicies',
|
|
},
|
|
{
|
|
'method': 'GET',
|
|
'path': '/vpn/ikepolicies/{id}',
|
|
},
|
|
],
|
|
deprecated_rule=policy.DeprecatedRule(
|
|
name='get_ikepolicy',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
deprecated_reason=DEPRECATED_REASON,
|
|
deprecated_since='2025.2')
|
|
),
|
|
]
|
|
|
|
|
|
def list_rules():
|
|
return rules
|