v1

package
v1.0.0-alpha.6 Latest Latest
Warning

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

Go to latest
Published: Sep 14, 2024 License: AGPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ClusterDefinitionLister

type ClusterDefinitionLister interface {
	// List lists all ClusterDefinitions in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.ClusterDefinition, err error)
	// Get retrieves the ClusterDefinition from the index for a given name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.ClusterDefinition, error)
	ClusterDefinitionListerExpansion
}

ClusterDefinitionLister helps list ClusterDefinitions. All objects returned here must be treated as read-only.

func NewClusterDefinitionLister

func NewClusterDefinitionLister(indexer cache.Indexer) ClusterDefinitionLister

NewClusterDefinitionLister returns a new ClusterDefinitionLister.

type ClusterDefinitionListerExpansion

type ClusterDefinitionListerExpansion interface{}

ClusterDefinitionListerExpansion allows custom methods to be added to ClusterDefinitionLister.

type ClusterLister

type ClusterLister interface {
	// List lists all Clusters in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.Cluster, err error)
	// Clusters returns an object that can list and get Clusters.
	Clusters(namespace string) ClusterNamespaceLister
	ClusterListerExpansion
}

ClusterLister helps list Clusters. All objects returned here must be treated as read-only.

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 ClusterNamespaceLister

type ClusterNamespaceLister interface {
	// List lists all Clusters in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.Cluster, err error)
	// Get retrieves the Cluster from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.Cluster, error)
	ClusterNamespaceListerExpansion
}

ClusterNamespaceLister helps list and get Clusters. All objects returned here must be treated as read-only.

type ClusterNamespaceListerExpansion

type ClusterNamespaceListerExpansion interface{}

ClusterNamespaceListerExpansion allows custom methods to be added to ClusterNamespaceLister.

type ComponentDefinitionLister

type ComponentDefinitionLister interface {
	// List lists all ComponentDefinitions in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.ComponentDefinition, err error)
	// Get retrieves the ComponentDefinition from the index for a given name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.ComponentDefinition, error)
	ComponentDefinitionListerExpansion
}

ComponentDefinitionLister helps list ComponentDefinitions. All objects returned here must be treated as read-only.

func NewComponentDefinitionLister

func NewComponentDefinitionLister(indexer cache.Indexer) ComponentDefinitionLister

NewComponentDefinitionLister returns a new ComponentDefinitionLister.

type ComponentDefinitionListerExpansion

type ComponentDefinitionListerExpansion interface{}

ComponentDefinitionListerExpansion allows custom methods to be added to ComponentDefinitionLister.

type ComponentLister

type ComponentLister interface {
	// List lists all Components in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.Component, err error)
	// Components returns an object that can list and get Components.
	Components(namespace string) ComponentNamespaceLister
	ComponentListerExpansion
}

ComponentLister helps list Components. All objects returned here must be treated as read-only.

func NewComponentLister

func NewComponentLister(indexer cache.Indexer) ComponentLister

NewComponentLister returns a new ComponentLister.

type ComponentListerExpansion

type ComponentListerExpansion interface{}

ComponentListerExpansion allows custom methods to be added to ComponentLister.

type ComponentNamespaceLister

type ComponentNamespaceLister interface {
	// List lists all Components in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.Component, err error)
	// Get retrieves the Component from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.Component, error)
	ComponentNamespaceListerExpansion
}

ComponentNamespaceLister helps list and get Components. All objects returned here must be treated as read-only.

type ComponentNamespaceListerExpansion

type ComponentNamespaceListerExpansion interface{}

ComponentNamespaceListerExpansion allows custom methods to be added to ComponentNamespaceLister.

type ComponentVersionLister

type ComponentVersionLister interface {
	// List lists all ComponentVersions in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.ComponentVersion, err error)
	// Get retrieves the ComponentVersion from the index for a given name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.ComponentVersion, error)
	ComponentVersionListerExpansion
}

ComponentVersionLister helps list ComponentVersions. All objects returned here must be treated as read-only.

func NewComponentVersionLister

func NewComponentVersionLister(indexer cache.Indexer) ComponentVersionLister

NewComponentVersionLister returns a new ComponentVersionLister.

type ComponentVersionListerExpansion

type ComponentVersionListerExpansion interface{}

ComponentVersionListerExpansion allows custom methods to be added to ComponentVersionLister.

type ServiceDescriptorLister

type ServiceDescriptorLister interface {
	// List lists all ServiceDescriptors in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.ServiceDescriptor, err error)
	// ServiceDescriptors returns an object that can list and get ServiceDescriptors.
	ServiceDescriptors(namespace string) ServiceDescriptorNamespaceLister
	ServiceDescriptorListerExpansion
}

ServiceDescriptorLister helps list ServiceDescriptors. All objects returned here must be treated as read-only.

func NewServiceDescriptorLister

func NewServiceDescriptorLister(indexer cache.Indexer) ServiceDescriptorLister

NewServiceDescriptorLister returns a new ServiceDescriptorLister.

type ServiceDescriptorListerExpansion

type ServiceDescriptorListerExpansion interface{}

ServiceDescriptorListerExpansion allows custom methods to be added to ServiceDescriptorLister.

type ServiceDescriptorNamespaceLister

type ServiceDescriptorNamespaceLister interface {
	// List lists all ServiceDescriptors in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.ServiceDescriptor, err error)
	// Get retrieves the ServiceDescriptor from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.ServiceDescriptor, error)
	ServiceDescriptorNamespaceListerExpansion
}

ServiceDescriptorNamespaceLister helps list and get ServiceDescriptors. All objects returned here must be treated as read-only.

type ServiceDescriptorNamespaceListerExpansion

type ServiceDescriptorNamespaceListerExpansion interface{}

ServiceDescriptorNamespaceListerExpansion allows custom methods to be added to ServiceDescriptorNamespaceLister.

Jump to

Keyboard shortcuts

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