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