Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RunLister ¶ added in v0.15.0
type RunLister interface { // List lists all Runs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Run, err error) // Runs returns an object that can list and get Runs. Runs(namespace string) RunNamespaceLister RunListerExpansion }
RunLister helps list Runs. All objects returned here must be treated as read-only.
func NewRunLister ¶ added in v0.15.0
NewRunLister returns a new RunLister.
type RunListerExpansion ¶ added in v0.15.0
type RunListerExpansion interface{}
RunListerExpansion allows custom methods to be added to RunLister.
type RunNamespaceLister ¶ added in v0.15.0
type RunNamespaceLister interface { // List lists all Runs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Run, err error) // Get retrieves the Run from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Run, error) RunNamespaceListerExpansion }
RunNamespaceLister helps list and get Runs. All objects returned here must be treated as read-only.
type RunNamespaceListerExpansion ¶ added in v0.15.0
type RunNamespaceListerExpansion interface{}
RunNamespaceListerExpansion allows custom methods to be added to RunNamespaceLister.
Click to show internal directories.
Click to hide internal directories.