80 lines
2.9 KiB
Python
80 lines
2.9 KiB
Python
#
|
|
# 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 cliff import command
|
|
from cliff import lister
|
|
from cliff import show
|
|
|
|
from gnocchiclient import utils
|
|
|
|
|
|
class CliArchivePolicyRuleList(lister.Lister):
|
|
"""List archive policy rules"""
|
|
|
|
COLS = ('name', 'archive_policy_name', 'metric_pattern')
|
|
|
|
def take_action(self, parsed_args):
|
|
ap_rules = self.app.client.archive_policy_rule.list()
|
|
return utils.list2cols(self.COLS, ap_rules)
|
|
|
|
|
|
class CliArchivePolicyRuleShow(show.ShowOne):
|
|
"""Show an archive policy rule"""
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(CliArchivePolicyRuleShow, self).get_parser(prog_name)
|
|
parser.add_argument("name",
|
|
help="Name of the archive policy rule")
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
ap_rule = self.app.client.archive_policy_rule.get(
|
|
name=parsed_args.name)
|
|
return self.dict2columns(ap_rule)
|
|
|
|
|
|
class CliArchivePolicyRuleCreate(show.ShowOne):
|
|
"""Create an archive policy rule"""
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(CliArchivePolicyRuleCreate, self).get_parser(prog_name)
|
|
parser.add_argument("name",
|
|
help=("Rule name"))
|
|
parser.add_argument("-a", "--archive-policy-name",
|
|
dest="archive_policy_name",
|
|
required=True,
|
|
help=("Archive policy name"))
|
|
parser.add_argument("-m", "--metric-pattern",
|
|
dest="metric_pattern", required=True,
|
|
help=("Wildcard of metric name to match"))
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
rule = utils.dict_from_parsed_args(
|
|
parsed_args, ["name", "metric_pattern", "archive_policy_name"])
|
|
policy = self.app.client.archive_policy_rule.create(rule)
|
|
return self.dict2columns(policy)
|
|
|
|
|
|
class CliArchivePolicyRuleDelete(command.Command):
|
|
"""Delete an archive policy rule"""
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(CliArchivePolicyRuleDelete, self).get_parser(prog_name)
|
|
parser.add_argument("name",
|
|
help="Name of the archive policy rule")
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
self.app.client.archive_policy_rule.delete(parsed_args.name)
|