Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ExecutionLister ¶
type ExecutionLister interface { // List lists all Executions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Execution, err error) // Executions returns an object that can list and get Executions. Executions(namespace string) ExecutionNamespaceLister ExecutionListerExpansion }
ExecutionLister helps list Executions. All objects returned here must be treated as read-only.
func NewExecutionLister ¶
func NewExecutionLister(indexer cache.Indexer) ExecutionLister
NewExecutionLister returns a new ExecutionLister.
type ExecutionListerExpansion ¶
type ExecutionListerExpansion interface{}
ExecutionListerExpansion allows custom methods to be added to ExecutionLister.
type ExecutionNamespaceLister ¶
type ExecutionNamespaceLister interface { // List lists all Executions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Execution, err error) // Get retrieves the Execution from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Execution, error) ExecutionNamespaceListerExpansion }
ExecutionNamespaceLister helps list and get Executions. All objects returned here must be treated as read-only.
type ExecutionNamespaceListerExpansion ¶
type ExecutionNamespaceListerExpansion interface{}
ExecutionNamespaceListerExpansion allows custom methods to be added to ExecutionNamespaceLister.
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.