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