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