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