deb-python-manilaclient/manilaclient/v2/share_type_access.py
ChangBo Guo(gcb) c8bb1a2755 Remove copy of incubated Oslo code
The Oslo team has moved all previously incubated code from the
openstack/oslo-incubator repository into separate library repositories
and released those libraries to the Python Package Index. Many of our
big tent project teams are still using the old, unsupported, incubated
versions of the code. The Oslo team has been working to remove that
incubated code from projects, and the time has come to finish that work.

As one of community-wide goals in Ocata, please see:
https://github.com/openstack/governance/blob/master/goals/ocata/remove-incubated-oslo-code.rst

Note: This commit also fix pep8 violations.
Change-Id: I03288adb94c702d1d63df88ef9ba33a2ff59eaa3
2016-09-28 10:06:45 +08:00

66 lines
2.4 KiB
Python

# Copyright 2014 OpenStack Foundation
#
# 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.
"""Share type access interface."""
from manilaclient import api_versions
from manilaclient import base
from manilaclient.common.apiclient import base as common_base
class ShareTypeAccess(common_base.Resource):
def __repr__(self):
return "<ShareTypeAccess: %s>" % self.id
class ShareTypeAccessManager(base.ManagerWithFind):
"""Manage :class:`ShareTypeAccess` resources."""
resource_class = ShareTypeAccess
def _do_list(self, share_type, action_name="share_type_access"):
if share_type.is_public:
return None
return self._list(
"/types/%(st_id)s/%(action_name)s" % {
"st_id": common_base.getid(share_type),
"action_name": action_name},
"share_type_access")
@api_versions.wraps("1.0", "2.6")
def list(self, share_type):
return self._do_list(share_type, "os-share-type-access")
@api_versions.wraps("2.7") # noqa
def list(self, share_type):
return self._do_list(share_type, "share_type_access")
def add_project_access(self, share_type, project):
"""Add a project to the given share type access list."""
info = {'project': project}
self._action('addProjectAccess', share_type, info)
def remove_project_access(self, share_type, project):
"""Remove a project from the given share type access list."""
info = {'project': project}
self._action('removeProjectAccess', share_type, info)
def _action(self, action, share_type, info, **kwargs):
"""Perform a share type action."""
body = {action: info}
self.run_hooks('modify_body_for_action', body, **kwargs)
url = '/types/%s/action' % common_base.getid(share_type)
return self.api.client.post(url, body=body)