Documentation ¶
Index ¶
- type EventBusLister
- type EventBusListerExpansion
- type EventBusNamespaceLister
- type EventBusNamespaceListerExpansion
- type EventSourceLister
- type EventSourceListerExpansion
- type EventSourceNamespaceLister
- type EventSourceNamespaceListerExpansion
- type SensorLister
- type SensorListerExpansion
- type SensorNamespaceLister
- type SensorNamespaceListerExpansion
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.
type EventSourceLister ¶
type EventSourceLister interface { // List lists all EventSources in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EventSource, err error) // EventSources returns an object that can list and get EventSources. EventSources(namespace string) EventSourceNamespaceLister EventSourceListerExpansion }
EventSourceLister helps list EventSources. All objects returned here must be treated as read-only.
func NewEventSourceLister ¶
func NewEventSourceLister(indexer cache.Indexer) EventSourceLister
NewEventSourceLister returns a new EventSourceLister.
type EventSourceListerExpansion ¶
type EventSourceListerExpansion interface{}
EventSourceListerExpansion allows custom methods to be added to EventSourceLister.
type EventSourceNamespaceLister ¶
type EventSourceNamespaceLister interface { // List lists all EventSources in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EventSource, err error) // Get retrieves the EventSource from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.EventSource, error) EventSourceNamespaceListerExpansion }
EventSourceNamespaceLister helps list and get EventSources. All objects returned here must be treated as read-only.
type EventSourceNamespaceListerExpansion ¶
type EventSourceNamespaceListerExpansion interface{}
EventSourceNamespaceListerExpansion allows custom methods to be added to EventSourceNamespaceLister.
type SensorLister ¶
type SensorLister interface { // List lists all Sensors in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Sensor, err error) // Sensors returns an object that can list and get Sensors. Sensors(namespace string) SensorNamespaceLister SensorListerExpansion }
SensorLister helps list Sensors. All objects returned here must be treated as read-only.
func NewSensorLister ¶
func NewSensorLister(indexer cache.Indexer) SensorLister
NewSensorLister returns a new SensorLister.
type SensorListerExpansion ¶
type SensorListerExpansion interface{}
SensorListerExpansion allows custom methods to be added to SensorLister.
type SensorNamespaceLister ¶
type SensorNamespaceLister interface { // List lists all Sensors in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Sensor, err error) // Get retrieves the Sensor from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Sensor, error) SensorNamespaceListerExpansion }
SensorNamespaceLister helps list and get Sensors. All objects returned here must be treated as read-only.
type SensorNamespaceListerExpansion ¶
type SensorNamespaceListerExpansion interface{}
SensorNamespaceListerExpansion allows custom methods to be added to SensorNamespaceLister.