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