Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PlanLister ¶
type PlanLister interface { // List lists all Plans in the indexer. List(selector labels.Selector) (ret []*v1.Plan, err error) // Plans returns an object that can list and get Plans. Plans(namespace string) PlanNamespaceLister PlanListerExpansion }
PlanLister helps list Plans.
func NewPlanLister ¶
func NewPlanLister(indexer cache.Indexer) PlanLister
NewPlanLister returns a new PlanLister.
type PlanListerExpansion ¶
type PlanListerExpansion interface{}
PlanListerExpansion allows custom methods to be added to PlanLister.
type PlanNamespaceLister ¶
type PlanNamespaceLister interface { // List lists all Plans in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1.Plan, err error) // Get retrieves the Plan from the indexer for a given namespace and name. Get(name string) (*v1.Plan, error) PlanNamespaceListerExpansion }
PlanNamespaceLister helps list and get Plans.
type PlanNamespaceListerExpansion ¶
type PlanNamespaceListerExpansion interface{}
PlanNamespaceListerExpansion allows custom methods to be added to PlanNamespaceLister.
Click to show internal directories.
Click to hide internal directories.