2020-08-20 17:54:15 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 VMware, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Code generated by informer-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
package v1alpha1
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
time "time"
|
|
|
|
|
|
|
|
crdpinnipedv1alpha1 "github.com/suzerain-io/pinniped/kubernetes/1.19/api/apis/crdpinniped/v1alpha1"
|
|
|
|
versioned "github.com/suzerain-io/pinniped/kubernetes/1.19/client-go/clientset/versioned"
|
|
|
|
internalinterfaces "github.com/suzerain-io/pinniped/kubernetes/1.19/client-go/informers/externalversions/internalinterfaces"
|
|
|
|
v1alpha1 "github.com/suzerain-io/pinniped/kubernetes/1.19/client-go/listers/crdpinniped/v1alpha1"
|
2020-08-21 19:50:53 +00:00
|
|
|
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"
|
2020-08-20 17:54:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// PinnipedDiscoveryInfoInformer provides access to a shared informer and lister for
|
|
|
|
// PinnipedDiscoveryInfos.
|
|
|
|
type PinnipedDiscoveryInfoInformer interface {
|
|
|
|
Informer() cache.SharedIndexInformer
|
|
|
|
Lister() v1alpha1.PinnipedDiscoveryInfoLister
|
|
|
|
}
|
|
|
|
|
|
|
|
type pinnipedDiscoveryInfoInformer struct {
|
|
|
|
factory internalinterfaces.SharedInformerFactory
|
|
|
|
tweakListOptions internalinterfaces.TweakListOptionsFunc
|
|
|
|
namespace string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewPinnipedDiscoveryInfoInformer constructs a new informer for PinnipedDiscoveryInfo 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 NewPinnipedDiscoveryInfoInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
|
|
|
|
return NewFilteredPinnipedDiscoveryInfoInformer(client, namespace, resyncPeriod, indexers, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFilteredPinnipedDiscoveryInfoInformer constructs a new informer for PinnipedDiscoveryInfo 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 NewFilteredPinnipedDiscoveryInfoInformer(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.CrdV1alpha1().PinnipedDiscoveryInfos(namespace).List(context.TODO(), options)
|
|
|
|
},
|
|
|
|
WatchFunc: func(options v1.ListOptions) (watch.Interface, error) {
|
|
|
|
if tweakListOptions != nil {
|
|
|
|
tweakListOptions(&options)
|
|
|
|
}
|
|
|
|
return client.CrdV1alpha1().PinnipedDiscoveryInfos(namespace).Watch(context.TODO(), options)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&crdpinnipedv1alpha1.PinnipedDiscoveryInfo{},
|
|
|
|
resyncPeriod,
|
|
|
|
indexers,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *pinnipedDiscoveryInfoInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer {
|
|
|
|
return NewFilteredPinnipedDiscoveryInfoInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *pinnipedDiscoveryInfoInformer) Informer() cache.SharedIndexInformer {
|
|
|
|
return f.factory.InformerFor(&crdpinnipedv1alpha1.PinnipedDiscoveryInfo{}, f.defaultInformer)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *pinnipedDiscoveryInfoInformer) Lister() v1alpha1.PinnipedDiscoveryInfoLister {
|
|
|
|
return v1alpha1.NewPinnipedDiscoveryInfoLister(f.Informer().GetIndexer())
|
|
|
|
}
|