Statistics
| Branch: | Tag: | Revision:

root / kamaki / clients / network / rest_api.py @ 89a1c636

History | View | Annotate | Download (3.9 kB)

1
# Copyright 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from kamaki.clients import Client
35
from kamaki.clients.utils import path4url
36

    
37

    
38
class NetworkRestClient(Client):
39

    
40
    def networks_get(self, network_id=None, **kwargs):
41
        if network_id:
42
            return self.get(path4url('networks', network_id), **kwargs)
43
        return self.get(path4url('networks'), **kwargs)
44

    
45
    def networks_post(self, json_data, **kwargs):
46
        return self.post(path4url('networks'), json=json_data, **kwargs)
47

    
48
    def networks_put(self, network_id, json_data, **kwargs):
49
        return self.put(
50
            path4url('networks', network_id), json=json_data, **kwargs)
51

    
52
    def networks_delete(self, network_id, **kwargs):
53
        return self.delete(path4url('networks', network_id), **kwargs)
54

    
55
    def subnets_get(self, subnet_id=None, **kwargs):
56
        if subnet_id:
57
            return self.get(path4url('subnets', subnet_id), **kwargs)
58
        return self.get(path4url('subnets'), **kwargs)
59

    
60
    def subnets_post(self, json_data, **kwargs):
61
        return self.post(path4url('subnets'), json=json_data, **kwargs)
62

    
63
    def subnets_put(self, subnet_id, **kwargs):
64
        return self.put(path4url('subnets', subnet_id), **kwargs)
65

    
66
    def subnets_delete(self, subnet_id, **kwargs):
67
        return self.delete(path4url('subnets', subnet_id), **kwargs)
68

    
69
    def ports_get(self, port_id=None, **kwargs):
70
        if port_id:
71
            return self.get(path4url('ports', port_id), **kwargs)
72
        return self.get(path4url('ports'), **kwargs)
73

    
74
    def ports_post(self, json_data=None, **kwargs):
75
        return self.post(path4url('ports'), json=json_data, **kwargs)
76

    
77
    def ports_put(self, port_id, json_data=None, **kwargs):
78
        return self.put(path4url('ports', port_id), json=json_data, **kwargs)
79

    
80
    def ports_delete(self, port_id, **kwargs):
81
        return self.delete(path4url('ports', port_id), **kwargs)
82

    
83
    #  floatingips (L3) extentions
84

    
85
    def floatingips_get(self, floatingip_id=None, **kwargs):
86
        return self.get(path4url('floatingips', floatingip_id or ''), **kwargs)
87

    
88
    def floatingips_post(self, json_data, **kwargs):
89
        return self.post(path4url('floatingips'), json=json_data, **kwargs)
90

    
91
    def floatingips_put(self, floatingip_id, json_data, **kwargs):
92
        return self.put(
93
            path4url('floatingips', floatingip_id), json=json_data, **kwargs)
94

    
95
    def floatingips_delete(self, floatingip_id, **kwargs):
96
        return self.delete(path4url('floatingips', floatingip_id), **kwargs)