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