Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { List(ns string, options ...meta.ListOptions) (*rbac.RoleList, error) Get(ns, role string, options ...meta.GetOptions) (_ *rbac.Role, exists bool, _ error) }
Client provides an interface to roles.
type DefaultClient ¶
type DefaultClient struct {
rbac_type.RolesGetter
}
DefaultClient implementation of Client operates on a real kubernetes API.
func NewDefaultClient ¶
func NewDefaultClient(getter rbac_type.RolesGetter) *DefaultClient
NewDefaultClient returns an initialized DefaultClient.
func (*DefaultClient) Get ¶
func (c *DefaultClient) Get(ns, role string, options ...meta.GetOptions) (_ *rbac.Role, exists bool, _ error)
Get returns the object if found, reports that the object does not exist, or returns an error.
A single GetOptions value can be passed as the final argument to customize the query.
func (*DefaultClient) List ¶
func (c *DefaultClient) List(ns string, options ...meta.ListOptions) (*rbac.RoleList, error)
List returns the matching objects.
A single ListOptions value can be passed as the final argument to customize the query.
It implements Client.
Click to show internal directories.
Click to hide internal directories.