Documentation ¶
Index ¶
- type BuildLister
- type BuildListerExpansion
- type BuildNamespaceLister
- type BuildNamespaceListerExpansion
- type BuildTemplateLister
- type BuildTemplateListerExpansion
- type BuildTemplateNamespaceLister
- type BuildTemplateNamespaceListerExpansion
- type ClusterBuildTemplateLister
- type ClusterBuildTemplateListerExpansion
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. 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.
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. List(selector labels.Selector) (ret []*v1alpha1.Build, err error) // Get retrieves the Build from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Build, error) BuildNamespaceListerExpansion }
BuildNamespaceLister helps list and get Builds.
type BuildNamespaceListerExpansion ¶
type BuildNamespaceListerExpansion interface{}
BuildNamespaceListerExpansion allows custom methods to be added to BuildNamespaceLister.
type BuildTemplateLister ¶
type BuildTemplateLister interface { // List lists all BuildTemplates in the indexer. List(selector labels.Selector) (ret []*v1alpha1.BuildTemplate, err error) // BuildTemplates returns an object that can list and get BuildTemplates. BuildTemplates(namespace string) BuildTemplateNamespaceLister BuildTemplateListerExpansion }
BuildTemplateLister helps list BuildTemplates.
func NewBuildTemplateLister ¶
func NewBuildTemplateLister(indexer cache.Indexer) BuildTemplateLister
NewBuildTemplateLister returns a new BuildTemplateLister.
type BuildTemplateListerExpansion ¶
type BuildTemplateListerExpansion interface{}
BuildTemplateListerExpansion allows custom methods to be added to BuildTemplateLister.
type BuildTemplateNamespaceLister ¶
type BuildTemplateNamespaceLister interface { // List lists all BuildTemplates in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.BuildTemplate, err error) // Get retrieves the BuildTemplate from the indexer for a given namespace and name. Get(name string) (*v1alpha1.BuildTemplate, error) BuildTemplateNamespaceListerExpansion }
BuildTemplateNamespaceLister helps list and get BuildTemplates.
type BuildTemplateNamespaceListerExpansion ¶
type BuildTemplateNamespaceListerExpansion interface{}
BuildTemplateNamespaceListerExpansion allows custom methods to be added to BuildTemplateNamespaceLister.
type ClusterBuildTemplateLister ¶ added in v0.2.0
type ClusterBuildTemplateLister interface { // List lists all ClusterBuildTemplates in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ClusterBuildTemplate, err error) // Get retrieves the ClusterBuildTemplate from the index for a given name. Get(name string) (*v1alpha1.ClusterBuildTemplate, error) ClusterBuildTemplateListerExpansion }
ClusterBuildTemplateLister helps list ClusterBuildTemplates.
func NewClusterBuildTemplateLister ¶ added in v0.2.0
func NewClusterBuildTemplateLister(indexer cache.Indexer) ClusterBuildTemplateLister
NewClusterBuildTemplateLister returns a new ClusterBuildTemplateLister.
type ClusterBuildTemplateListerExpansion ¶ added in v0.2.0
type ClusterBuildTemplateListerExpansion interface{}
ClusterBuildTemplateListerExpansion allows custom methods to be added to ClusterBuildTemplateLister.