type apiServerStrategy …
var _ …
var Strategy …
func NewStrategy(typer runtime.ObjectTyper) rest.CreateUpdateResetFieldsStrategy { … }
func (apiServerStrategy) NamespaceScoped() bool { … }
func (apiServerStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set { … }
func (apiServerStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) { … }
func (apiServerStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) { … }
func (apiServerStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList { … }
func (apiServerStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { … }
func (apiServerStrategy) AllowCreateOnUpdate() bool { … }
func (apiServerStrategy) AllowUnconditionalUpdate() bool { … }
func (apiServerStrategy) Canonicalize(obj runtime.Object) { … }
func (apiServerStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList { … }
func (apiServerStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string { … }
type apiServerStatusStrategy …
func NewStatusStrategy(typer runtime.ObjectTyper) rest.UpdateResetFieldsStrategy { … }
func (apiServerStatusStrategy) NamespaceScoped() bool { … }
func (apiServerStatusStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set { … }
func (apiServerStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) { … }
func (apiServerStatusStrategy) AllowCreateOnUpdate() bool { … }
func (apiServerStatusStrategy) AllowUnconditionalUpdate() bool { … }
func (apiServerStatusStrategy) Canonicalize(obj runtime.Object) { … }
func (apiServerStatusStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList { … }
func (apiServerStatusStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string { … }
func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) { … }
func MatchAPIService(label labels.Selector, field fields.Selector) storage.SelectionPredicate { … }
func ToSelectableFields(obj *apiregistration.APIService) fields.Set { … }