Documentation ¶
Index ¶
- type RouteLister
- type RouteListerExpansion
- type RouteNamespaceLister
- type RouteNamespaceListerExpansion
- type TableAssociationLister
- type TableAssociationListerExpansion
- type TableAssociationNamespaceLister
- type TableAssociationNamespaceListerExpansion
- type TableLister
- type TableListerExpansion
- type TableNamespaceLister
- type TableNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RouteLister ¶
type RouteLister interface { // List lists all Routes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Route, err error) // Routes returns an object that can list and get Routes. Routes(namespace string) RouteNamespaceLister RouteListerExpansion }
RouteLister helps list Routes. All objects returned here must be treated as read-only.
func NewRouteLister ¶
func NewRouteLister(indexer cache.Indexer) RouteLister
NewRouteLister returns a new RouteLister.
type RouteListerExpansion ¶
type RouteListerExpansion interface{}
RouteListerExpansion allows custom methods to be added to RouteLister.
type RouteNamespaceLister ¶
type RouteNamespaceLister interface { // List lists all Routes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Route, err error) // Get retrieves the Route from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Route, error) RouteNamespaceListerExpansion }
RouteNamespaceLister helps list and get Routes. All objects returned here must be treated as read-only.
type RouteNamespaceListerExpansion ¶
type RouteNamespaceListerExpansion interface{}
RouteNamespaceListerExpansion allows custom methods to be added to RouteNamespaceLister.
type TableAssociationLister ¶
type TableAssociationLister interface { // List lists all TableAssociations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.TableAssociation, err error) // TableAssociations returns an object that can list and get TableAssociations. TableAssociations(namespace string) TableAssociationNamespaceLister TableAssociationListerExpansion }
TableAssociationLister helps list TableAssociations. All objects returned here must be treated as read-only.
func NewTableAssociationLister ¶
func NewTableAssociationLister(indexer cache.Indexer) TableAssociationLister
NewTableAssociationLister returns a new TableAssociationLister.
type TableAssociationListerExpansion ¶
type TableAssociationListerExpansion interface{}
TableAssociationListerExpansion allows custom methods to be added to TableAssociationLister.
type TableAssociationNamespaceLister ¶
type TableAssociationNamespaceLister interface { // List lists all TableAssociations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.TableAssociation, err error) // Get retrieves the TableAssociation from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.TableAssociation, error) TableAssociationNamespaceListerExpansion }
TableAssociationNamespaceLister helps list and get TableAssociations. All objects returned here must be treated as read-only.
type TableAssociationNamespaceListerExpansion ¶
type TableAssociationNamespaceListerExpansion interface{}
TableAssociationNamespaceListerExpansion allows custom methods to be added to TableAssociationNamespaceLister.
type TableLister ¶
type TableLister interface { // List lists all Tables in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Table, err error) // Tables returns an object that can list and get Tables. Tables(namespace string) TableNamespaceLister TableListerExpansion }
TableLister helps list Tables. All objects returned here must be treated as read-only.
func NewTableLister ¶
func NewTableLister(indexer cache.Indexer) TableLister
NewTableLister returns a new TableLister.
type TableListerExpansion ¶
type TableListerExpansion interface{}
TableListerExpansion allows custom methods to be added to TableLister.
type TableNamespaceLister ¶
type TableNamespaceLister interface { // List lists all Tables in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Table, err error) // Get retrieves the Table from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Table, error) TableNamespaceListerExpansion }
TableNamespaceLister helps list and get Tables. All objects returned here must be treated as read-only.
type TableNamespaceListerExpansion ¶
type TableNamespaceListerExpansion interface{}
TableNamespaceListerExpansion allows custom methods to be added to TableNamespaceLister.