Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type QueueLister ¶
type QueueLister interface { // List lists all Queues in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Queue, err error) // Queues returns an object that can list and get Queues. Queues(namespace string) QueueNamespaceLister QueueListerExpansion }
QueueLister helps list Queues.
func NewQueueLister ¶
func NewQueueLister(indexer cache.Indexer) QueueLister
NewQueueLister returns a new QueueLister.
type QueueListerExpansion ¶
type QueueListerExpansion interface{}
QueueListerExpansion allows custom methods to be added to QueueLister.
type QueueNamespaceLister ¶
type QueueNamespaceLister interface { // List lists all Queues in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Queue, err error) // Get retrieves the Queue from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Queue, error) QueueNamespaceListerExpansion }
QueueNamespaceLister helps list and get Queues.
type QueueNamespaceListerExpansion ¶
type QueueNamespaceListerExpansion interface{}
QueueNamespaceListerExpansion allows custom methods to be added to QueueNamespaceLister.
type QueueUnitLister ¶
type QueueUnitLister interface { // List lists all QueueUnits in the indexer. List(selector labels.Selector) (ret []*v1alpha1.QueueUnit, err error) // QueueUnits returns an object that can list and get QueueUnits. QueueUnits(namespace string) QueueUnitNamespaceLister QueueUnitListerExpansion }
QueueUnitLister helps list QueueUnits.
func NewQueueUnitLister ¶
func NewQueueUnitLister(indexer cache.Indexer) QueueUnitLister
NewQueueUnitLister returns a new QueueUnitLister.
type QueueUnitListerExpansion ¶
type QueueUnitListerExpansion interface{}
QueueUnitListerExpansion allows custom methods to be added to QueueUnitLister.
type QueueUnitNamespaceLister ¶
type QueueUnitNamespaceLister interface { // List lists all QueueUnits in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.QueueUnit, err error) // Get retrieves the QueueUnit from the indexer for a given namespace and name. Get(name string) (*v1alpha1.QueueUnit, error) QueueUnitNamespaceListerExpansion }
QueueUnitNamespaceLister helps list and get QueueUnits.
type QueueUnitNamespaceListerExpansion ¶
type QueueUnitNamespaceListerExpansion interface{}
QueueUnitNamespaceListerExpansion allows custom methods to be added to QueueUnitNamespaceLister.
Click to show internal directories.
Click to hide internal directories.