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