Documentation ¶
Index ¶
- func NewFilteredSynchronizerInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewFilteredTransformationInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewFilteredXMLToJSONTransformationInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewFilteredXSLTTransformationInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewSynchronizerInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewTransformationInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewXMLToJSONTransformationInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewXSLTTransformationInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- type Interface
- type SynchronizerInformer
- type TransformationInformer
- type XMLToJSONTransformationInformer
- type XSLTTransformationInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFilteredSynchronizerInformer ¶ added in v1.14.0
func NewFilteredSynchronizerInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredSynchronizerInformer constructs a new informer for Synchronizer 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 NewFilteredTransformationInformer ¶
func NewFilteredTransformationInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredTransformationInformer constructs a new informer for Transformation 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 NewFilteredXMLToJSONTransformationInformer ¶ added in v1.14.0
func NewFilteredXMLToJSONTransformationInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredXMLToJSONTransformationInformer constructs a new informer for XMLToJSONTransformation 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 NewFilteredXSLTTransformationInformer ¶ added in v1.14.1
func NewFilteredXSLTTransformationInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredXSLTTransformationInformer constructs a new informer for XSLTTransformation 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 NewSynchronizerInformer ¶ added in v1.14.0
func NewSynchronizerInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewSynchronizerInformer constructs a new informer for Synchronizer 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 NewTransformationInformer ¶
func NewTransformationInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewTransformationInformer constructs a new informer for Transformation 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 NewXMLToJSONTransformationInformer ¶ added in v1.14.0
func NewXMLToJSONTransformationInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewXMLToJSONTransformationInformer constructs a new informer for XMLToJSONTransformation 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 NewXSLTTransformationInformer ¶ added in v1.14.1
func NewXSLTTransformationInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewXSLTTransformationInformer constructs a new informer for XSLTTransformation 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 { // Synchronizers returns a SynchronizerInformer. Synchronizers() SynchronizerInformer // Transformations returns a TransformationInformer. Transformations() TransformationInformer // XMLToJSONTransformations returns a XMLToJSONTransformationInformer. XMLToJSONTransformations() XMLToJSONTransformationInformer // XSLTTransformations returns a XSLTTransformationInformer. XSLTTransformations() XSLTTransformationInformer }
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 SynchronizerInformer ¶ added in v1.14.0
type SynchronizerInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.SynchronizerLister }
SynchronizerInformer provides access to a shared informer and lister for Synchronizers.
type TransformationInformer ¶
type TransformationInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.TransformationLister }
TransformationInformer provides access to a shared informer and lister for Transformations.
type XMLToJSONTransformationInformer ¶ added in v1.14.0
type XMLToJSONTransformationInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.XMLToJSONTransformationLister }
XMLToJSONTransformationInformer provides access to a shared informer and lister for XMLToJSONTransformations.
type XSLTTransformationInformer ¶ added in v1.14.1
type XSLTTransformationInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.XSLTTransformationLister }
XSLTTransformationInformer provides access to a shared informer and lister for XSLTTransformations.