v1alpha1

package
v1.5.1 Latest Latest
Warning

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

Go to latest
Published: May 27, 2020 License: Apache-2.0, BSD-2-Clause, MIT, + 1 more Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BackupBucketLister

type BackupBucketLister interface {
	// List lists all BackupBuckets in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.BackupBucket, err error)
	// Get retrieves the BackupBucket from the index for a given name.
	Get(name string) (*v1alpha1.BackupBucket, error)
	BackupBucketListerExpansion
}

BackupBucketLister helps list BackupBuckets.

func NewBackupBucketLister

func NewBackupBucketLister(indexer cache.Indexer) BackupBucketLister

NewBackupBucketLister returns a new BackupBucketLister.

type BackupBucketListerExpansion

type BackupBucketListerExpansion interface{}

BackupBucketListerExpansion allows custom methods to be added to BackupBucketLister.

type BackupEntryLister

type BackupEntryLister interface {
	// List lists all BackupEntries in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.BackupEntry, err error)
	// Get retrieves the BackupEntry from the index for a given name.
	Get(name string) (*v1alpha1.BackupEntry, error)
	BackupEntryListerExpansion
}

BackupEntryLister helps list BackupEntries.

func NewBackupEntryLister

func NewBackupEntryLister(indexer cache.Indexer) BackupEntryLister

NewBackupEntryLister returns a new BackupEntryLister.

type BackupEntryListerExpansion

type BackupEntryListerExpansion interface{}

BackupEntryListerExpansion allows custom methods to be added to BackupEntryLister.

type ClusterLister

type ClusterLister interface {
	// List lists all Clusters in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Cluster, err error)
	// Get retrieves the Cluster from the index for a given name.
	Get(name string) (*v1alpha1.Cluster, error)
	ClusterListerExpansion
}

ClusterLister helps list Clusters.

func NewClusterLister

func NewClusterLister(indexer cache.Indexer) ClusterLister

NewClusterLister returns a new ClusterLister.

type ClusterListerExpansion

type ClusterListerExpansion interface{}

ClusterListerExpansion allows custom methods to be added to ClusterLister.

type ContainerRuntimeLister added in v1.2.0

type ContainerRuntimeLister interface {
	// List lists all ContainerRuntimes in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.ContainerRuntime, err error)
	// ContainerRuntimes returns an object that can list and get ContainerRuntimes.
	ContainerRuntimes(namespace string) ContainerRuntimeNamespaceLister
	ContainerRuntimeListerExpansion
}

ContainerRuntimeLister helps list ContainerRuntimes.

func NewContainerRuntimeLister added in v1.2.0

func NewContainerRuntimeLister(indexer cache.Indexer) ContainerRuntimeLister

NewContainerRuntimeLister returns a new ContainerRuntimeLister.

type ContainerRuntimeListerExpansion added in v1.2.0

type ContainerRuntimeListerExpansion interface{}

ContainerRuntimeListerExpansion allows custom methods to be added to ContainerRuntimeLister.

type ContainerRuntimeNamespaceLister added in v1.2.0

type ContainerRuntimeNamespaceLister interface {
	// List lists all ContainerRuntimes in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.ContainerRuntime, err error)
	// Get retrieves the ContainerRuntime from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.ContainerRuntime, error)
	ContainerRuntimeNamespaceListerExpansion
}

ContainerRuntimeNamespaceLister helps list and get ContainerRuntimes.

type ContainerRuntimeNamespaceListerExpansion added in v1.2.0

type ContainerRuntimeNamespaceListerExpansion interface{}

ContainerRuntimeNamespaceListerExpansion allows custom methods to be added to ContainerRuntimeNamespaceLister.

type ControlPlaneLister

type ControlPlaneLister interface {
	// List lists all ControlPlanes in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.ControlPlane, err error)
	// ControlPlanes returns an object that can list and get ControlPlanes.
	ControlPlanes(namespace string) ControlPlaneNamespaceLister
	ControlPlaneListerExpansion
}

ControlPlaneLister helps list ControlPlanes.

func NewControlPlaneLister

func NewControlPlaneLister(indexer cache.Indexer) ControlPlaneLister

NewControlPlaneLister returns a new ControlPlaneLister.

type ControlPlaneListerExpansion

type ControlPlaneListerExpansion interface{}

ControlPlaneListerExpansion allows custom methods to be added to ControlPlaneLister.

type ControlPlaneNamespaceLister

type ControlPlaneNamespaceLister interface {
	// List lists all ControlPlanes in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.ControlPlane, err error)
	// Get retrieves the ControlPlane from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.ControlPlane, error)
	ControlPlaneNamespaceListerExpansion
}

ControlPlaneNamespaceLister helps list and get ControlPlanes.

type ControlPlaneNamespaceListerExpansion

type ControlPlaneNamespaceListerExpansion interface{}

ControlPlaneNamespaceListerExpansion allows custom methods to be added to ControlPlaneNamespaceLister.

type ExtensionLister

type ExtensionLister interface {
	// List lists all Extensions in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Extension, err error)
	// Extensions returns an object that can list and get Extensions.
	Extensions(namespace string) ExtensionNamespaceLister
	ExtensionListerExpansion
}

ExtensionLister helps list Extensions.

func NewExtensionLister

func NewExtensionLister(indexer cache.Indexer) ExtensionLister

NewExtensionLister returns a new ExtensionLister.

type ExtensionListerExpansion

type ExtensionListerExpansion interface{}

