Documentation
¶
Index ¶
- func NewFilteredOAuthAccessTokenInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredOAuthAuthorizeTokenInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredOAuthClientAuthorizationInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredOAuthClientInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthAccessTokenInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthAuthorizeTokenInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthClientAuthorizationInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewOAuthClientInformer(client internalclientset.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 NewFilteredOAuthAccessTokenInformer ¶
func NewFilteredOAuthAccessTokenInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredOAuthAccessTokenInformer 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 NewFilteredOAuthAuthorizeTokenInformer ¶
func NewFilteredOAuthAuthorizeTokenInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredOAuthAuthorizeTokenInformer 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 NewFilteredOAuthClientAuthorizationInformer ¶
func NewFilteredOAuthClientAuthorizationInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredOAuthClientAuthorizationInformer 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 NewFilteredOAuthClientInformer ¶
func NewFilteredOAuthClientInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredOAuthClientInformer 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.
func NewOAuthAccessTokenInformer ¶
func NewOAuthAccessTokenInformer(client internalclientset.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 internalclientset.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 internalclientset.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 internalclientset.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, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface
New returns a new Interface.
type OAuthAccessTokenInformer ¶
type OAuthAccessTokenInformer interface {
Informer() cache.SharedIndexInformer
Lister() internalversion.OAuthAccessTokenLister
}
OAuthAccessTokenInformer provides access to a shared informer and lister for OAuthAccessTokens.
type OAuthAuthorizeTokenInformer ¶
type OAuthAuthorizeTokenInformer interface {
Informer() cache.SharedIndexInformer
Lister() internalversion.OAuthAuthorizeTokenLister
}
OAuthAuthorizeTokenInformer provides access to a shared informer and lister for OAuthAuthorizeTokens.
type OAuthClientAuthorizationInformer ¶
type OAuthClientAuthorizationInformer interface {
Informer() cache.SharedIndexInformer
Lister() internalversion.OAuthClientAuthorizationLister
}
OAuthClientAuthorizationInformer provides access to a shared informer and lister for OAuthClientAuthorizations.
type OAuthClientInformer ¶
type OAuthClientInformer interface {
Informer() cache.SharedIndexInformer
Lister() internalversion.OAuthClientLister
}
OAuthClientInformer provides access to a shared informer and lister for OAuthClients.
Source Files
¶
- interface.go
- oauthaccesstoken.go
- oauthauthorizetoken.go
- oauthclient.go
- oauthclientauthorization.go