Documentation ¶
Index ¶
- func NewFilteredIPClaimInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredIPEntryInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredIPIndexInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewIPClaimInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewIPEntryInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewIPIndexInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type IPClaimInformer
- type IPEntryInformer
- type IPIndexInformer
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFilteredIPClaimInformer ¶
func NewFilteredIPClaimInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredIPClaimInformer constructs a new informer for IPClaim type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredIPEntryInformer ¶
func NewFilteredIPEntryInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredIPEntryInformer constructs a new informer for IPEntry type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredIPIndexInformer ¶
func NewFilteredIPIndexInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredIPIndexInformer constructs a new informer for IPIndex type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewIPClaimInformer ¶
func NewIPClaimInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewIPClaimInformer constructs a new informer for IPClaim type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewIPEntryInformer ¶
func NewIPEntryInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewIPEntryInformer constructs a new informer for IPEntry type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewIPIndexInformer ¶
func NewIPIndexInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewIPIndexInformer constructs a new informer for IPIndex type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
Types ¶
type IPClaimInformer ¶
type IPClaimInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.IPClaimLister }
IPClaimInformer provides access to a shared informer and lister for IPClaims.
type IPEntryInformer ¶
type IPEntryInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.IPEntryLister }
IPEntryInformer provides access to a shared informer and lister for IPEntries.
type IPIndexInformer ¶
type IPIndexInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.IPIndexLister }
IPIndexInformer provides access to a shared informer and lister for IPIndexes.
type Interface ¶
type Interface interface { // IPClaims returns a IPClaimInformer. IPClaims() IPClaimInformer // IPEntries returns a IPEntryInformer. IPEntries() IPEntryInformer // IPIndexes returns a IPIndexInformer. IPIndexes() IPIndexInformer }
Interface provides access to all the informers in this group version.
func New ¶
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface
New returns a new Interface.