Documentation
¶
Index ¶
- type BuildLister
- type BuildListerExpansion
- type BuildNamespaceLister
- type BuildNamespaceListerExpansion
- type BuildRunLister
- type BuildRunListerExpansion
- type BuildRunNamespaceLister
- type BuildRunNamespaceListerExpansion
- type BuildStrategyLister
- type BuildStrategyListerExpansion
- type BuildStrategyNamespaceLister
- type BuildStrategyNamespaceListerExpansion
- type ClusterBuildStrategyLister
- type ClusterBuildStrategyListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuildLister ¶
type BuildLister interface { // List lists all Builds in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Build, err error) // Builds returns an object that can list and get Builds. Builds(namespace string) BuildNamespaceLister BuildListerExpansion }
BuildLister helps list Builds. All objects returned here must be treated as read-only.
func NewBuildLister ¶
func NewBuildLister(indexer cache.Indexer) BuildLister
NewBuildLister returns a new BuildLister.
type BuildListerExpansion ¶
type BuildListerExpansion interface{}
BuildListerExpansion allows custom methods to be added to BuildLister.
type BuildNamespaceLister ¶
type BuildNamespaceLister interface { // List lists all Builds in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Build, err error) // Get retrieves the Build from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Build, error) BuildNamespaceListerExpansion }
BuildNamespaceLister helps list and get Builds. All objects returned here must be treated as read-only.
type BuildNamespaceListerExpansion ¶
type BuildNamespaceListerExpansion interface{}
BuildNamespaceListerExpansion allows custom methods to be added to BuildNamespaceLister.
type BuildRunLister ¶
type BuildRunLister interface { // List lists all BuildRuns in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BuildRun, err error) // BuildRuns returns an object that can list and get BuildRuns. BuildRuns(namespace string) BuildRunNamespaceLister BuildRunListerExpansion }
BuildRunLister helps list BuildRuns. All objects returned here must be treated as read-only.
func NewBuildRunLister ¶
func NewBuildRunLister(indexer cache.Indexer) BuildRunLister
NewBuildRunLister returns a new BuildRunLister.
type BuildRunListerExpansion ¶
type BuildRunListerExpansion interface{}
BuildRunListerExpansion allows custom methods to be added to BuildRunLister.
type BuildRunNamespaceLister ¶
type BuildRunNamespaceLister interface { // List lists all BuildRuns in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BuildRun, err error) // Get retrieves the BuildRun from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.BuildRun, error) BuildRunNamespaceListerExpansion }
BuildRunNamespaceLister helps list and get BuildRuns. All objects returned here must be treated as read-only.
type BuildRunNamespaceListerExpansion ¶
type BuildRunNamespaceListerExpansion interface{}
BuildRunNamespaceListerExpansion allows custom methods to be added to BuildRunNamespaceLister.
type BuildStrategyLister ¶
type BuildStrategyLister interface { // List lists all BuildStrategies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BuildStrategy, err error) // BuildStrategies returns an object that can list and get BuildStrategies. BuildStrategies(namespace string) BuildStrategyNamespaceLister BuildStrategyListerExpansion }
BuildStrategyLister helps list BuildStrategies. All objects returned here must be treated as read-only.
func NewBuildStrategyLister ¶
func NewBuildStrategyLister(indexer cache.Indexer) BuildStrategyLister
NewBuildStrategyLister returns a new BuildStrategyLister.
type BuildStrategyListerExpansion ¶
type BuildStrategyListerExpansion interface{}
BuildStrategyListerExpansion allows custom methods to be added to BuildStrategyLister.
type BuildStrategyNamespaceLister ¶
type BuildStrategyNamespaceLister interface { // List lists all BuildStrategies in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BuildStrategy, err error) // Get retrieves the BuildStrategy from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.BuildStrategy, error) BuildStrategyNamespaceListerExpansion }
BuildStrategyNamespaceLister helps list and get BuildStrategies. All objects returned here must be treated as read-only.
type BuildStrategyNamespaceListerExpansion ¶
type BuildStrategyNamespaceListerExpansion interface{}
BuildStrategyNamespaceListerExpansion allows custom methods to be added to BuildStrategyNamespaceLister.
type ClusterBuildStrategyLister ¶
type ClusterBuildStrategyLister interface { // List lists all ClusterBuildStrategies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ClusterBuildStrategy, err error) // Get retrieves the ClusterBuildStrategy from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ClusterBuildStrategy, error) ClusterBuildStrategyListerExpansion }
ClusterBuildStrategyLister helps list ClusterBuildStrategies. All objects returned here must be treated as read-only.
func NewClusterBuildStrategyLister ¶
func NewClusterBuildStrategyLister(indexer cache.Indexer) ClusterBuildStrategyLister
NewClusterBuildStrategyLister returns a new ClusterBuildStrategyLister.
type ClusterBuildStrategyListerExpansion ¶
type ClusterBuildStrategyListerExpansion interface{}
ClusterBuildStrategyListerExpansion allows custom methods to be added to ClusterBuildStrategyLister.