
Add an OSC plugin for manila, the subcommand chosen is "share". Add initial commands parser for create, delete, list and show shares. Also initializes basic unit testing structure for the added commands. Co-Authored-By: Soledad Kuczala <sol.kuczala@gmail.com> Co-Authored-By: Victoria Martinez de la Cruz <victoria@redhat.com> Partially-implements: bp openstack-client-support Change-Id: I90a36f4332796675ea808e0c2a0f5ce32709624a
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
# Copyright 2019 Red Hat, Inc.
|
|
#
|
|
# 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 manilaclient import exceptions
|
|
|
|
|
|
def extract_key_value_options(pairs):
|
|
result_dict = {}
|
|
duplicate_options = []
|
|
pairs = pairs or {}
|
|
|
|
for attr, value in pairs.items():
|
|
if attr not in result_dict:
|
|
result_dict[attr] = value
|
|
else:
|
|
duplicate_options.append(attr)
|
|
|
|
if pairs and len(duplicate_options) > 0:
|
|
duplicate_str = ', '.join(duplicate_options)
|
|
msg = "Following options were duplicated: %s" % duplicate_str
|
|
raise exceptions.CommandError(msg)
|
|
|
|
return result_dict
|