forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netnamespaces.go
81 lines (69 loc) · 2.76 KB
/
netnamespaces.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package client
import (
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/watch"
sdnapi "github.com/openshift/origin/pkg/sdn/api"
)
// NetNamespaceInterface has methods to work with NetNamespace resources
type NetNamespacesInterface interface {
NetNamespaces() NetNamespaceInterface
}
// NetNamespaceInterface exposes methods on NetNamespace resources.
type NetNamespaceInterface interface {
List(opts kapi.ListOptions) (*sdnapi.NetNamespaceList, error)
Get(name string) (*sdnapi.NetNamespace, error)
Create(sub *sdnapi.NetNamespace) (*sdnapi.NetNamespace, error)
Update(sub *sdnapi.NetNamespace) (*sdnapi.NetNamespace, error)
Delete(name string) error
Watch(opts kapi.ListOptions) (watch.Interface, error)
}
// netNamespace implements NetNamespaceInterface interface
type netNamespace struct {
r *Client
}
// newNetNamespace returns a NetNamespace
func newNetNamespace(c *Client) *netNamespace {
return &netNamespace{
r: c,
}
}
// List returns a list of NetNamespaces that match the label and field selectors.
func (c *netNamespace) List(opts kapi.ListOptions) (result *sdnapi.NetNamespaceList, err error) {
result = &sdnapi.NetNamespaceList{}
err = c.r.Get().
Resource("netNamespaces").
VersionedParams(&opts, kapi.ParameterCodec).
Do().
Into(result)
return
}
// Get returns information about a particular NetNamespace or an error
func (c *netNamespace) Get(netname string) (result *sdnapi.NetNamespace, err error) {
result = &sdnapi.NetNamespace{}
err = c.r.Get().Resource("netNamespaces").Name(netname).Do().Into(result)
return
}
// Create creates a new NetNamespace. Returns the server's representation of the NetNamespace and error if one occurs.
func (c *netNamespace) Create(netNamespace *sdnapi.NetNamespace) (result *sdnapi.NetNamespace, err error) {
result = &sdnapi.NetNamespace{}
err = c.r.Post().Resource("netNamespaces").Body(netNamespace).Do().Into(result)
return
}
// Update updates the NetNamespace. Returns the server's representation of the NetNamespace and error if one occurs.
func (c *netNamespace) Update(netNamespace *sdnapi.NetNamespace) (result *sdnapi.NetNamespace, err error) {
result = &sdnapi.NetNamespace{}
err = c.r.Put().Resource("netNamespaces").Name(netNamespace.Name).Body(netNamespace).Do().Into(result)
return
}
// Delete takes the name of the NetNamespace, and returns an error if one occurs during deletion of the NetNamespace
func (c *netNamespace) Delete(name string) error {
return c.r.Delete().Resource("netNamespaces").Name(name).Do().Error()
}
// Watch returns a watch.Interface that watches the requested NetNamespaces
func (c *netNamespace) Watch(opts kapi.ListOptions) (watch.Interface, error) {
return c.r.Get().
Prefix("watch").
Resource("netNamespaces").
VersionedParams(&opts, kapi.ParameterCodec).
Watch()
}