Merge "Add GET method to show flavor details"
This commit is contained in:
commit
c22314be7f
@ -89,7 +89,7 @@ api.add_resource(v1_systems.Systems, '/v1/systems/<string:systemid>',
|
||||
|
||||
# Flavor(s) operations
|
||||
api.add_resource(v1_flavors.Flavors, '/v1/flavors', endpoint='flavors')
|
||||
api.add_resource(v1_flavors.Flavors, '/v1/flavors/<string:flavorid>',
|
||||
api.add_resource(v1_flavors.Flavor, '/v1/flavors/<string:flavorid>',
|
||||
endpoint='flavor')
|
||||
|
||||
# Storage(s) operations
|
||||
|
@ -35,6 +35,13 @@ class Flavors(Resource):
|
||||
return utils.make_response(http_client.OK,
|
||||
flavors.create_flavor(request.get_json()))
|
||||
|
||||
|
||||
class Flavor(Resource):
|
||||
|
||||
def get(self, flavorid):
|
||||
return utils.make_response(http_client.OK,
|
||||
flavors.get_flavor(flavorid))
|
||||
|
||||
def delete(self, flavorid):
|
||||
return utils.make_response(http_client.OK,
|
||||
flavors.delete_flavor(flavorid))
|
||||
|
@ -45,6 +45,7 @@ class TestRoute(unittest.TestCase):
|
||||
self.assertEqual(self.api.owns_endpoint('systems'), True)
|
||||
self.assertEqual(self.api.owns_endpoint('system'), True)
|
||||
self.assertEqual(self.api.owns_endpoint('flavors'), True)
|
||||
self.assertEqual(self.api.owns_endpoint('flavor'), True)
|
||||
self.assertEqual(self.api.owns_endpoint('storages'), True)
|
||||
self.assertEqual(self.api.owns_endpoint('storage'), True)
|
||||
self.assertEqual(self.api.owns_endpoint('podmproxy'), True)
|
||||
|
Loading…
x
Reference in New Issue
Block a user