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