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