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