Documentation ¶
Index ¶
- func NewOAuthAccessTokenInformer(client clientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthAuthorizeTokenInformer(client clientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthClientAuthorizationInformer(client clientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthClientInformer(client clientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type Interface
- type OAuthAccessTokenInformer
- type OAuthAuthorizeTokenInformer
- type OAuthClientAuthorizationInformer
- type OAuthClientInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewOAuthAccessTokenInformer ¶
func NewOAuthAccessTokenInformer(client clientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewOAuthAccessTokenInformer constructs a new informer for OAuthAccessToken type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewOAuthAuthorizeTokenInformer ¶
func NewOAuthAuthorizeTokenInformer(client clientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewOAuthAuthorizeTokenInformer constructs a new informer for OAuthAuthorizeToken type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewOAuthClientAuthorizationInformer ¶
func NewOAuthClientAuthorizationInformer(client clientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewOAuthClientAuthorizationInformer constructs a new informer for OAuthClientAuthorization type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewOAuthClientInformer ¶
func NewOAuthClientInformer(client clientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewOAuthClientInformer constructs a new informer for OAuthClient type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
Types ¶
type Interface ¶
type Interface interface { // OAuthAccessTokens returns a OAuthAccessTokenInformer. OAuthAccessTokens() OAuthAccessTokenInformer // OAuthAuthorizeTokens returns a OAuthAuthorizeTokenInformer. OAuthAuthorizeTokens() OAuthAuthorizeTokenInformer // OAuthClients returns a OAuthClientInformer. OAuthClients() OAuthClientInformer // OAuthClientAuthorizations returns a OAuthClientAuthorizationInformer. OAuthClientAuthorizations() OAuthClientAuthorizationInformer }
Interface provides access to all the informers in this group version.
func New ¶
func New(f internalinterfaces.SharedInformerFactory) Interface
New returns a new Interface.
type OAuthAccessTokenInformer ¶
type OAuthAccessTokenInformer interface { Informer() cache.SharedIndexInformer Lister() v1.OAuthAccessTokenLister }
OAuthAccessTokenInformer provides access to a shared informer and lister for OAuthAccessTokens.
type OAuthAuthorizeTokenInformer ¶
type OAuthAuthorizeTokenInformer interface { Informer() cache.SharedIndexInformer Lister() v1.OAuthAuthorizeTokenLister }
OAuthAuthorizeTokenInformer provides access to a shared informer and lister for OAuthAuthorizeTokens.
type OAuthClientAuthorizationInformer ¶
type OAuthClientAuthorizationInformer interface { Informer() cache.SharedIndexInformer Lister() v1.OAuthClientAuthorizationLister }
OAuthClientAuthorizationInformer provides access to a shared informer and lister for OAuthClientAuthorizations.
type OAuthClientInformer ¶
type OAuthClientInformer interface { Informer() cache.SharedIndexInformer Lister() v1.OAuthClientLister }
OAuthClientInformer provides access to a shared informer and lister for OAuthClients.