Documentation ¶
Index ¶
- func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error)
- func MatchRule(label labels.Selector, field fields.Selector) storage.SelectionPredicate
- func ToSelectableFields(rule *auth.Rule) fields.Set
- func ValidateRule(rule *auth.Rule) field.ErrorList
- func ValidateRuleUpdate(rule *auth.Rule, old *auth.Rule) field.ErrorList
- type Strategy
- func (Strategy) AllowCreateOnUpdate() bool
- func (Strategy) AllowUnconditionalUpdate() bool
- func (Strategy) Canonicalize(obj runtime.Object)
- func (Strategy) DefaultGarbageCollectionRule(ctx context.Context) rest.GarbageCollectionPolicy
- func (Strategy) NamespaceScoped() bool
- func (Strategy) PrepareForCreate(ctx context.Context, obj runtime.Object)
- func (Strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object)
- func (Strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList
- func (Strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ToSelectableFields ¶
ToSelectableFields returns a field set that represents the object
func ValidateRule ¶
ValidateRule tests if required fields in the policy are set.
Types ¶
type Strategy ¶
type Strategy struct { runtime.ObjectTyper names.NameGenerator }
Strategy implements verification logic for rule.
func NewStrategy ¶
func NewStrategy() *Strategy
NewStrategy creates a strategy that is the default logic that applies when creating and updating rule objects.
func (Strategy) AllowCreateOnUpdate ¶
AllowCreateOnUpdate is false for policies.
func (Strategy) AllowUnconditionalUpdate ¶
AllowUnconditionalUpdate returns true if the object can be updated unconditionally (irrespective of the latest resource version), when there is no resource version specified in the object.
func (Strategy) Canonicalize ¶
Canonicalize normalizes the object after validation.
func (Strategy) DefaultGarbageCollectionRule ¶
func (Strategy) DefaultGarbageCollectionRule(ctx context.Context) rest.GarbageCollectionPolicy
DefaultGarbageCollectionRule returns the default garbage collection behavior.
func (Strategy) NamespaceScoped ¶
NamespaceScoped is false for policies.
func (Strategy) PrepareForCreate ¶
PrepareForCreate is invoked on create before validation to normalize the object.
func (Strategy) PrepareForUpdate ¶
PrepareForUpdate is invoked on update before validation to normalize the object.