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