Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NotebookLister ¶
type NotebookLister interface { // List lists all Notebooks in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Notebook, err error) // Notebooks returns an object that can list and get Notebooks. Notebooks(namespace string) NotebookNamespaceLister NotebookListerExpansion }
NotebookLister helps list Notebooks. All objects returned here must be treated as read-only.
func NewNotebookLister ¶
func NewNotebookLister(indexer cache.Indexer) NotebookLister
NewNotebookLister returns a new NotebookLister.
type NotebookListerExpansion ¶
type NotebookListerExpansion interface{}
NotebookListerExpansion allows custom methods to be added to NotebookLister.
type NotebookNamespaceLister ¶
type NotebookNamespaceLister interface { // List lists all Notebooks in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Notebook, err error) // Get retrieves the Notebook from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Notebook, error) NotebookNamespaceListerExpansion }
NotebookNamespaceLister helps list and get Notebooks. All objects returned here must be treated as read-only.
type NotebookNamespaceListerExpansion ¶
type NotebookNamespaceListerExpansion interface{}
NotebookNamespaceListerExpansion allows custom methods to be added to NotebookNamespaceLister.
type ProfileLister ¶
type ProfileLister interface { // List lists all Profiles in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Profile, err error) // Get retrieves the Profile from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Profile, error) ProfileListerExpansion }
ProfileLister helps list Profiles. All objects returned here must be treated as read-only.
func NewProfileLister ¶
func NewProfileLister(indexer cache.Indexer) ProfileLister
NewProfileLister returns a new ProfileLister.
type ProfileListerExpansion ¶
type ProfileListerExpansion interface{}
ProfileListerExpansion allows custom methods to be added to ProfileLister.