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