v1alpha1

package
v0.8.0 Latest Latest
Warning

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

Go to latest
Published: Oct 20, 2019 License: Apache-2.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 ClusterTaskLister

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

ClusterTaskLister helps list ClusterTasks.

func NewClusterTaskLister

func NewClusterTaskLister(indexer cache.Indexer) ClusterTaskLister

NewClusterTaskLister returns a new ClusterTaskLister.

type ClusterTaskListerExpansion

type ClusterTaskListerExpansion interface{}

ClusterTaskListerExpansion allows custom methods to be added to ClusterTaskLister.

type ConditionLister added in v0.6.0

type ConditionLister interface {
	// List lists all Conditions in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Condition, err error)
	// Conditions returns an object that can list and get Conditions.
	Conditions(namespace string) ConditionNamespaceLister
	ConditionListerExpansion
}

ConditionLister helps list Conditions.

func NewConditionLister added in v0.6.0

func NewConditionLister(indexer cache.Indexer) ConditionLister

NewConditionLister returns a new ConditionLister.

type ConditionListerExpansion added in v0.6.0

type ConditionListerExpansion interface{}

ConditionListerExpansion allows custom methods to be added to ConditionLister.

type ConditionNamespaceLister added in v0.6.0

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

ConditionNamespaceLister helps list and get Conditions.

type ConditionNamespaceListerExpansion added in v0.6.0

type ConditionNamespaceListerExpansion interface{}

ConditionNamespaceListerExpansion allows custom methods to be added to ConditionNamespaceLister.

type PipelineLister

type PipelineLister interface {
	// List lists all Pipelines in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Pipeline, err error)
	// Pipelines returns an object that can list and get Pipelines.
	Pipelines(namespace string) PipelineNamespaceLister
	PipelineListerExpansion
}

PipelineLister helps list Pipelines.

func NewPipelineLister

func NewPipelineLister(indexer cache.Indexer) PipelineLister

NewPipelineLister returns a new PipelineLister.

type PipelineListerExpansion

type PipelineListerExpansion interface{}

PipelineListerExpansion allows custom methods to be added to PipelineLister.

type PipelineNamespaceLister

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

PipelineNamespaceLister helps list and get Pipelines.

type PipelineNamespaceListerExpansion

type PipelineNamespaceListerExpansion interface{}

PipelineNamespaceListerExpansion allows custom methods to be added to PipelineNamespaceLister.

type PipelineResourceLister

type PipelineResourceLister interface {
	// List lists all PipelineResources in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.PipelineResource, err error)
	// PipelineResources returns an object that can list and get PipelineResources.
	PipelineResources(namespace string) PipelineResourceNamespaceLister
	PipelineResourceListerExpansion
}

PipelineResourceLister helps list PipelineResources.

func NewPipelineResourceLister

func NewPipelineResourceLister(indexer cache.Indexer) PipelineResourceLister

NewPipelineResourceLister returns a new PipelineResourceLister.

type PipelineResourceListerExpansion

type PipelineResourceListerExpansion interface{}

PipelineResourceListerExpansion allows custom methods to be added to PipelineResourceLister.

type PipelineResourceNamespaceLister

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

PipelineResourceNamespaceLister helps list and get PipelineResources.

type PipelineResourceNamespaceListerExpansion

type PipelineResourceNamespaceListerExpansion interface{}

PipelineResourceNamespaceListerExpansion allows custom methods to be added to PipelineResourceNamespaceLister.

type PipelineRunLister

type PipelineRunLister interface {
	// List lists all PipelineRuns in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.PipelineRun, err error)
	// PipelineRuns returns an object that can list and get PipelineRuns.
	PipelineRuns(namespace string) PipelineRunNamespaceLister
	PipelineRunListerExpansion
}

PipelineRunLister helps list PipelineRuns.

func NewPipelineRunLister

func NewPipelineRunLister(indexer cache.Indexer) PipelineRunLister

NewPipelineRunLister returns a new PipelineRunLister.

type PipelineRunListerExpansion

type PipelineRunListerExpansion interface{}

PipelineRunListerExpansion allows custom methods to be added to PipelineRunLister.

type PipelineRunNamespaceLister

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

PipelineRunNamespaceLister helps list and get PipelineRuns.

type PipelineRunNamespaceListerExpansion

type PipelineRunNamespaceListerExpansion interface{}

PipelineRunNamespaceListerExpansion allows custom methods to be added to PipelineRunNamespaceLister.

type TaskLister

type TaskLister interface {
	// List lists all Tasks in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.Task, err error)
	// Tasks returns an object that can list and get Tasks.
	Tasks(namespace string) TaskNamespaceLister
	TaskListerExpansion
}

TaskLister helps list Tasks.

func NewTaskLister

func NewTaskLister(indexer cache.Indexer) TaskLister

NewTaskLister returns a new TaskLister.

type TaskListerExpansion

type TaskListerExpansion interface{}

TaskListerExpansion allows custom methods to be added to TaskLister.

type TaskNamespaceLister

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

TaskNamespaceLister helps list and get Tasks.

type TaskNamespaceListerExpansion

type TaskNamespaceListerExpansion interface{}

TaskNamespaceListerExpansion allows custom methods to be added to TaskNamespaceLister.

type TaskRunLister

type TaskRunLister interface {
	// List lists all TaskRuns in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.TaskRun, err error)
	// TaskRuns returns an object that can list and get TaskRuns.
	TaskRuns(namespace string) TaskRunNamespaceLister
	TaskRunListerExpansion
}

TaskRunLister helps list TaskRuns.

func NewTaskRunLister

func NewTaskRunLister(indexer cache.Indexer) TaskRunLister

NewTaskRunLister returns a new TaskRunLister.

type TaskRunListerExpansion

type TaskRunListerExpansion interface{}

TaskRunListerExpansion allows custom methods to be added to TaskRunLister.

type TaskRunNamespaceLister

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

TaskRunNamespaceLister helps list and get TaskRuns.

type TaskRunNamespaceListerExpansion

type TaskRunNamespaceListerExpansion interface{}

TaskRunNamespaceListerExpansion allows custom methods to be added to TaskRunNamespaceLister.

Jump to

Keyboard shortcuts

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