aboutsummaryrefslogtreecommitdiffstats
path: root/moonclient/moonclient/action_categories.py
diff options
context:
space:
mode:
Diffstat (limited to 'moonclient/moonclient/action_categories.py')
-rw-r--r--moonclient/moonclient/action_categories.py102
1 files changed, 0 insertions, 102 deletions
diff --git a/moonclient/moonclient/action_categories.py b/moonclient/moonclient/action_categories.py
deleted file mode 100644
index bf7cb7e1..00000000
--- a/moonclient/moonclient/action_categories.py
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 2015 Open Platform for NFV Project, Inc. and its contributors
-# This software is distributed under the terms and conditions of the 'Apache-2.0'
-# license which can be found in the file 'LICENSE' in this package distribution
-# or at 'http://www.apache.org/licenses/LICENSE-2.0'.
-
-import logging
-
-from cliff.lister import Lister
-from cliff.command import Command
-
-
-class ActionCategoriesList(Lister):
- """List all action categories."""
-
- log = logging.getLogger(__name__)
-
- def get_parser(self, prog_name):
- parser = super(ActionCategoriesList, self).get_parser(prog_name)
- parser.add_argument(
- '--intraextension',
- metavar='<intraextension-uuid>',
- help='IntraExtension UUID',
- )
- return parser
-
- def take_action(self, parsed_args):
- if not parsed_args.intraextension:
- parsed_args.intraextension = self.app.intraextension
- data = self.app.get_url(self.app.url_prefix+"/intra_extensions/{}/action_categories".format(parsed_args.intraextension),
- authtoken=True)
- return (
- ("id", "name", "description"),
- ((_uuid, data[_uuid]["name"], data[_uuid]["description"]) for _uuid in data)
- )
-
-
-class ActionCategoriesAdd(Command):
- """Add a new action category."""
-
- log = logging.getLogger(__name__)
-
- def get_parser(self, prog_name):
- parser = super(ActionCategoriesAdd, self).get_parser(prog_name)
- parser.add_argument(
- 'action_category_name',
- metavar='<action_category-name>',
- help='Action category name',
- )
- parser.add_argument(
- '--intraextension',
- metavar='<intraextension-uuid>',
- help='IntraExtension UUID',
- )
- parser.add_argument(
- '--description',
- metavar='<description-str>',
- help='Action category description',
- )
- return parser
-
- def take_action(self, parsed_args):
- if not parsed_args.intraextension:
- parsed_args.intraextension = self.app.intraextension
- data = self.app.get_url(self.app.url_prefix+"/intra_extensions/{}/action_categories".format(parsed_args.intraextension),
- post_data={
- "action_category_name": parsed_args.action_category_name,
- "action_category_description": parsed_args.description},
- authtoken=True)
- return (
- ("id", "name", "description"),
- ((_uuid, data[_uuid]["name"], data[_uuid]["description"]) for _uuid in data)
- )
-
-
-class ActionCategoriesDelete(Command):
- """Delete an action category."""
-
- log = logging.getLogger(__name__)
-
- def get_parser(self, prog_name):
- parser = super(ActionCategoriesDelete, self).get_parser(prog_name)
- parser.add_argument(
- 'action_category_id',
- metavar='<action_category-uuid>',
- help='Action category UUID',
- )
- parser.add_argument(
- '--intraextension',
- metavar='<intraextension-uuid>',
- help='IntraExtension UUID',
- )
- return parser
-
- def take_action(self, parsed_args):
- if not parsed_args.intraextension:
- parsed_args.intraextension = self.app.intraextension
- self.app.get_url(self.app.url_prefix+"/intra_extensions/{}/action_categories/{}".format(
- parsed_args.intraextension,
- parsed_args.action_category_id),
- method="DELETE",
- authtoken=True
- ) \ No newline at end of file