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