# 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. # # Copyright (c) 2017 Wind River Systems, Inc. # # The right to copy, distribute, modify, or otherwise make use # of this software may be licensed only pursuant to the terms # of an applicable Wind River license agreement. # import six from dcmanagerclient.api.v1 import client as client_v1 def client(dcmanager_url=None, username=None, api_key=None, project_name=None, auth_url=None, project_id=None, endpoint_type='publicURL', service_type='dcmanager', auth_token=None, user_id=None, cacert=None, insecure=False, profile=None, auth_type='keystone', client_id=None, client_secret=None, session=None, **kwargs): if dcmanager_url and not isinstance(dcmanager_url, six.string_types): raise RuntimeError('DC Manager url should be a string.') return client_v1.Client( dcmanager_url=dcmanager_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, session=session, **kwargs ) def determine_client_version(dcmanager_version): if dcmanager_version.find("v1.0") != -1: return 1 raise RuntimeError("Cannot determine DC Manager API version")