Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FufuLister ¶
type FufuLister interface { // List lists all Fufus in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Fufu, err error) // Fufus returns an object that can list and get Fufus. Fufus(namespace string) FufuNamespaceLister FufuListerExpansion }
FufuLister helps list Fufus. All objects returned here must be treated as read-only.
func NewFufuLister ¶
func NewFufuLister(indexer cache.Indexer) FufuLister
NewFufuLister returns a new FufuLister.
type FufuListerExpansion ¶
type FufuListerExpansion interface{}
FufuListerExpansion allows custom methods to be added to FufuLister.
type FufuNamespaceLister ¶
type FufuNamespaceLister interface { // List lists all Fufus in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Fufu, err error) // Get retrieves the Fufu from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Fufu, error) FufuNamespaceListerExpansion }
FufuNamespaceLister helps list and get Fufus. All objects returned here must be treated as read-only.
type FufuNamespaceListerExpansion ¶
type FufuNamespaceListerExpansion interface{}
FufuNamespaceListerExpansion allows custom methods to be added to FufuNamespaceLister.
Click to show internal directories.
Click to hide internal directories.