Documentation ¶
Index ¶
- type NamespaceMapLister
- type NamespaceMapListerExpansion
- type NamespaceMapNamespaceLister
- type NamespaceMapNamespaceListerExpansion
- type ShadowEndpointSliceLister
- type ShadowEndpointSliceListerExpansion
- type ShadowEndpointSliceNamespaceLister
- type ShadowEndpointSliceNamespaceListerExpansion
- type ShadowPodLister
- type ShadowPodListerExpansion
- type ShadowPodNamespaceLister
- type ShadowPodNamespaceListerExpansion
- type VirtualNodeLister
- type VirtualNodeListerExpansion
- type VirtualNodeNamespaceLister
- type VirtualNodeNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NamespaceMapLister ¶
type NamespaceMapLister interface { // List lists all NamespaceMaps in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceMap, err error) // NamespaceMaps returns an object that can list and get NamespaceMaps. NamespaceMaps(namespace string) NamespaceMapNamespaceLister NamespaceMapListerExpansion }
NamespaceMapLister helps list NamespaceMaps. All objects returned here must be treated as read-only.
func NewNamespaceMapLister ¶
func NewNamespaceMapLister(indexer cache.Indexer) NamespaceMapLister
NewNamespaceMapLister returns a new NamespaceMapLister.
type NamespaceMapListerExpansion ¶
type NamespaceMapListerExpansion interface{}
NamespaceMapListerExpansion allows custom methods to be added to NamespaceMapLister.
type NamespaceMapNamespaceLister ¶
type NamespaceMapNamespaceLister interface { // List lists all NamespaceMaps in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceMap, err error) // Get retrieves the NamespaceMap from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.NamespaceMap, error) NamespaceMapNamespaceListerExpansion }
NamespaceMapNamespaceLister helps list and get NamespaceMaps. All objects returned here must be treated as read-only.
type NamespaceMapNamespaceListerExpansion ¶
type NamespaceMapNamespaceListerExpansion interface{}
NamespaceMapNamespaceListerExpansion allows custom methods to be added to NamespaceMapNamespaceLister.
type ShadowEndpointSliceLister ¶ added in v0.8.0
type ShadowEndpointSliceLister interface { // List lists all ShadowEndpointSlices in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ShadowEndpointSlice, err error) // ShadowEndpointSlices returns an object that can list and get ShadowEndpointSlices. ShadowEndpointSlices(namespace string) ShadowEndpointSliceNamespaceLister ShadowEndpointSliceListerExpansion }
ShadowEndpointSliceLister helps list ShadowEndpointSlices. All objects returned here must be treated as read-only.
func NewShadowEndpointSliceLister ¶ added in v0.8.0
func NewShadowEndpointSliceLister(indexer cache.Indexer) ShadowEndpointSliceLister
NewShadowEndpointSliceLister returns a new ShadowEndpointSliceLister.
type ShadowEndpointSliceListerExpansion ¶ added in v0.8.0
type ShadowEndpointSliceListerExpansion interface{}
ShadowEndpointSliceListerExpansion allows custom methods to be added to ShadowEndpointSliceLister.
type ShadowEndpointSliceNamespaceLister ¶ added in v0.8.0
type ShadowEndpointSliceNamespaceLister interface { // List lists all ShadowEndpointSlices in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ShadowEndpointSlice, err error) // Get retrieves the ShadowEndpointSlice from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ShadowEndpointSlice, error) ShadowEndpointSliceNamespaceListerExpansion }
ShadowEndpointSliceNamespaceLister helps list and get ShadowEndpointSlices. All objects returned here must be treated as read-only.
type ShadowEndpointSliceNamespaceListerExpansion ¶ added in v0.8.0
type ShadowEndpointSliceNamespaceListerExpansion interface{}
ShadowEndpointSliceNamespaceListerExpansion allows custom methods to be added to ShadowEndpointSliceNamespaceLister.
type ShadowPodLister ¶
type ShadowPodLister interface { // List lists all ShadowPods in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ShadowPod, err error) // ShadowPods returns an object that can list and get ShadowPods. ShadowPods(namespace string) ShadowPodNamespaceLister ShadowPodListerExpansion }
ShadowPodLister helps list ShadowPods. All objects returned here must be treated as read-only.
func NewShadowPodLister ¶
func NewShadowPodLister(indexer cache.Indexer) ShadowPodLister
NewShadowPodLister returns a new ShadowPodLister.
type ShadowPodListerExpansion ¶
type ShadowPodListerExpansion interface{}
ShadowPodListerExpansion allows custom methods to be added to ShadowPodLister.
type ShadowPodNamespaceLister ¶
type ShadowPodNamespaceLister interface { // List lists all ShadowPods in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ShadowPod, err error) // Get retrieves the ShadowPod from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ShadowPod, error) ShadowPodNamespaceListerExpansion }
ShadowPodNamespaceLister helps list and get ShadowPods. All objects returned here must be treated as read-only.
type ShadowPodNamespaceListerExpansion ¶
type ShadowPodNamespaceListerExpansion interface{}
ShadowPodNamespaceListerExpansion allows custom methods to be added to ShadowPodNamespaceLister.
type VirtualNodeLister ¶ added in v0.9.0
type VirtualNodeLister interface { // List lists all VirtualNodes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.VirtualNode, err error) // VirtualNodes returns an object that can list and get VirtualNodes. VirtualNodes(namespace string) VirtualNodeNamespaceLister VirtualNodeListerExpansion }
VirtualNodeLister helps list VirtualNodes. All objects returned here must be treated as read-only.
func NewVirtualNodeLister ¶ added in v0.9.0
func NewVirtualNodeLister(indexer cache.Indexer) VirtualNodeLister
NewVirtualNodeLister returns a new VirtualNodeLister.
type VirtualNodeListerExpansion ¶ added in v0.9.0
type VirtualNodeListerExpansion interface{}
VirtualNodeListerExpansion allows custom methods to be added to VirtualNodeLister.
type VirtualNodeNamespaceLister ¶ added in v0.9.0
type VirtualNodeNamespaceLister interface { // List lists all VirtualNodes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.VirtualNode, err error) // Get retrieves the VirtualNode from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.VirtualNode, error) VirtualNodeNamespaceListerExpansion }
VirtualNodeNamespaceLister helps list and get VirtualNodes. All objects returned here must be treated as read-only.
type VirtualNodeNamespaceListerExpansion ¶ added in v0.9.0
type VirtualNodeNamespaceListerExpansion interface{}
VirtualNodeNamespaceListerExpansion allows custom methods to be added to VirtualNodeNamespaceLister.