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