Documentation ¶
Index ¶
- func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error)
- func MatchNsEmigration(label labels.Selector, field fields.Selector) storage.SelectionPredicate
- func ToSelectableFields(emigration *business.NsEmigration) fields.Set
- func ValidateNsEmigrationCreate(ctx context.Context, emigration *business.NsEmigration, ...) field.ErrorList
- func ValidateNsEmigrationUpdate(ctx context.Context, emigration, old *business.NsEmigration, ...) field.ErrorList
- type Strategy
- func (s *Strategy) AfterCreate(obj runtime.Object) error
- func (Strategy) AllowCreateOnUpdate() bool
- func (Strategy) AllowUnconditionalUpdate() bool
- func (Strategy) Canonicalize(obj runtime.Object)
- func (Strategy) DefaultGarbageCollectionPolicy(ctx context.Context) rest.GarbageCollectionPolicy
- func (Strategy) Export(ctx context.Context, obj runtime.Object, exact bool) error
- func (Strategy) NamespaceScoped() bool
- func (s *Strategy) PrepareForCreate(ctx context.Context, obj runtime.Object)
- func (Strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object)
- func (s *Strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList
- func (s *Strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList
- func (Strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string
- func (Strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func MatchNsEmigration ¶
MatchNsEmigration returns a generic matcher for a given label and field selector.
func ToSelectableFields ¶
func ToSelectableFields(emigration *business.NsEmigration) fields.Set
ToSelectableFields returns a field set that represents the object
func ValidateNsEmigrationCreate ¶
func ValidateNsEmigrationCreate(ctx context.Context, emigration *business.NsEmigration, businessClient *businessinternalclient.BusinessClient) field.ErrorList
ValidateNsEmigrationCreate tests if required fields in the NsEmigration are set correctly.
func ValidateNsEmigrationUpdate ¶
func ValidateNsEmigrationUpdate(ctx context.Context, emigration, old *business.NsEmigration, businessClient *businessinternalclient.BusinessClient) field.ErrorList
ValidateNsEmigrationUpdate tests if required fields in the NsEmigration are set during an update.
Types ¶
type Strategy ¶
type Strategy struct { runtime.ObjectTyper names.NameGenerator // contains filtered or unexported fields }
Strategy implements verification logic for emigration.
func NewStrategy ¶
func NewStrategy(businessClient *businessinternalclient.BusinessClient, platformClient platformversionedclient.PlatformV1Interface) *Strategy
NewStrategy creates a strategy that is the default logic that applies when creating and updating emgration objects.
func (*Strategy) AfterCreate ¶
AfterCreate implements a further operation to run after a resource is created and before it is decorated, optional.
func (Strategy) AllowCreateOnUpdate ¶
AllowCreateOnUpdate is false for emigrations.
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) DefaultGarbageCollectionPolicy ¶
func (Strategy) DefaultGarbageCollectionPolicy(ctx context.Context) rest.GarbageCollectionPolicy
DefaultGarbageCollectionPolicy returns the default garbage collection behavior.
func (Strategy) NamespaceScoped ¶
NamespaceScoped is true for emigrations.
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.
func (*Strategy) ValidateUpdate ¶
ValidateUpdate is the default update validation for an end emigration.
func (Strategy) WarningsOnCreate ¶ added in v1.9.0
WarningsOnCreate returns warnings for the creation of the given object.