Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DevOpsProjectLister ¶
type DevOpsProjectLister interface { // List lists all DevOpsProjects in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha3.DevOpsProject, err error) // Get retrieves the DevOpsProject from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha3.DevOpsProject, error) DevOpsProjectListerExpansion }
DevOpsProjectLister helps list DevOpsProjects. All objects returned here must be treated as read-only.
func NewDevOpsProjectLister ¶
func NewDevOpsProjectLister(indexer cache.Indexer) DevOpsProjectLister
NewDevOpsProjectLister returns a new DevOpsProjectLister.
type DevOpsProjectListerExpansion ¶
type DevOpsProjectListerExpansion interface{}
DevOpsProjectListerExpansion allows custom methods to be added to DevOpsProjectLister.
type PipelineLister ¶
type PipelineLister interface { // List lists all Pipelines in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha3.Pipeline, err error) // Pipelines returns an object that can list and get Pipelines. Pipelines(namespace string) PipelineNamespaceLister PipelineListerExpansion }
PipelineLister helps list Pipelines. All objects returned here must be treated as read-only.
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. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha3.Pipeline, err error) // Get retrieves the Pipeline from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha3.Pipeline, error) PipelineNamespaceListerExpansion }
PipelineNamespaceLister helps list and get Pipelines. All objects returned here must be treated as read-only.
type PipelineNamespaceListerExpansion ¶
type PipelineNamespaceListerExpansion interface{}
PipelineNamespaceListerExpansion allows custom methods to be added to PipelineNamespaceLister.