summaryrefslogtreecommitdiff
path: root/trove/volume_type
diff options
context:
space:
mode:
authorLingxian Kong <anlin.kong@gmail.com>2020-04-26 20:14:37 +1200
committerLingxian Kong <anlin.kong@gmail.com>2020-04-26 20:14:37 +1200
commitfeb982547afe26be4e885b75d82fa5d51a784c0e (patch)
tree5d7d38280b19c752ae77f4ab3cadbfc84e2fa1fb /trove/volume_type
parent06fadbf0543058ada92b5689ecf6c1c14f5f033b (diff)
downloadtrove-feb982547afe26be4e885b75d82fa5d51a784c0e.tar.gz
Remove volume-types API
Change-Id: Ib0064d4ee9bf05f9c8e159482f5118756a1d3c09
Diffstat (limited to 'trove/volume_type')
-rw-r--r--trove/volume_type/service.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/trove/volume_type/service.py b/trove/volume_type/service.py
deleted file mode 100644
index d265fb7c..00000000
--- a/trove/volume_type/service.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2016 Tesora, 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 trove.common import wsgi
-from trove.volume_type import models
-from trove.volume_type import views
-
-
-class VolumeTypesController(wsgi.Controller):
- """A controller for the Cinder Volume Types functionality."""
-
- def show(self, req, tenant_id, id):
- """Return a single volume type."""
- context = req.environ[wsgi.CONTEXT_KEY]
- volume_type = models.VolumeType.load(id, context=context)
- return wsgi.Result(views.VolumeTypeView(volume_type, req).data(), 200)
-
- def index(self, req, tenant_id):
- """Return all volume types."""
- context = req.environ[wsgi.CONTEXT_KEY]
- volume_types = models.VolumeTypes(context=context)
- return wsgi.Result(views.VolumeTypesView(volume_types,
- req).data(), 200)