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