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