2017-10-10 02:19:34 +08:00
|
|
|
/*
|
2018-01-22 20:37:53 +08:00
|
|
|
Copyright The Kubernetes Authors.
|
2017-10-10 02:19:34 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2018-02-27 09:16:14 +08:00
|
|
|
// Code generated by informer-gen. DO NOT EDIT.
|
2017-10-10 02:19:34 +08:00
|
|
|
|
|
|
|
package internalinterfaces
|
|
|
|
|
|
|
|
import (
|
2018-01-03 14:07:30 +08:00
|
|
|
time "time"
|
|
|
|
|
2017-11-01 22:32:22 +08:00
|
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-10-10 02:19:34 +08:00
|
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
|
|
cache "k8s.io/client-go/tools/cache"
|
|
|
|
versioned "k8s.io/sample-controller/pkg/client/clientset/versioned"
|
|
|
|
)
|
|
|
|
|
|
|
|
type NewInformerFunc func(versioned.Interface, time.Duration) cache.SharedIndexInformer
|
|
|
|
|
|
|
|
// SharedInformerFactory a small interface to allow for adding an informer without an import cycle
|
|
|
|
type SharedInformerFactory interface {
|
|
|
|
Start(stopCh <-chan struct{})
|
|
|
|
InformerFor(obj runtime.Object, newFunc NewInformerFunc) cache.SharedIndexInformer
|
|
|
|
}
|
2017-11-01 22:32:22 +08:00
|
|
|
|
|
|
|
type TweakListOptionsFunc func(*v1.ListOptions)
|