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