Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JobSetLister ¶
type JobSetLister interface { // List lists all JobSets in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha2.JobSet, err error) // JobSets returns an object that can list and get JobSets. JobSets(namespace string) JobSetNamespaceLister JobSetListerExpansion }
JobSetLister helps list JobSets. All objects returned here must be treated as read-only.
func NewJobSetLister ¶
func NewJobSetLister(indexer cache.Indexer) JobSetLister
NewJobSetLister returns a new JobSetLister.
type JobSetListerExpansion ¶
type JobSetListerExpansion interface{}
JobSetListerExpansion allows custom methods to be added to JobSetLister.
type JobSetNamespaceLister ¶
type JobSetNamespaceLister interface { // List lists all JobSets in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha2.JobSet, err error) // Get retrieves the JobSet from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha2.JobSet, error) JobSetNamespaceListerExpansion }
JobSetNamespaceLister helps list and get JobSets. All objects returned here must be treated as read-only.
type JobSetNamespaceListerExpansion ¶
type JobSetNamespaceListerExpansion interface{}
JobSetNamespaceListerExpansion allows custom methods to be added to JobSetNamespaceLister.
Click to show internal directories.
Click to hide internal directories.