Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppProjectLister ¶ added in v0.6.0
type AppProjectLister interface { // List lists all AppProjects in the indexer. List(selector labels.Selector) (ret []*v1alpha1.AppProject, err error) // AppProjects returns an object that can list and get AppProjects. AppProjects(namespace string) AppProjectNamespaceLister AppProjectListerExpansion }
AppProjectLister helps list AppProjects.
func NewAppProjectLister ¶ added in v0.6.0
func NewAppProjectLister(indexer cache.Indexer) AppProjectLister
NewAppProjectLister returns a new AppProjectLister.
type AppProjectListerExpansion ¶ added in v0.6.0
type AppProjectListerExpansion interface{}
AppProjectListerExpansion allows custom methods to be added to AppProjectLister.
type AppProjectNamespaceLister ¶ added in v0.6.0
type AppProjectNamespaceLister interface { // List lists all AppProjects in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.AppProject, err error) // Get retrieves the AppProject from the indexer for a given namespace and name. Get(name string) (*v1alpha1.AppProject, error) AppProjectNamespaceListerExpansion }
AppProjectNamespaceLister helps list and get AppProjects.
type AppProjectNamespaceListerExpansion ¶ added in v0.6.0
type AppProjectNamespaceListerExpansion interface{}
AppProjectNamespaceListerExpansion allows custom methods to be added to AppProjectNamespaceLister.
type ApplicationLister ¶
type ApplicationLister interface { // List lists all Applications in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Application, err error) // Applications returns an object that can list and get Applications. Applications(namespace string) ApplicationNamespaceLister ApplicationListerExpansion }
ApplicationLister helps list Applications.
func NewApplicationLister ¶
func NewApplicationLister(indexer cache.Indexer) ApplicationLister
NewApplicationLister returns a new ApplicationLister.
type ApplicationListerExpansion ¶
type ApplicationListerExpansion interface{}
ApplicationListerExpansion allows custom methods to be added to ApplicationLister.
type ApplicationNamespaceLister ¶
type ApplicationNamespaceLister interface { // List lists all Applications in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Application, err error) // Get retrieves the Application from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Application, error) ApplicationNamespaceListerExpansion }
ApplicationNamespaceLister helps list and get Applications.
type ApplicationNamespaceListerExpansion ¶
type ApplicationNamespaceListerExpansion interface{}
ApplicationNamespaceListerExpansion allows custom methods to be added to ApplicationNamespaceLister.