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