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