update Makefile, pep8, scaling
[osm/osmclient.git] / osmclient / v1 / vca.py
1 # Copyright 2017 Sandvine
2 #
3 # All Rights Reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may
6 # not use this file except in compliance with the License. You may obtain
7 # a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 # License for the specific language governing permissions and limitations
15 # under the License.
16
17 """
18 OSM VCA API handling
19 """
20
21 from osmclient.common.exceptions import ClientException
22
23
24 class Vca(object):
25
26 def __init__(self, http=None):
27 self._http = http
28
29 def list(self):
30 resp = self._http.get_cmd('api/config/config-agent')
31 if resp and 'rw-config-agent:config-agent' in resp:
32 return resp['rw-config-agent:config-agent']['account']
33 return list()
34
35 def delete(self, name):
36 if ('success' not in
37 self._http.delete_cmd('api/config/config-agent/account/{}'
38 .format(name))):
39 raise ClientException("failed to delete config agent {}"
40 .format(name))
41
42 def create(self, name, account_type, server, user, secret):
43 postdata = {}
44 postdata['account'] = list()
45
46 account = {}
47 account['name'] = name
48 account['account-type'] = account_type
49 account['juju'] = {}
50 account['juju']['user'] = user
51 account['juju']['secret'] = secret
52 account['juju']['ip-address'] = server
53 postdata['account'].append(account)
54
55 if 'success' not in self._http.post_cmd('api/config/config-agent',
56 postdata):
57 raise ClientException("failed to create config agent {}"
58 .format(name))