Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FunctionLister ¶
type FunctionLister interface { // List lists all Functions in the indexer. List(selector labels.Selector) (ret []*v1.Function, err error) // Functions returns an object that can list and get Functions. Functions(namespace string) FunctionNamespaceLister FunctionListerExpansion }
FunctionLister helps list Functions.
func NewFunctionLister ¶
func NewFunctionLister(indexer cache.Indexer) FunctionLister
NewFunctionLister returns a new FunctionLister.
type FunctionListerExpansion ¶
type FunctionListerExpansion interface{}
FunctionListerExpansion allows custom methods to be added to FunctionLister.
type FunctionNamespaceLister ¶
type FunctionNamespaceLister interface { // List lists all Functions in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1.Function, err error) // Get retrieves the Function from the indexer for a given namespace and name. Get(name string) (*v1.Function, error) FunctionNamespaceListerExpansion }
FunctionNamespaceLister helps list and get Functions.
type FunctionNamespaceListerExpansion ¶
type FunctionNamespaceListerExpansion interface{}
FunctionNamespaceListerExpansion allows custom methods to be added to FunctionNamespaceLister.
type ProfileLister ¶
type ProfileLister interface { // List lists all Profiles in the indexer. List(selector labels.Selector) (ret []*v1.Profile, err error) // Profiles returns an object that can list and get Profiles. Profiles(namespace string) ProfileNamespaceLister ProfileListerExpansion }
ProfileLister helps list Profiles.
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. List(selector labels.Selector) (ret []*v1.Profile, err error) // Get retrieves the Profile from the indexer for a given namespace and name. Get(name string) (*v1.Profile, error) ProfileNamespaceListerExpansion }
ProfileNamespaceLister helps list and get Profiles.
type ProfileNamespaceListerExpansion ¶
type ProfileNamespaceListerExpansion interface{}
ProfileNamespaceListerExpansion allows custom methods to be added to ProfileNamespaceLister.
Click to show internal directories.
Click to hide internal directories.