17f9908ce2
Add support of new Manila APIs for listing share and share instance export locations. CLI looks like following: $ manila share-export-location-list %share_id% $ manila share-export-location-show %share_id% %el_uuid% $ manila share-instance-export-location-list %si_id% $ manila share-instance-export-location-show %si_id% %el_uuid% Change-Id: I6ae57cb1fc1551e4d87658a16550f052d14641a0 Depends-On: I36d1aa8d9302e097ffb08d239cf7a81101d2c1cb
55 lines
2.0 KiB
Python
55 lines
2.0 KiB
Python
# Copyright 2015 Mirantis inc.
|
|
# 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 manilaclient import api_versions
|
|
from manilaclient import base
|
|
from manilaclient.openstack.common.apiclient import base as common_base
|
|
|
|
|
|
class ShareInstanceExportLocation(common_base.Resource):
|
|
"""Resource class for a share export location."""
|
|
|
|
def __repr__(self):
|
|
return "<ShareInstanceExportLocation: %s>" % self.id
|
|
|
|
def __getitem__(self, key):
|
|
return self._info[key]
|
|
|
|
|
|
class ShareInstanceExportLocationManager(base.ManagerWithFind):
|
|
"""Manage :class:`ShareInstanceExportLocation` resources."""
|
|
resource_class = ShareInstanceExportLocation
|
|
|
|
@api_versions.wraps("2.9")
|
|
def list(self, share_instance):
|
|
"""List all share export locations."""
|
|
share_instance_id = common_base.getid(share_instance)
|
|
return self._list(
|
|
"/share_instances/%s/export_locations" % share_instance_id,
|
|
"export_locations")
|
|
|
|
@api_versions.wraps("2.9")
|
|
def get(self, share_instance, export_location):
|
|
"""Get a share export location."""
|
|
share_instance_id = common_base.getid(share_instance)
|
|
export_location_id = common_base.getid(export_location)
|
|
return self._get(
|
|
("/share_instances/%(share_instance_id)s/export_locations/"
|
|
"%(export_location_id)s") % {
|
|
"share_instance_id": share_instance_id,
|
|
"export_location_id": export_location_id,
|
|
},
|
|
"export_location")
|