ConsolePluginLister helps list ConsolePlugins. All objects returned here must be treated as read-only.
type ConsolePluginLister interface { // List lists all ConsolePlugins in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConsolePlugin, err error) // Get retrieves the ConsolePlugin from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ConsolePlugin, error) ConsolePluginListerExpansion }
func NewConsolePluginLister(indexer cache.Indexer) ConsolePluginLister
NewConsolePluginLister returns a new ConsolePluginLister.
ConsolePluginListerExpansion allows custom methods to be added to ConsolePluginLister.
type ConsolePluginListerExpansion interface{}