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