
This change intends to add the following policies: - actions:publicize - workflows:publicize A refactor of the policy tests is included to increase the coverage. Change-Id: I8bd637f7de63f02c63f3c304cb6f5198fc0c5f42 Closes-Bug: 1779293
96 lines
2.6 KiB
Python
96 lines
2.6 KiB
Python
# 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 mistral.policies import base
|
|
|
|
ACTIONS = 'actions:%s'
|
|
|
|
rules = [
|
|
policy.DocumentedRuleDefault(
|
|
name=ACTIONS % 'create',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
description='Create a new action.',
|
|
operations=[
|
|
{
|
|
'path': '/v2/actions',
|
|
'method': 'POST'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=ACTIONS % 'delete',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
description='Delete the named action.',
|
|
operations=[
|
|
{
|
|
'path': '/v2/actions',
|
|
'method': 'DELETE'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=ACTIONS % 'get',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
description='Return the named action.',
|
|
operations=[
|
|
{
|
|
'path': '/v2/actions/{action_id}',
|
|
'method': 'GET'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=ACTIONS % 'list',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
description='Return all actions.',
|
|
operations=[
|
|
{
|
|
'path': '/v2/actions',
|
|
'method': 'GET'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=ACTIONS % 'publicize',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
description='Make an action publicly available',
|
|
operations=[
|
|
{
|
|
'path': '/v2/actions',
|
|
'method': 'POST'
|
|
},
|
|
{
|
|
'path': '/v2/actions',
|
|
'method': 'PUT'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=ACTIONS % 'update',
|
|
check_str=base.RULE_ADMIN_OR_OWNER,
|
|
description='Update one or more actions.',
|
|
operations=[
|
|
{
|
|
'path': '/v2/actions',
|
|
'method': 'PUT'
|
|
}
|
|
]
|
|
)
|
|
]
|
|
|
|
|
|
def list_rules():
|
|
return rules
|