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