aboutsummaryrefslogtreecommitdiffstats
path: root/moonclient/moonclient/configuration.py
diff options
context:
space:
mode:
authorRHE <rebirthmonkey@gmail.com>2017-12-26 13:35:54 +0100
committerRHE <rebirthmonkey@gmail.com>2017-12-26 13:35:54 +0100
commit454e9c5f8664ea99ccea2417b6cc3ffb238cf834 (patch)
tree479a6d0fcee5ba6c17ea12370125e6681594128a /moonclient/moonclient/configuration.py
parent19a69441bbcc8b5e9e334f81c66d0f3720405fdd (diff)
moon v4 re-organization
Change-Id: I73665f739f35ae18175f98d0739567e403c1fa80 Signed-off-by: RHE <rebirthmonkey@gmail.com>
Diffstat (limited to 'moonclient/moonclient/configuration.py')
-rw-r--r--moonclient/moonclient/configuration.py64
1 files changed, 0 insertions, 64 deletions
diff --git a/moonclient/moonclient/configuration.py b/moonclient/moonclient/configuration.py
deleted file mode 100644
index a05d7151..00000000
--- a/moonclient/moonclient/configuration.py
+++ /dev/null
@@ -1,64 +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
-
-
-class TemplatesList(Lister):
- """List all policy templates."""
-
- log = logging.getLogger(__name__)
-
- def get_parser(self, prog_name):
- parser = super(TemplatesList, self).get_parser(prog_name)
- return parser
-
- def take_action(self, parsed_args):
- templates = self.app.get_url(self.app.url_prefix+"/configuration/templates", authtoken=True)
- return (
- ("id", "name", "description"),
- ((template_id, templates[template_id]["name"], templates[template_id]["description"])
- for template_id in templates)
- )
-
-
-class AggregationAlgorithmsList(Lister):
- """List all aggregation algorithms."""
-
- log = logging.getLogger(__name__)
-
- def get_parser(self, prog_name):
- parser = super(AggregationAlgorithmsList, self).get_parser(prog_name)
- return parser
-
- def take_action(self, parsed_args):
- templates = self.app.get_url(self.app.url_prefix+"/configuration/aggregation_algorithms", authtoken=True)
- return (
- ("id", "name", "description"),
- ((template_id, templates[template_id]["name"], templates[template_id]["description"])
- for template_id in templates)
- )
-
-
-class SubMetaRuleAlgorithmsList(Lister):
- """List all sub meta rule algorithms."""
-
- log = logging.getLogger(__name__)
-
- def get_parser(self, prog_name):
- parser = super(SubMetaRuleAlgorithmsList, self).get_parser(prog_name)
- return parser
-
- def take_action(self, parsed_args):
- templates = self.app.get_url(self.app.url_prefix+"/configuration/sub_meta_rule_algorithms", authtoken=True)
- return (
- ("id", "name", "description"),
- ((template_id, templates[template_id]["name"], templates[template_id]["description"])
- for template_id in templates)
- )
-
-