forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.go
92 lines (77 loc) · 3.59 KB
/
interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Code generated by informer-gen. DO NOT EDIT.
package v1
import (
internalinterfaces "github.com/jenkins-x/jx/pkg/client/informers/externalversions/internalinterfaces"
)
// Interface provides access to all the informers in this group version.
type Interface interface {
// ComplianceChecks returns a ComplianceCheckInformer.
ComplianceChecks() ComplianceCheckInformer
// Environments returns a EnvironmentInformer.
Environments() EnvironmentInformer
// EnvironmentRoleBindings returns a EnvironmentRoleBindingInformer.
EnvironmentRoleBindings() EnvironmentRoleBindingInformer
// Extensions returns a ExtensionInformer.
Extensions() ExtensionInformer
// GitServices returns a GitServiceInformer.
GitServices() GitServiceInformer
// PipelineActivities returns a PipelineActivityInformer.
PipelineActivities() PipelineActivityInformer
// Releases returns a ReleaseInformer.
Releases() ReleaseInformer
// Teams returns a TeamInformer.
Teams() TeamInformer
// Users returns a UserInformer.
Users() UserInformer
// Workflows returns a WorkflowInformer.
Workflows() WorkflowInformer
}
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}
}
// ComplianceChecks returns a ComplianceCheckInformer.
func (v *version) ComplianceChecks() ComplianceCheckInformer {
return &complianceCheckInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// Environments returns a EnvironmentInformer.
func (v *version) Environments() EnvironmentInformer {
return &environmentInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// EnvironmentRoleBindings returns a EnvironmentRoleBindingInformer.
func (v *version) EnvironmentRoleBindings() EnvironmentRoleBindingInformer {
return &environmentRoleBindingInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// Extensions returns a ExtensionInformer.
func (v *version) Extensions() ExtensionInformer {
return &extensionInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// GitServices returns a GitServiceInformer.
func (v *version) GitServices() GitServiceInformer {
return &gitServiceInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// PipelineActivities returns a PipelineActivityInformer.
func (v *version) PipelineActivities() PipelineActivityInformer {
return &pipelineActivityInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// Releases returns a ReleaseInformer.
func (v *version) Releases() ReleaseInformer {
return &releaseInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// Teams returns a TeamInformer.
func (v *version) Teams() TeamInformer {
return &teamInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// Users returns a UserInformer.
func (v *version) Users() UserInformer {
return &userInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}
// Workflows returns a WorkflowInformer.
func (v *version) Workflows() WorkflowInformer {
return &workflowInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions}
}