
This patch binds the python client to the module priority REST api. It also adds a CLI setter command and updates the module list CLI output to show current priority value. Change-Id: I06ab6611452cdc6e875b5534cd955a0a3092ed0d Implements: blueprint module-priority-cli-command
89 lines
3.0 KiB
Python
89 lines
3.0 KiB
Python
# Copyright 2015 Objectif Libre
|
|
# 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 cloudkittyclient.apiclient import exceptions
|
|
from cloudkittyclient.common import utils
|
|
from cloudkittyclient import exc
|
|
|
|
|
|
def do_module_list(cc, args):
|
|
'''List the samples for this meters.'''
|
|
try:
|
|
modules = cc.modules.list()
|
|
except exceptions.NotFound:
|
|
raise exc.CommandError('Modules not found')
|
|
else:
|
|
field_labels = ['Module', 'Enabled', 'Priority']
|
|
fields = ['module_id', 'enabled', 'priority']
|
|
utils.print_list(modules, fields, field_labels,
|
|
sortby=0)
|
|
|
|
|
|
@utils.arg('-n', '--name',
|
|
help='Module name',
|
|
required=True)
|
|
def do_module_enable(cc, args):
|
|
'''Enable a module.'''
|
|
try:
|
|
module = cc.modules.get(module_id=args.name)
|
|
module.enable()
|
|
except exceptions.NotFound:
|
|
raise exc.CommandError('Module not found: %s' % args.name)
|
|
else:
|
|
field_labels = ['Module', 'Enabled', 'Priority']
|
|
fields = ['module_id', 'enabled', 'priority']
|
|
modules = [cc.modules.get(module_id=args.name)]
|
|
utils.print_list(modules, fields, field_labels,
|
|
sortby=0)
|
|
|
|
|
|
@utils.arg('-n', '--name',
|
|
help='Module name',
|
|
required=True)
|
|
def do_module_disable(cc, args):
|
|
'''Disable a module.'''
|
|
try:
|
|
module = cc.modules.get(module_id=args.name)
|
|
module.disable()
|
|
except exceptions.NotFound:
|
|
raise exc.CommandError('Module not found: %s' % args.name)
|
|
else:
|
|
field_labels = ['Module', 'Enabled', 'Priority']
|
|
fields = ['module_id', 'enabled', 'priority']
|
|
modules = [cc.modules.get(module_id=args.name)]
|
|
utils.print_list(modules, fields, field_labels,
|
|
sortby=0)
|
|
|
|
|
|
@utils.arg('-n', '--name',
|
|
help='Module name',
|
|
required=True)
|
|
@utils.arg('-p', '--priority',
|
|
help='Module priority',
|
|
required=True)
|
|
def do_module_set_priority(cc, args):
|
|
'''Set module priority.'''
|
|
try:
|
|
module = cc.modules.get(module_id=args.name)
|
|
module.set_priority(args.priority)
|
|
except exceptions.NotFound:
|
|
raise exc.CommandError('Module not found: %s' % args.name)
|
|
else:
|
|
field_labels = ['Module', 'Enabled', 'Priority']
|
|
fields = ['module_id', 'enabled', 'priority']
|
|
modules = [cc.modules.get(module_id=args.name)]
|
|
utils.print_list(modules, fields, field_labels,
|
|
sortby=0)
|