Initial patch to begin adding support for Magnum.
[snaps.git] / snaps / openstack / utils / magnum_utils.py
1 # Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
2 #                    and others.  All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 import logging
16
17 from magnumclient.client import Client
18
19 from snaps.openstack.utils import keystone_utils
20
21 __author__ = 'spisarski'
22
23 logger = logging.getLogger('heat_utils')
24
25
26 def magnum_client(os_creds):
27     """
28     Retrieves the Heat client
29     :param os_creds: the OpenStack credentials
30     :return: the client
31     """
32     logger.debug('Retrieving Nova Client')
33     return Client(session=keystone_utils.keystone_session(os_creds))