Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PodGroupLister ¶
type PodGroupLister interface { // List lists all PodGroups in the indexer. List(selector labels.Selector) (ret []*v1alpha1.PodGroup, err error) // PodGroups returns an object that can list and get PodGroups. PodGroups(namespace string) PodGroupNamespaceLister PodGroupListerExpansion }
PodGroupLister helps list PodGroups.
func NewPodGroupLister ¶
func NewPodGroupLister(indexer cache.Indexer) PodGroupLister
NewPodGroupLister returns a new PodGroupLister.
type PodGroupListerExpansion ¶
type PodGroupListerExpansion interface{}
PodGroupListerExpansion allows custom methods to be added to PodGroupLister.
type PodGroupNamespaceLister ¶
type PodGroupNamespaceLister interface { // List lists all PodGroups in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.PodGroup, err error) // Get retrieves the PodGroup from the indexer for a given namespace and name. Get(name string) (*v1alpha1.PodGroup, error) PodGroupNamespaceListerExpansion }
PodGroupNamespaceLister helps list and get PodGroups.
type PodGroupNamespaceListerExpansion ¶
type PodGroupNamespaceListerExpansion interface{}
PodGroupNamespaceListerExpansion allows custom methods to be added to PodGroupNamespaceLister.
type QueueLister ¶
type QueueLister interface { // List lists all Queues in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Queue, err error) // Get retrieves the Queue from the index for a given name. Get(name string) (*v1alpha1.Queue, error) 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.
Click to show internal directories.
Click to hide internal directories.