Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NotificationConfigLister ¶ added in v0.4.0
type NotificationConfigLister interface { // List lists all NotificationConfigs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NotificationConfig, err error) // NotificationConfigs returns an object that can list and get NotificationConfigs. NotificationConfigs(namespace string) NotificationConfigNamespaceLister NotificationConfigListerExpansion }
NotificationConfigLister helps list NotificationConfigs. All objects returned here must be treated as read-only.
func NewNotificationConfigLister ¶ added in v0.4.0
func NewNotificationConfigLister(indexer cache.Indexer) NotificationConfigLister
NewNotificationConfigLister returns a new NotificationConfigLister.
type NotificationConfigListerExpansion ¶ added in v0.4.0
type NotificationConfigListerExpansion interface{}
NotificationConfigListerExpansion allows custom methods to be added to NotificationConfigLister.
type NotificationConfigNamespaceLister ¶ added in v0.4.0
type NotificationConfigNamespaceLister interface { // List lists all NotificationConfigs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NotificationConfig, err error) // Get retrieves the NotificationConfig from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.NotificationConfig, error) NotificationConfigNamespaceListerExpansion }
NotificationConfigNamespaceLister helps list and get NotificationConfigs. All objects returned here must be treated as read-only.
type NotificationConfigNamespaceListerExpansion ¶ added in v0.4.0
type NotificationConfigNamespaceListerExpansion interface{}
NotificationConfigNamespaceListerExpansion allows custom methods to be added to NotificationConfigNamespaceLister.
type SourceLister ¶
type SourceLister interface { // List lists all Sources in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Source, err error) // Sources returns an object that can list and get Sources. Sources(namespace string) SourceNamespaceLister SourceListerExpansion }
SourceLister helps list Sources. All objects returned here must be treated as read-only.
func NewSourceLister ¶
func NewSourceLister(indexer cache.Indexer) SourceLister
NewSourceLister returns a new SourceLister.
type SourceListerExpansion ¶
type SourceListerExpansion interface{}
SourceListerExpansion allows custom methods to be added to SourceLister.
type SourceNamespaceLister ¶
type SourceNamespaceLister interface { // List lists all Sources in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Source, err error) // Get retrieves the Source from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Source, error) SourceNamespaceListerExpansion }
SourceNamespaceLister helps list and get Sources. All objects returned here must be treated as read-only.
type SourceNamespaceListerExpansion ¶
type SourceNamespaceListerExpansion interface{}
SourceNamespaceListerExpansion allows custom methods to be added to SourceNamespaceLister.