Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
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.
Click to show internal directories.
Click to hide internal directories.