1
0
mirror of https://github.com/rancher/types.git synced 2025-09-14 22:12:36 +00:00

Update generated code

This commit is contained in:
Darren Shepherd
2018-09-24 09:06:31 -07:00
parent c2683e103a
commit b65b6677d6
85 changed files with 425 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ type AuthProviderLister interface {
}
type AuthProviderController interface {
Generic() controller.GenericController
Informer() cache.SharedIndexInformer
Lister() AuthProviderLister
AddHandler(name string, handler AuthProviderHandlerFunc)
@@ -104,6 +105,10 @@ type authProviderController struct {
controller.GenericController
}
func (c *authProviderController) Generic() controller.GenericController {
return c.GenericController
}
func (c *authProviderController) Lister() AuthProviderLister {
return &authProviderLister{
controller: c,