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