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