2020-09-16 14:19:51 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-09-01 16:55:33 +00:00
|
|
|
|
|
|
|
// Code generated by informer-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
package idp
|
|
|
|
|
|
|
|
import (
|
2020-09-18 19:56:24 +00:00
|
|
|
v1alpha1 "go.pinniped.dev/generated/1.18/client/informers/externalversions/idp/v1alpha1"
|
|
|
|
internalinterfaces "go.pinniped.dev/generated/1.18/client/informers/externalversions/internalinterfaces"
|
2020-09-01 16:55:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Interface provides access to each of this group's versions.
|
|
|
|
type Interface interface {
|
|
|
|
// V1alpha1 provides access to shared informers for resources in V1alpha1.
|
|
|
|
V1alpha1() v1alpha1.Interface
|
|
|
|
}
|
|
|
|
|
|
|
|
type group struct {
|
|
|
|
factory internalinterfaces.SharedInformerFactory
|
|
|
|
namespace string
|
|
|
|
tweakListOptions internalinterfaces.TweakListOptionsFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new Interface.
|
|
|
|
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface {
|
|
|
|
return &group{factory: f, namespace: namespace, tweakListOptions: tweakListOptions}
|
|
|
|
}
|
|
|
|
|
|
|
|
// V1alpha1 returns a new v1alpha1.Interface.
|
|
|
|
func (g *group) V1alpha1() v1alpha1.Interface {
|
|
|
|
return v1alpha1.New(g.factory, g.namespace, g.tweakListOptions)
|
|
|
|
}
|