39 lines
1.3 KiB
Go
39 lines
1.3 KiB
Go
/* MIT License */
|
|
|
|
// Code generated by informer-gen. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
import (
|
|
internalinterfaces "example.com/monok8s/pkg/generated/informers/externalversions/internalinterfaces"
|
|
)
|
|
|
|
// Interface provides access to all the informers in this group version.
|
|
type Interface interface {
|
|
// OSUpgrades returns a OSUpgradeInformer.
|
|
OSUpgrades() OSUpgradeInformer
|
|
// OSUpgradeProgresses returns a OSUpgradeProgressInformer.
|
|
OSUpgradeProgresses() OSUpgradeProgressInformer
|
|
}
|
|
|
|
type version 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 &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions}
|
|
}
|
|
|
|
// OSUpgrades returns a OSUpgradeInformer.
|
|
func (v *version) OSUpgrades() OSUpgradeInformer {
|
|
return &oSUpgradeInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
|
|
}
|
|
|
|
// OSUpgradeProgresses returns a OSUpgradeProgressInformer.
|
|
func (v *version) OSUpgradeProgresses() OSUpgradeProgressInformer {
|
|
return &oSUpgradeProgressInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
|
|
}
|