whereabouts/pkg/generated/informers/externalversions/whereabouts.cni.cncf.io/v1alpha1/overlappingrangeipreservation.go
Thomas Ferrandiz daa12ca505 Update code generator script
The script we were using is fully deprecated so we need to upgrade
to a new code generator.
2024-12-16 16:05:40 +00:00

90 lines
4.2 KiB
Go

/*
Copyright 2024 The Kubernetes Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by informer-gen. DO NOT EDIT.
package v1alpha1
import (
"context"
time "time"
whereaboutscnicncfiov1alpha1 "github.com/k8snetworkplumbingwg/whereabouts/pkg/api/whereabouts.cni.cncf.io/v1alpha1"
versioned "github.com/k8snetworkplumbingwg/whereabouts/pkg/generated/clientset/versioned"
internalinterfaces "github.com/k8snetworkplumbingwg/whereabouts/pkg/generated/informers/externalversions/internalinterfaces"
v1alpha1 "github.com/k8snetworkplumbingwg/whereabouts/pkg/generated/listers/whereabouts.cni.cncf.io/v1alpha1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
watch "k8s.io/apimachinery/pkg/watch"
cache "k8s.io/client-go/tools/cache"
)
// OverlappingRangeIPReservationInformer provides access to a shared informer and lister for
// OverlappingRangeIPReservations.
type OverlappingRangeIPReservationInformer interface {
Informer() cache.SharedIndexInformer
Lister() v1alpha1.OverlappingRangeIPReservationLister
}
type overlappingRangeIPReservationInformer struct {
factory internalinterfaces.SharedInformerFactory
tweakListOptions internalinterfaces.TweakListOptionsFunc
namespace string
}
// NewOverlappingRangeIPReservationInformer constructs a new informer for OverlappingRangeIPReservation 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 NewOverlappingRangeIPReservationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
return NewFilteredOverlappingRangeIPReservationInformer(client, namespace, resyncPeriod, indexers, nil)
}
// NewFilteredOverlappingRangeIPReservationInformer constructs a new informer for OverlappingRangeIPReservation 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 NewFilteredOverlappingRangeIPReservationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer {
return cache.NewSharedIndexInformer(
&cache.ListWatch{
ListFunc: func(options v1.ListOptions) (runtime.Object, error) {
if tweakListOptions != nil {
tweakListOptions(&options)
}
return client.WhereaboutsV1alpha1().OverlappingRangeIPReservations(namespace).List(context.TODO(), options)
},
WatchFunc: func(options v1.ListOptions) (watch.Interface, error) {
if tweakListOptions != nil {
tweakListOptions(&options)
}
return client.WhereaboutsV1alpha1().OverlappingRangeIPReservations(namespace).Watch(context.TODO(), options)
},
},
&whereaboutscnicncfiov1alpha1.OverlappingRangeIPReservation{},
resyncPeriod,
indexers,
)
}
func (f *overlappingRangeIPReservationInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer {
return NewFilteredOverlappingRangeIPReservationInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions)
}
func (f *overlappingRangeIPReservationInformer) Informer() cache.SharedIndexInformer {
return f.factory.InformerFor(&whereaboutscnicncfiov1alpha1.OverlappingRangeIPReservation{}, f.defaultInformer)
}
func (f *overlappingRangeIPReservationInformer) Lister() v1alpha1.OverlappingRangeIPReservationLister {
return v1alpha1.NewOverlappingRangeIPReservationLister(f.Informer().GetIndexer())
}