Documentation ¶
Index ¶
- func NewREST(optsGetter generic.RESTOptionsGetter, authorizer authorizer.Authorizer, ...) (*REST, *StatusREST, error)
- type REST
- type StatusREST
- func (r *StatusREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
- func (r *StatusREST) Destroy()
- func (r *StatusREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
- func (r *StatusREST) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set
- func (r *StatusREST) New() runtime.Object
- func (r *StatusREST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, ...) (runtime.Object, bool, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewREST ¶
func NewREST(optsGetter generic.RESTOptionsGetter, authorizer authorizer.Authorizer, resourceResolver resolver.ResourceResolver) (*REST, *StatusREST, error)
NewREST returns two RESTStorage objects that will work against validatingAdmissionPolicy and its status.
Types ¶
type REST ¶
type REST struct {
*genericregistry.Store
}
REST implements a RESTStorage for validatingAdmissionPolicy against etcd
func (*REST) Categories ¶
Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
type StatusREST ¶ added in v1.27.0
type StatusREST struct {
// contains filtered or unexported fields
}
StatusREST implements a RESTStorage for ValidatingAdmissionPolicyStatus
func (*StatusREST) ConvertToTable ¶ added in v1.27.0
func (r *StatusREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
ConvertToTable delegates to the store, implements TableConverter
func (*StatusREST) Destroy ¶ added in v1.27.0
func (r *StatusREST) Destroy()
Destroy disposes the store object. For the StatusREST, this is a no-op.
func (*StatusREST) Get ¶ added in v1.27.0
func (r *StatusREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
Get retrieves the object from the storage. It is required to support Patch.
func (*StatusREST) GetResetFields ¶ added in v1.27.0
func (r *StatusREST) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set
GetResetFields returns the fields that got reset by the REST endpoint
func (*StatusREST) New ¶ added in v1.27.0
func (r *StatusREST) New() runtime.Object
New generates a new ValidatingAdmissionPolicy object
func (*StatusREST) Update ¶ added in v1.27.0
func (r *StatusREST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error)
Update alters the status subset of an object. Delegates to the store