Documentation ¶
Index ¶
- type PolicyREST
- func (r *PolicyREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
- func (r *PolicyREST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
- func (r *PolicyREST) New() runtime.Object
- func (r *PolicyREST) NewList() runtime.Object
- type REST
- func (r *REST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
- func (r *REST) Create(ctx context.Context, obj runtime.Object, ...) (runtime.Object, error)
- func (r *REST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
- func (r *REST) List(ctx context.Context, options *metainternal.ListOptions) (runtime.Object, error)
- func (r *REST) NamespaceScoped() bool
- func (r *REST) New() runtime.Object
- func (r *REST) NewList() runtime.Object
- func (r *REST) ShortNames() []string
- type RoleREST
- func (r *RoleREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
- func (r *RoleREST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
- func (r *RoleREST) New() runtime.Object
- func (r *RoleREST) NewList() runtime.Object
- type Storage
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PolicyREST ¶
type PolicyREST struct {
// contains filtered or unexported fields
}
PolicyREST implements the REST endpoint, list policies bound to the user.
func (*PolicyREST) ConvertToTable ¶ added in v1.3.1
func (r *PolicyREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
ConvertToTable converts objects to metav1.Table objects using default table convertor.
func (*PolicyREST) List ¶
func (r *PolicyREST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
func (*PolicyREST) New ¶
func (r *PolicyREST) New() runtime.Object
New returns an empty object that can be used with Create after request data has been put into it.
func (*PolicyREST) NewList ¶
func (r *PolicyREST) NewList() runtime.Object
NewList returns an empty object that can be used with the List call.
type REST ¶
REST implements a RESTStorage for configmap against etcd.
func (*REST) ConvertToTable ¶ added in v1.3.1
func (r *REST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
ConvertToTable converts objects to metav1.Table objects using default table convertor.
func (*REST) Create ¶
func (r *REST) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error)
Create creates a new version of a resource.
func (*REST) Get ¶
func (r *REST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
Get finds a resource in the storage by name and returns it.
func (*REST) List ¶
func (r *REST) List(ctx context.Context, options *metainternal.ListOptions) (runtime.Object, error)
List selects resources in the storage which match to the selector. 'options' can be nil.
func (*REST) NamespaceScoped ¶
func (*REST) New ¶
New returns an empty object that can be used with Create and Update after request data has been put into it.
func (*REST) ShortNames ¶
ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
type RoleREST ¶
type RoleREST struct {
// contains filtered or unexported fields
}
RoleREST implements the REST endpoint, list policies bound to the user.
func (*RoleREST) ConvertToTable ¶ added in v1.3.1
func (r *RoleREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
ConvertToTable converts objects to metav1.Table objects using default table convertor.
func (*RoleREST) List ¶
func (r *RoleREST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
type Storage ¶
type Storage struct { Group *REST Policy *PolicyREST Role *RoleREST }
Storage includes storage for configmap and all sub resources.
func NewStorage ¶
func NewStorage(_ genericregistry.RESTOptionsGetter, authClient authinternalclient.AuthInterface, enforcer *casbin.SyncedEnforcer) *Storage
NewStorage returns a Storage object that will work against configmap.