
- Added global CLI arguments - Added translation - Added exceptions - Added basic client skeleton - Added OpenStack common modules - Added Kingbird http client This commit adds common routines that will be used by the client. The modules are generic and are used by other openstack clients Change-Id: I54737e2a30f94fe935794f619bfbac5889b0a1b2
54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
# Copyright 2016 - Ericsson AB
|
|
#
|
|
# 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.
|
|
|
|
import six
|
|
|
|
from kingbirdclient.api.v1 import client as client_v1
|
|
|
|
|
|
def client(kingbird_url=None, username=None, api_key=None,
|
|
project_name=None, auth_url=None, project_id=None,
|
|
endpoint_type='publicURL', service_type='synchronization',
|
|
auth_token=None, user_id=None, cacert=None, insecure=False,
|
|
profile=None, auth_type='keystone', client_id=None,
|
|
client_secret=None):
|
|
if kingbird_url and not isinstance(kingbird_url, six.string_types):
|
|
raise RuntimeError('Kingbird url should be a string.')
|
|
|
|
return client_v1.Client(
|
|
kingbird_url=kingbird_url,
|
|
username=username,
|
|
api_key=api_key,
|
|
project_name=project_name,
|
|
auth_url=auth_url,
|
|
project_id=project_id,
|
|
endpoint_type=endpoint_type,
|
|
service_type=service_type,
|
|
auth_token=auth_token,
|
|
user_id=user_id,
|
|
cacert=cacert,
|
|
insecure=insecure,
|
|
profile=profile,
|
|
auth_type=auth_type,
|
|
client_id=client_id,
|
|
client_secret=client_secret
|
|
)
|
|
|
|
|
|
def determine_client_version(kingbird_version):
|
|
if kingbird_version.find("v1.0") != -1:
|
|
return 1
|
|
|
|
raise RuntimeError("Cannot determine Kingbird API version")
|