v1beta1

package
v0.0.0-...-133fb1b Latest Latest
Warning

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

Go to latest
Published: Jan 15, 2018 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewCloudProfileInformer

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

NewCloudProfileInformer constructs a new informer for CloudProfile 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 NewCrossSecretBindingInformer

func NewCrossSecretBindingInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewCrossSecretBindingInformer constructs a new informer for CrossSecretBinding 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 NewFilteredCloudProfileInformer

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

NewFilteredCloudProfileInformer constructs a new informer for CloudProfile 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 NewFilteredCrossSecretBindingInformer

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

NewFilteredCrossSecretBindingInformer constructs a new informer for CrossSecretBinding 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 NewFilteredPrivateSecretBindingInformer

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

NewFilteredPrivateSecretBindingInformer constructs a new informer for PrivateSecretBinding 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 NewFilteredQuotaInformer

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

NewFilteredQuotaInformer constructs a new informer for Quota 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 NewFilteredSeedInformer

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

NewFilteredSeedInformer constructs a new informer for Seed 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 NewFilteredShootInformer

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

NewFilteredShootInformer constructs a new informer for Shoot 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 NewPrivateSecretBindingInformer

func NewPrivateSecretBindingInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewPrivateSecretBindingInformer constructs a new informer for PrivateSecretBinding 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 NewQuotaInformer

func NewQuotaInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewQuotaInformer constructs a new informer for Quota 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 NewSeedInformer

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

NewSeedInformer constructs a new informer for Seed 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 NewShootInformer

func NewShootInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewShootInformer constructs a new informer for Shoot 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 CloudProfileInformer

type CloudProfileInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1beta1.CloudProfileLister
}

CloudProfileInformer provides access to a shared informer and lister for CloudProfiles.

type CrossSecretBindingInformer

type CrossSecretBindingInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1beta1.CrossSecretBindingLister
}

CrossSecretBindingInformer provides access to a shared informer and lister for CrossSecretBindings.

type Interface

type Interface interface {
	// CloudProfiles returns a CloudProfileInformer.
	CloudProfiles() CloudProfileInformer
	// CrossSecretBindings returns a CrossSecretBindingInformer.
	CrossSecretBindings() CrossSecretBindingInformer
	// PrivateSecretBindings returns a PrivateSecretBindingInformer.
	PrivateSecretBindings() PrivateSecretBindingInformer
	// Quotas returns a QuotaInformer.
	Quotas() QuotaInformer
	// Seeds returns a SeedInformer.
	Seeds() SeedInformer
	// Shoots returns a ShootInformer.
	Shoots() ShootInformer
}

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

func New

New returns a new Interface.

type PrivateSecretBindingInformer

type PrivateSecretBindingInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1beta1.PrivateSecretBindingLister
}

PrivateSecretBindingInformer provides access to a shared informer and lister for PrivateSecretBindings.

type QuotaInformer

type QuotaInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1beta1.QuotaLister
}

QuotaInformer provides access to a shared informer and lister for Quotas.

type SeedInformer

type SeedInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1beta1.SeedLister
}

SeedInformer provides access to a shared informer and lister for Seeds.

type ShootInformer

type ShootInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1beta1.ShootLister
}

ShootInformer provides access to a shared informer and lister for Shoots.

Jump to

Keyboard shortcuts

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