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