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