Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = privateSecretBindingStrategy{api.Scheme, names.SimpleNameGenerator}
Strategy defines the storage strategy for PrivateSecretBindings.
Functions ¶
This section is empty.
Types ¶
type Registry ¶
type Registry interface { ListPrivateSecretBindings(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (*garden.PrivateSecretBindingList, error) WatchPrivateSecretBindings(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (watch.Interface, error) GetPrivateSecretBinding(ctx genericapirequest.Context, name string, options *metav1.GetOptions) (*garden.PrivateSecretBinding, error) CreatePrivateSecretBinding(ctx genericapirequest.Context, binding *garden.PrivateSecretBinding, createValidation rest.ValidateObjectFunc) (*garden.PrivateSecretBinding, error) UpdatePrivateSecretBinding(ctx genericapirequest.Context, binding *garden.PrivateSecretBinding, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc) (*garden.PrivateSecretBinding, error) DeletePrivateSecretBinding(ctx genericapirequest.Context, name string) error }
Registry is an interface for things that know how to store PrivateSecretBindings.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Click to show internal directories.
Click to hide internal directories.