Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FooLister ¶
type FooLister interface { // List lists all Foos in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Foo, err error) // Foos returns an object that can list and get Foos. Foos(namespace string) FooNamespaceLister FooListerExpansion }
FooLister helps list Foos.
func NewFooLister ¶
NewFooLister returns a new FooLister.
type FooListerExpansion ¶
type FooListerExpansion interface{}
FooListerExpansion allows custom methods to be added to FooLister.
type FooNamespaceLister ¶
type FooNamespaceLister interface { // List lists all Foos in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Foo, err error) // Get retrieves the Foo from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Foo, error) FooNamespaceListerExpansion }
FooNamespaceLister helps list and get Foos.
type FooNamespaceListerExpansion ¶
type FooNamespaceListerExpansion interface{}
FooNamespaceListerExpansion allows custom methods to be added to FooNamespaceLister.
type VMLister ¶
type VMLister interface { // List lists all VMs in the indexer. List(selector labels.Selector) (ret []*v1alpha1.VM, err error) // VMs returns an object that can list and get VMs. VMs(namespace string) VMNamespaceLister VMListerExpansion }
VMLister helps list VMs.
func NewVMLister ¶
NewVMLister returns a new VMLister.
type VMListerExpansion ¶
type VMListerExpansion interface{}
VMListerExpansion allows custom methods to be added to VMLister.
type VMNamespaceLister ¶
type VMNamespaceLister interface { // List lists all VMs in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.VM, err error) // Get retrieves the VM from the indexer for a given namespace and name. Get(name string) (*v1alpha1.VM, error) VMNamespaceListerExpansion }
VMNamespaceLister helps list and get VMs.
type VMNamespaceListerExpansion ¶
type VMNamespaceListerExpansion interface{}
VMNamespaceListerExpansion allows custom methods to be added to VMNamespaceLister.
Click to show internal directories.
Click to hide internal directories.