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