v1

package
v4.7.6 Latest Latest
Warning

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

Go to latest
Published: Jun 18, 2024 License: Apache-2.0 Imports: 4 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EnvironmentLister

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

EnvironmentLister helps list Environments. All objects returned here must be treated as read-only.

func NewEnvironmentLister

func NewEnvironmentLister(indexer cache.Indexer) EnvironmentLister

NewEnvironmentLister returns a new EnvironmentLister.

type EnvironmentListerExpansion

type EnvironmentListerExpansion interface{}

EnvironmentListerExpansion allows custom methods to be added to EnvironmentLister.

type EnvironmentNamespaceLister

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

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

type EnvironmentNamespaceListerExpansion

type EnvironmentNamespaceListerExpansion interface{}

EnvironmentNamespaceListerExpansion allows custom methods to be added to EnvironmentNamespaceLister.

type PipelineActivityLister

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

PipelineActivityLister helps list PipelineActivities. All objects returned here must be treated as read-only.

func NewPipelineActivityLister

func NewPipelineActivityLister(indexer cache.Indexer) PipelineActivityLister

NewPipelineActivityLister returns a new PipelineActivityLister.

type PipelineActivityListerExpansion

type PipelineActivityListerExpansion interface{}

PipelineActivityListerExpansion allows custom methods to be added to PipelineActivityLister.

type PipelineActivityNamespaceLister

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

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

type PipelineActivityNamespaceListerExpansion

type PipelineActivityNamespaceListerExpansion interface{}

PipelineActivityNamespaceListerExpansion allows custom methods to be added to PipelineActivityNamespaceLister.

type PluginLister

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

PluginLister helps list Plugins. All objects returned here must be treated as read-only.

func NewPluginLister

func NewPluginLister(indexer cache.Indexer) PluginLister

NewPluginLister returns a new PluginLister.

type PluginListerExpansion

type PluginListerExpansion interface{}

PluginListerExpansion allows custom methods to be added to PluginLister.

type PluginNamespaceLister

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

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

type PluginNamespaceListerExpansion

type PluginNamespaceListerExpansion interface{}

PluginNamespaceListerExpansion allows custom methods to be added to PluginNamespaceLister.

type ReleaseLister

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

ReleaseLister helps list Releases. All objects returned here must be treated as read-only.

func NewReleaseLister

func NewReleaseLister(indexer cache.Indexer) ReleaseLister

NewReleaseLister returns a new ReleaseLister.

type ReleaseListerExpansion

type ReleaseListerExpansion interface{}

ReleaseListerExpansion allows custom methods to be added to ReleaseLister.

type ReleaseNamespaceLister

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

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

type ReleaseNamespaceListerExpansion

type ReleaseNamespaceListerExpansion interface{}

ReleaseNamespaceListerExpansion allows custom methods to be added to ReleaseNamespaceLister.

type SourceRepositoryLister

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

SourceRepositoryLister helps list SourceRepositories. All objects returned here must be treated as read-only.

func NewSourceRepositoryLister

func NewSourceRepositoryLister(indexer cache.Indexer) SourceRepositoryLister

NewSourceRepositoryLister returns a new SourceRepositoryLister.

type SourceRepositoryListerExpansion

type SourceRepositoryListerExpansion interface{}

SourceRepositoryListerExpansion allows custom methods to be added to SourceRepositoryLister.

type SourceRepositoryNamespaceLister

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

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

type SourceRepositoryNamespaceListerExpansion

type SourceRepositoryNamespaceListerExpansion interface{}

SourceRepositoryNamespaceListerExpansion allows custom methods to be added to SourceRepositoryNamespaceLister.

Jump to

Keyboard shortcuts

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