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