forked from LaconicNetwork/kompose
73 lines
2.3 KiB
Go
73 lines
2.3 KiB
Go
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()
|
|
}
|