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