restructure osmclient
[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 class Vca(object):
24
25 def __init__(self,http=None):
26 self._http=http
27
28 def list(self):
29 resp = self._http.get_cmd('api/config/config-agent')
30 if resp and 'rw-config-agent:config-agent' in resp:
31 return resp['rw-config-agent:config-agent']['account']
32 return list()
33
34 def delete(self,name):
35 if 'success' not in self._http.delete_cmd('api/config/config-agent/account/{}'.format(name)):
36 raise ClientException("failed to delete config agent {}".format(name))
37
38 def create(self,name,account_type,server,user,secret):
39 postdata={}
40 postdata['account'] = list()
41
42 account={}
43 account['name'] = name
44 account['account-type'] = account_type
45 account['juju'] = {}
46 account['juju']['user'] = user
47 account['juju']['secret'] = secret
48 account['juju']['ip-address'] = server
49 postdata['account'].append(account)
50
51 if 'success' not in self._http.post_cmd('api/config/config-agent',postdata):
52 raise ClientException("failed to create config agent {}".format(name))