Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomResourceLister ¶
type CustomResourceLister interface { // List lists all CustomResources in the indexer. List(selector labels.Selector) (ret []*v1.CustomResource, err error) // CustomResources returns an object that can list and get CustomResources. CustomResources(namespace string) CustomResourceNamespaceLister CustomResourceListerExpansion }
CustomResourceLister helps list CustomResources.
func NewCustomResourceLister ¶
func NewCustomResourceLister(indexer cache.Indexer) CustomResourceLister
NewCustomResourceLister returns a new CustomResourceLister.
type CustomResourceListerExpansion ¶
type CustomResourceListerExpansion interface{}
CustomResourceListerExpansion allows custom methods to be added to CustomResourceLister.
type CustomResourceNamespaceLister ¶
type CustomResourceNamespaceLister interface { // List lists all CustomResources in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1.CustomResource, err error) // Get retrieves the CustomResource from the indexer for a given namespace and name. Get(name string) (*v1.CustomResource, error) CustomResourceNamespaceListerExpansion }
CustomResourceNamespaceLister helps list and get CustomResources.
type CustomResourceNamespaceListerExpansion ¶
type CustomResourceNamespaceListerExpansion interface{}
CustomResourceNamespaceListerExpansion allows custom methods to be added to CustomResourceNamespaceLister.
Click to show internal directories.
Click to hide internal directories.