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