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.
// Objects returned here must be treated as read-only.
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. All objects returned here must be treated as read-only.
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.
// Objects returned here must be treated as read-only.
List(selector labels.Selector) (ret []*v1alpha1.Configuration, err error)
// Get retrieves the Configuration from the indexer for a given namespace and name.
// Objects returned here must be treated as read-only.
Get(name string) (*v1alpha1.Configuration, error)
ConfigurationNamespaceListerExpansion
}
ConfigurationNamespaceLister helps list and get Configurations. All objects returned here must be treated as read-only.
type ConfigurationNamespaceListerExpansion ¶
type ConfigurationNamespaceListerExpansion interface{}
ConfigurationNamespaceListerExpansion allows custom methods to be added to ConfigurationNamespaceLister.
type TemplateLister ¶
type TemplateLister interface {
// List lists all Templates in the indexer.
// Objects returned here must be treated as read-only.
List(selector labels.Selector) (ret []*v1alpha1.Template, err error)
// Templates returns an object that can list and get Templates.
Templates(namespace string) TemplateNamespaceLister
TemplateListerExpansion
}
TemplateLister helps list Templates. All objects returned here must be treated as read-only.
func NewTemplateLister ¶
func NewTemplateLister(indexer cache.Indexer) TemplateLister
NewTemplateLister returns a new TemplateLister.
type TemplateListerExpansion ¶
type TemplateListerExpansion interface{}
TemplateListerExpansion allows custom methods to be added to TemplateLister.
type TemplateNamespaceLister ¶
type TemplateNamespaceLister interface {
// List lists all Templates in the indexer for a given namespace.
// Objects returned here must be treated as read-only.
List(selector labels.Selector) (ret []*v1alpha1.Template, err error)
// Get retrieves the Template from the indexer for a given namespace and name.
// Objects returned here must be treated as read-only.
Get(name string) (*v1alpha1.Template, error)
TemplateNamespaceListerExpansion
}
TemplateNamespaceLister helps list and get Templates. All objects returned here must be treated as read-only.
type TemplateNamespaceListerExpansion ¶
type TemplateNamespaceListerExpansion interface{}
TemplateNamespaceListerExpansion allows custom methods to be added to TemplateNamespaceLister.