This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
hostsubnets.go
73 lines (62 loc) · 2.23 KB
/
hostsubnets.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
package client
import (
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/watch"
sdnapi "github.com/openshift/origin/pkg/sdn/api"
)
// HostSubnetInterface has methods to work with HostSubnet resources
type HostSubnetsInterface interface {
HostSubnets() HostSubnetInterface
}
// HostSubnetInterface exposes methods on HostSubnet resources.
type HostSubnetInterface interface {
List(opts kapi.ListOptions) (*sdnapi.HostSubnetList, error)
Get(name string) (*sdnapi.HostSubnet, error)
Create(sub *sdnapi.HostSubnet) (*sdnapi.HostSubnet, error)
Delete(name string) error
Watch(opts kapi.ListOptions) (watch.Interface, error)
}
// hostSubnet implements HostSubnetInterface interface
type hostSubnet struct {
r *Client
}
// newHostSubnet returns a hostsubnet
func newHostSubnet(c *Client) *hostSubnet {
return &hostSubnet{
r: c,
}
}
// List returns a list of hostsubnets that match the label and field selectors.
func (c *hostSubnet) List(opts kapi.ListOptions) (result *sdnapi.HostSubnetList, err error) {
result = &sdnapi.HostSubnetList{}
err = c.r.Get().
Resource("hostSubnets").
VersionedParams(&opts, kapi.ParameterCodec).
Do().
Into(result)
return
}
// Get returns host subnet information for a given host or an error
func (c *hostSubnet) Get(hostName string) (result *sdnapi.HostSubnet, err error) {
result = &sdnapi.HostSubnet{}
err = c.r.Get().Resource("hostSubnets").Name(hostName).Do().Into(result)
return
}
// Create creates a new host subnet. Returns the server's representation of the host subnet and error if one occurs.
func (c *hostSubnet) Create(hostSubnet *sdnapi.HostSubnet) (result *sdnapi.HostSubnet, err error) {
result = &sdnapi.HostSubnet{}
err = c.r.Post().Resource("hostSubnets").Body(hostSubnet).Do().Into(result)
return
}
// Delete takes the name of the host, and returns an error if one occurs during deletion of the subnet
func (c *hostSubnet) Delete(name string) error {
return c.r.Delete().Resource("hostSubnets").Name(name).Do().Error()
}
// Watch returns a watch.Interface that watches the requested subnets
func (c *hostSubnet) Watch(opts kapi.ListOptions) (watch.Interface, error) {
return c.r.Get().
Prefix("watch").
Resource("hostSubnets").
VersionedParams(&opts, kapi.ParameterCodec).
Watch()
}