Documentation
¶
Index ¶
- type BusLister
- type BusListerExpansion
- type BusNamespaceLister
- type BusNamespaceListerExpansion
- type ChannelLister
- type ChannelListerExpansion
- type ChannelNamespaceLister
- type ChannelNamespaceListerExpansion
- type ClusterBusLister
- type ClusterBusListerExpansion
- type SubscriptionLister
- type SubscriptionListerExpansion
- type SubscriptionNamespaceLister
- type SubscriptionNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BusLister ¶
type BusLister interface { // List lists all Buses in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Bus, err error) // Buses returns an object that can list and get Buses. Buses(namespace string) BusNamespaceLister BusListerExpansion }
BusLister helps list Buses.
func NewBusLister ¶
NewBusLister returns a new BusLister.
type BusListerExpansion ¶
type BusListerExpansion interface{}
BusListerExpansion allows custom methods to be added to BusLister.
type BusNamespaceLister ¶
type BusNamespaceLister interface { // List lists all Buses in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Bus, err error) // Get retrieves the Bus from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Bus, error) BusNamespaceListerExpansion }
BusNamespaceLister helps list and get Buses.
type BusNamespaceListerExpansion ¶
type BusNamespaceListerExpansion interface{}
BusNamespaceListerExpansion allows custom methods to be added to BusNamespaceLister.
type ChannelLister ¶
type ChannelLister interface { // List lists all Channels in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Channel, err error) // Channels returns an object that can list and get Channels. Channels(namespace string) ChannelNamespaceLister ChannelListerExpansion }
ChannelLister helps list Channels.
func NewChannelLister ¶
func NewChannelLister(indexer cache.Indexer) ChannelLister
NewChannelLister returns a new ChannelLister.
type ChannelListerExpansion ¶
type ChannelListerExpansion interface{}
ChannelListerExpansion allows custom methods to be added to ChannelLister.
type ChannelNamespaceLister ¶
type ChannelNamespaceLister interface { // List lists all Channels in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Channel, err error) // Get retrieves the Channel from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Channel, error) ChannelNamespaceListerExpansion }
ChannelNamespaceLister helps list and get Channels.
type ChannelNamespaceListerExpansion ¶
type ChannelNamespaceListerExpansion interface{}
ChannelNamespaceListerExpansion allows custom methods to be added to ChannelNamespaceLister.
type ClusterBusLister ¶
type ClusterBusLister interface { // List lists all ClusterBuses in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ClusterBus, err error) // Get retrieves the ClusterBus from the index for a given name. Get(name string) (*v1alpha1.ClusterBus, error) ClusterBusListerExpansion }
ClusterBusLister helps list ClusterBuses.
func NewClusterBusLister ¶
func NewClusterBusLister(indexer cache.Indexer) ClusterBusLister
NewClusterBusLister returns a new ClusterBusLister.
type ClusterBusListerExpansion ¶
type ClusterBusListerExpansion interface{}
ClusterBusListerExpansion allows custom methods to be added to ClusterBusLister.
type SubscriptionLister ¶
type SubscriptionLister interface { // List lists all Subscriptions in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Subscription, err error) // Subscriptions returns an object that can list and get Subscriptions. Subscriptions(namespace string) SubscriptionNamespaceLister SubscriptionListerExpansion }
SubscriptionLister helps list Subscriptions.
func NewSubscriptionLister ¶
func NewSubscriptionLister(indexer cache.Indexer) SubscriptionLister
NewSubscriptionLister returns a new SubscriptionLister.
type SubscriptionListerExpansion ¶
type SubscriptionListerExpansion interface{}
SubscriptionListerExpansion allows custom methods to be added to SubscriptionLister.
type SubscriptionNamespaceLister ¶
type SubscriptionNamespaceLister interface { // List lists all Subscriptions in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Subscription, err error) // Get retrieves the Subscription from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Subscription, error) SubscriptionNamespaceListerExpansion }
SubscriptionNamespaceLister helps list and get Subscriptions.
type SubscriptionNamespaceListerExpansion ¶
type SubscriptionNamespaceListerExpansion interface{}
SubscriptionNamespaceListerExpansion allows custom methods to be added to SubscriptionNamespaceLister.