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