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