v1alpha1

package
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 7, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewFilteredLocalStorageAlertInformer

func NewFilteredLocalStorageAlertInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredLocalStorageAlertInformer constructs a new informer for LocalStorageAlert 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 NewFilteredLocalStorageNodeInformer

func NewFilteredLocalStorageNodeInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredLocalStorageNodeInformer constructs a new informer for LocalStorageNode 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 NewFilteredLocalVolumeExpandInformer

func NewFilteredLocalVolumeExpandInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredLocalVolumeExpandInformer constructs a new informer for LocalVolumeExpand 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 NewFilteredLocalVolumeInformer

func NewFilteredLocalVolumeInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredLocalVolumeInformer constructs a new informer for LocalVolume 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 NewFilteredLocalVolumeReplicaInformer

func NewFilteredLocalVolumeReplicaInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredLocalVolumeReplicaInformer constructs a new informer for LocalVolumeReplica 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 NewFilteredPhysicalDiskInformer

func NewFilteredPhysicalDiskInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredPhysicalDiskInformer constructs a new informer for PhysicalDisk 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 NewLocalStorageAlertInformer

func NewLocalStorageAlertInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewLocalStorageAlertInformer constructs a new informer for LocalStorageAlert 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 NewLocalStorageNodeInformer

func NewLocalStorageNodeInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewLocalStorageNodeInformer constructs a new informer for LocalStorageNode 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 NewLocalVolumeExpandInformer

func NewLocalVolumeExpandInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewLocalVolumeExpandInformer constructs a new informer for LocalVolumeExpand 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 NewLocalVolumeInformer

func NewLocalVolumeInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewLocalVolumeInformer constructs a new informer for LocalVolume 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 NewLocalVolumeReplicaInformer

func NewLocalVolumeReplicaInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewLocalVolumeReplicaInformer constructs a new informer for LocalVolumeReplica 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 NewPhysicalDiskInformer

func NewPhysicalDiskInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewPhysicalDiskInformer constructs a new informer for PhysicalDisk 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 {
	// LocalStorageAlerts returns a LocalStorageAlertInformer.
	LocalStorageAlerts() LocalStorageAlertInformer
	// LocalStorageNodes returns a LocalStorageNodeInformer.
	LocalStorageNodes() LocalStorageNodeInformer
	// LocalVolumes returns a LocalVolumeInformer.
	LocalVolumes() LocalVolumeInformer
	// LocalVolumeExpands returns a LocalVolumeExpandInformer.
	LocalVolumeExpands() LocalVolumeExpandInformer
	// LocalVolumeReplicas returns a LocalVolumeReplicaInformer.
	LocalVolumeReplicas() LocalVolumeReplicaInformer
	// PhysicalDisks returns a PhysicalDiskInformer.
	PhysicalDisks() PhysicalDiskInformer
}

Interface provides access to all the informers in this group version.

func New

New returns a new Interface.

type LocalStorageAlertInformer

type LocalStorageAlertInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.LocalStorageAlertLister
}

LocalStorageAlertInformer provides access to a shared informer and lister for LocalStorageAlerts.

type LocalStorageNodeInformer

type LocalStorageNodeInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.LocalStorageNodeLister
}

LocalStorageNodeInformer provides access to a shared informer and lister for LocalStorageNodes.

type LocalVolumeExpandInformer

type LocalVolumeExpandInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.LocalVolumeExpandLister
}

LocalVolumeExpandInformer provides access to a shared informer and lister for LocalVolumeExpands.

type LocalVolumeInformer

type LocalVolumeInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.LocalVolumeLister
}

LocalVolumeInformer provides access to a shared informer and lister for LocalVolumes.

type LocalVolumeReplicaInformer

type LocalVolumeReplicaInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.LocalVolumeReplicaLister
}

LocalVolumeReplicaInformer provides access to a shared informer and lister for LocalVolumeReplicas.

type PhysicalDiskInformer

type PhysicalDiskInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.PhysicalDiskLister
}

PhysicalDiskInformer provides access to a shared informer and lister for PhysicalDisks.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL