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