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