forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
policies.go
72 lines (61 loc) · 2.27 KB
/
policies.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
package client
import (
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/watch"
authorizationapi "github.com/openshift/origin/pkg/authorization/api"
)
// PoliciesNamespacer has methods to work with Policy resources in a namespace
type PoliciesNamespacer interface {
Policies(namespace string) PolicyInterface
}
// PolicyInterface exposes methods on Policy resources.
type PolicyInterface interface {
List(opts kapi.ListOptions) (*authorizationapi.PolicyList, error)
Get(name string) (*authorizationapi.Policy, error)
Delete(name string) error
Watch(opts kapi.ListOptions) (watch.Interface, error)
}
type PoliciesListerNamespacer interface {
Policies(namespace string) PolicyLister
}
type SyncedPoliciesListerNamespacer interface {
PoliciesListerNamespacer
LastSyncResourceVersion() string
}
type PolicyLister interface {
List(options kapi.ListOptions) (*authorizationapi.PolicyList, error)
Get(name string) (*authorizationapi.Policy, error)
}
// policies implements PoliciesNamespacer interface
type policies struct {
r *Client
ns string
}
// newPolicies returns a policies
func newPolicies(c *Client, namespace string) *policies {
return &policies{
r: c,
ns: namespace,
}
}
// List returns a list of policies that match the label and field selectors.
func (c *policies) List(opts kapi.ListOptions) (result *authorizationapi.PolicyList, err error) {
result = &authorizationapi.PolicyList{}
err = c.r.Get().Namespace(c.ns).Resource("policies").VersionedParams(&opts, kapi.ParameterCodec).Do().Into(result)
return
}
// Get returns information about a particular policy and error if one occurs.
func (c *policies) Get(name string) (result *authorizationapi.Policy, err error) {
result = &authorizationapi.Policy{}
err = c.r.Get().Namespace(c.ns).Resource("policies").Name(name).Do().Into(result)
return
}
// Delete deletes a policy, returns error if one occurs.
func (c *policies) Delete(name string) (err error) {
err = c.r.Delete().Namespace(c.ns).Resource("policies").Name(name).Do().Error()
return
}
// Watch returns a watch.Interface that watches the requested policies
func (c *policies) Watch(opts kapi.ListOptions) (watch.Interface, error) {
return c.r.Get().Prefix("watch").Namespace(c.ns).Resource("policies").VersionedParams(&opts, kapi.ParameterCodec).Watch()
}