Documentation
¶
Index ¶
- func NewDatabaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewDatabaseSchemaInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewDatabaseServerInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDatabaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDatabaseSchemaInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDatabaseServerInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type DatabaseInformer
- type DatabaseSchemaInformer
- type DatabaseServerInformer
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewDatabaseInformer ¶
func NewDatabaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDatabaseInformer constructs a new informer for Database 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 NewDatabaseSchemaInformer ¶
func NewDatabaseSchemaInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDatabaseSchemaInformer constructs a new informer for DatabaseSchema 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 NewDatabaseServerInformer ¶
func NewDatabaseServerInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDatabaseServerInformer constructs a new informer for DatabaseServer 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 NewFilteredDatabaseInformer ¶
func NewFilteredDatabaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDatabaseInformer constructs a new informer for Database 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 NewFilteredDatabaseSchemaInformer ¶
func NewFilteredDatabaseSchemaInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDatabaseSchemaInformer constructs a new informer for DatabaseSchema 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 NewFilteredDatabaseServerInformer ¶
func NewFilteredDatabaseServerInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDatabaseServerInformer constructs a new informer for DatabaseServer 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 DatabaseInformer ¶
type DatabaseInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DatabaseLister }
DatabaseInformer provides access to a shared informer and lister for Databases.
type DatabaseSchemaInformer ¶
type DatabaseSchemaInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DatabaseSchemaLister }
DatabaseSchemaInformer provides access to a shared informer and lister for DatabaseSchemas.
type DatabaseServerInformer ¶
type DatabaseServerInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DatabaseServerLister }
DatabaseServerInformer provides access to a shared informer and lister for DatabaseServers.
type Interface ¶
type Interface interface { // Databases returns a DatabaseInformer. Databases() DatabaseInformer // DatabaseSchemas returns a DatabaseSchemaInformer. DatabaseSchemas() DatabaseSchemaInformer // DatabaseServers returns a DatabaseServerInformer. DatabaseServers() DatabaseServerInformer }
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.