Files
python-zaqarclient/zaqarclient/queues/v2/cli.py
Md Nadeem 3c2439c5ea Pool & flavor cli implementation for v2
This patch will add cli implementation of
pool create and flavor delete operation for v2.

Change-Id: Ie65cb8c555537f44c314cd3f68de238aa708870a
2015-12-02 12:41:09 +09:00

81 lines
1.6 KiB
Python

# Copyright 2015 NEC Corporation. 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 zaqarclient.queues.v1 import cli
class CreateQueue(cli.CreateQueue):
"""Create a queue"""
pass
class DeleteQueue(cli.DeleteQueue):
"""Delete a queue"""
pass
class ListQueues(cli.ListQueues):
"""List available queues"""
pass
class CheckQueueExistence(cli.CheckQueueExistence):
"""Check queue existence"""
pass
class SetQueueMetadata(cli.SetQueueMetadata):
"""Set queue metadata"""
pass
class GetQueueMetadata(cli.GetQueueMetadata):
"""Get queue metadata"""
pass
class GetQueueStats(cli.GetQueueStats):
"""Get queue stats"""
pass
class CreatePool(cli.CreatePool):
"""Create a pool"""
pass
class ShowPool(cli.ShowPool):
"""Display pool details"""
pass
class UpdatePool(cli.UpdatePool):
"""Update a pool attribute"""
pass
class DeletePool(cli.DeletePool):
"""Delete a pool"""
pass
class ListPool(cli.ListPools):
"""List available Pools"""
pass
class DeleteFlavor(cli.DeleteFlavor):
"""Delete a flavor"""
pass