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