Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LibraryItemLister ¶
type LibraryItemLister interface { // List lists all LibraryItems in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.LibraryItem, err error) // LibraryItems returns an object that can list and get LibraryItems. LibraryItems(namespace string) LibraryItemNamespaceLister LibraryItemListerExpansion }
LibraryItemLister helps list LibraryItems. All objects returned here must be treated as read-only.
func NewLibraryItemLister ¶
func NewLibraryItemLister(indexer cache.Indexer) LibraryItemLister
NewLibraryItemLister returns a new LibraryItemLister.
type LibraryItemListerExpansion ¶
type LibraryItemListerExpansion interface{}
LibraryItemListerExpansion allows custom methods to be added to LibraryItemLister.
type LibraryItemNamespaceLister ¶
type LibraryItemNamespaceLister interface { // List lists all LibraryItems in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.LibraryItem, err error) // Get retrieves the LibraryItem from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.LibraryItem, error) LibraryItemNamespaceListerExpansion }
LibraryItemNamespaceLister helps list and get LibraryItems. All objects returned here must be treated as read-only.
type LibraryItemNamespaceListerExpansion ¶
type LibraryItemNamespaceListerExpansion interface{}
LibraryItemNamespaceListerExpansion allows custom methods to be added to LibraryItemNamespaceLister.
type LibraryLister ¶
type LibraryLister interface { // List lists all Libraries in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Library, err error) // Libraries returns an object that can list and get Libraries. Libraries(namespace string) LibraryNamespaceLister LibraryListerExpansion }
LibraryLister helps list Libraries. All objects returned here must be treated as read-only.
func NewLibraryLister ¶
func NewLibraryLister(indexer cache.Indexer) LibraryLister
NewLibraryLister returns a new LibraryLister.
type LibraryListerExpansion ¶
type LibraryListerExpansion interface{}
LibraryListerExpansion allows custom methods to be added to LibraryLister.
type LibraryNamespaceLister ¶
type LibraryNamespaceLister interface { // List lists all Libraries in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Library, err error) // Get retrieves the Library from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Library, error) LibraryNamespaceListerExpansion }
LibraryNamespaceLister helps list and get Libraries. All objects returned here must be treated as read-only.
type LibraryNamespaceListerExpansion ¶
type LibraryNamespaceListerExpansion interface{}
LibraryNamespaceListerExpansion allows custom methods to be added to LibraryNamespaceLister.