kubernetes/pkg/registry/core/serviceaccount/strategy.go

type strategy

var Strategy

func (strategy) NamespaceScoped() bool {}

func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {}

func (strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {}

// WarningsOnCreate returns warnings for the creation of the given object.
func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {}

// Canonicalize normalizes the object after validation.
func (strategy) Canonicalize(obj runtime.Object) {}

func (strategy) AllowCreateOnUpdate() bool {}

func (strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {}

func cleanSecretReferences(serviceAccount *api.ServiceAccount) {}

func (strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {}

// WarningsOnUpdate returns warnings for the given update.
func (strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {}

func (strategy) AllowUnconditionalUpdate() bool {}