ExtensionListerExpansion allows custom methods to be added to ExtensionLister.

type ExtensionNamespaceLister

type ExtensionNamespaceLister interface {
	// List lists all Extensions in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.Extension, err error)
	// Get retrieves the Extension from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.Extension, error)
	ExtensionNamespaceListerExpansion
}

ExtensionNamespaceLister helps list and get Extensions.

type ExtensionNamespaceListerExpansion

type ExtensionNamespaceListerExpansion interface{}

ExtensionNamespaceListerExpansion allows custom methods to be added to ExtensionNamespaceLister.

type InfrastructureLister

type InfrastructureLister interface {
	// List lists all Infrastructures in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Infrastructure, err error)
	// Infrastructures returns an object that can list and get Infrastructures.
	Infrastructures(namespace string) InfrastructureNamespaceLister
	InfrastructureListerExpansion
}

InfrastructureLister helps list Infrastructures.

func NewInfrastructureLister

func NewInfrastructureLister(indexer cache.Indexer) InfrastructureLister

NewInfrastructureLister returns a new InfrastructureLister.

type InfrastructureListerExpansion

type InfrastructureListerExpansion interface{}

InfrastructureListerExpansion allows custom methods to be added to InfrastructureLister.

type InfrastructureNamespaceLister

type InfrastructureNamespaceLister interface {
	// List lists all Infrastructures in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.Infrastructure, err error)
	// Get retrieves the Infrastructure from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.Infrastructure, error)
	InfrastructureNamespaceListerExpansion
}

InfrastructureNamespaceLister helps list and get Infrastructures.

type InfrastructureNamespaceListerExpansion

type InfrastructureNamespaceListerExpansion interface{}

InfrastructureNamespaceListerExpansion allows custom methods to be added to InfrastructureNamespaceLister.

type NetworkLister

type NetworkLister interface {
	// List lists all Networks in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Network, err error)
	// Networks returns an object that can list and get Networks.
	Networks(namespace string) NetworkNamespaceLister
	NetworkListerExpansion
}

NetworkLister helps list Networks.

func NewNetworkLister

func NewNetworkLister(indexer cache.Indexer) NetworkLister

NewNetworkLister returns a new NetworkLister.

type NetworkListerExpansion

type NetworkListerExpansion interface{}

NetworkListerExpansion allows custom methods to be added to NetworkLister.

type NetworkNamespaceLister

type NetworkNamespaceLister interface {
	// List lists all Networks in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.Network, err error)
	// Get retrieves the Network from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.Network, error)
	NetworkNamespaceListerExpansion
}

NetworkNamespaceLister helps list and get Networks.

type NetworkNamespaceListerExpansion

type NetworkNamespaceListerExpansion interface{}

NetworkNamespaceListerExpansion allows custom methods to be added to NetworkNamespaceLister.

type OperatingSystemConfigLister

type OperatingSystemConfigLister interface {
	// List lists all OperatingSystemConfigs in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.OperatingSystemConfig, err error)
	// OperatingSystemConfigs returns an object that can list and get OperatingSystemConfigs.
	OperatingSystemConfigs(namespace string) OperatingSystemConfigNamespaceLister
	OperatingSystemConfigListerExpansion
}

OperatingSystemConfigLister helps list OperatingSystemConfigs.

func NewOperatingSystemConfigLister

func NewOperatingSystemConfigLister(indexer cache.Indexer) OperatingSystemConfigLister

NewOperatingSystemConfigLister returns a new OperatingSystemConfigLister.

type OperatingSystemConfigListerExpansion

type OperatingSystemConfigListerExpansion interface{}

OperatingSystemConfigListerExpansion allows custom methods to be added to OperatingSystemConfigLister.

type OperatingSystemConfigNamespaceLister

type OperatingSystemConfigNamespaceLister interface {
	// List lists all OperatingSystemConfigs in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.OperatingSystemConfig, err error)
	// Get retrieves the OperatingSystemConfig from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.OperatingSystemConfig, error)
	OperatingSystemConfigNamespaceListerExpansion
}

OperatingSystemConfigNamespaceLister helps list and get OperatingSystemConfigs.

type OperatingSystemConfigNamespaceListerExpansion

type OperatingSystemConfigNamespaceListerExpansion interface{}

OperatingSystemConfigNamespaceListerExpansion allows custom methods to be added to OperatingSystemConfigNamespaceLister.

type WorkerLister

type WorkerLister interface {
	// List lists all Workers in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Worker, err error)
	// Workers returns an object that can list and get Workers.
	Workers(namespace string) WorkerNamespaceLister
	WorkerListerExpansion
}

WorkerLister helps list Workers.

func NewWorkerLister

func NewWorkerLister(indexer cache.Indexer) WorkerLister

NewWorkerLister returns a new WorkerLister.

type WorkerListerExpansion

type WorkerListerExpansion interface{}

WorkerListerExpansion allows custom methods to be added to WorkerLister.

type WorkerNamespaceLister

type WorkerNamespaceLister interface {
	// List lists all Workers in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.Worker, err error)
	// Get retrieves the Worker from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.Worker, error)
	WorkerNamespaceListerExpansion
}

WorkerNamespaceLister helps list and get Workers.

type WorkerNamespaceListerExpansion

type WorkerNamespaceListerExpansion interface{}

WorkerNamespaceListerExpansion allows custom methods to be added to WorkerNamespaceLister.

Jump to

Keyboard shortcuts

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