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