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