
This allows to retrieve the state of one or several scopes through the API via the client library and cli tool. Change-Id: I53995062fe76100f6dfcc672af482f653cc85bde Story: 2005395 Task: 30795 Depends-On: https://review.opendev.org/#/c/658073/
56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
# Copyright 2019 Objectif Libre
|
|
#
|
|
# 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 lister
|
|
|
|
from cloudkittyclient import utils
|
|
|
|
|
|
class CliScopeStateGet(lister.Lister):
|
|
"""Get information about current state of several scopes."""
|
|
info_columns = [
|
|
('scope_id', 'Scope ID'),
|
|
('scope_key', 'Scope Key'),
|
|
('collector', 'Collector'),
|
|
('fetcher', 'Fetcher'),
|
|
('state', 'State')
|
|
]
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(CliScopeStateGet, self).get_parser(prog_name)
|
|
|
|
for col in self.info_columns[:-1]:
|
|
parser.add_argument(
|
|
'--' + col[0].replace('_', '-'), type=str,
|
|
action='append', help='Optional filter on ' + col[1])
|
|
|
|
parser.add_argument('--offset', type=int, default=0,
|
|
help='Index of the first scope')
|
|
parser.add_argument('--limit', type=int, default=100,
|
|
help='Maximal number of scopes')
|
|
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
resp = utils.get_client_from_osc(self).scope.get_scope_state(
|
|
offset=parsed_args.offset,
|
|
limit=parsed_args.limit,
|
|
collector=parsed_args.collector,
|
|
fetcher=parsed_args.fetcher,
|
|
scope_id=parsed_args.scope_id,
|
|
scope_key=parsed_args.scope_key,
|
|
)
|
|
values = utils.list_to_cols(resp['results'], self.info_columns)
|
|
return [col[1] for col in self.info_columns], values
|