Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterQueueLister ¶
type ClusterQueueLister interface { // List lists all ClusterQueues in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ClusterQueue, err error) // Get retrieves the ClusterQueue from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ClusterQueue, error) ClusterQueueListerExpansion }
ClusterQueueLister helps list ClusterQueues. All objects returned here must be treated as read-only.
func NewClusterQueueLister ¶
func NewClusterQueueLister(indexer cache.Indexer) ClusterQueueLister
NewClusterQueueLister returns a new ClusterQueueLister.
type ClusterQueueListerExpansion ¶
type ClusterQueueListerExpansion interface{}
ClusterQueueListerExpansion allows custom methods to be added to ClusterQueueLister.
type LocalQueueLister ¶
type LocalQueueLister interface { // List lists all LocalQueues in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.LocalQueue, err error) // LocalQueues returns an object that can list and get LocalQueues. LocalQueues(namespace string) LocalQueueNamespaceLister LocalQueueListerExpansion }
LocalQueueLister helps list LocalQueues. All objects returned here must be treated as read-only.
func NewLocalQueueLister ¶
func NewLocalQueueLister(indexer cache.Indexer) LocalQueueLister
NewLocalQueueLister returns a new LocalQueueLister.
type LocalQueueListerExpansion ¶
type LocalQueueListerExpansion interface{}
LocalQueueListerExpansion allows custom methods to be added to LocalQueueLister.
type LocalQueueNamespaceLister ¶
type LocalQueueNamespaceLister interface { // List lists all LocalQueues in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.LocalQueue, err error) // Get retrieves the LocalQueue from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.LocalQueue, error) LocalQueueNamespaceListerExpansion }
LocalQueueNamespaceLister helps list and get LocalQueues. All objects returned here must be treated as read-only.
type LocalQueueNamespaceListerExpansion ¶
type LocalQueueNamespaceListerExpansion interface{}
LocalQueueNamespaceListerExpansion allows custom methods to be added to LocalQueueNamespaceLister.