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