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