Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationLister ¶
type ApplicationLister interface { // List lists all Applications in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Application, err error) // Applications returns an object that can list and get Applications. Applications(namespace string) ApplicationNamespaceLister ApplicationListerExpansion }
ApplicationLister helps list Applications. All objects returned here must be treated as read-only.
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. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Application, err error) // Get retrieves the Application from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Application, error) ApplicationNamespaceListerExpansion }
ApplicationNamespaceLister helps list and get Applications. All objects returned here must be treated as read-only.
type ApplicationNamespaceListerExpansion ¶
type ApplicationNamespaceListerExpansion interface{}
ApplicationNamespaceListerExpansion allows custom methods to be added to ApplicationNamespaceLister.
type ApplicationStatusLister ¶
type ApplicationStatusLister interface { // List lists all ApplicationStatuses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ApplicationStatus, err error) // ApplicationStatuses returns an object that can list and get ApplicationStatuses. ApplicationStatuses(namespace string) ApplicationStatusNamespaceLister ApplicationStatusListerExpansion }
ApplicationStatusLister helps list ApplicationStatuses. All objects returned here must be treated as read-only.
func NewApplicationStatusLister ¶
func NewApplicationStatusLister(indexer cache.Indexer) ApplicationStatusLister
NewApplicationStatusLister returns a new ApplicationStatusLister.
type ApplicationStatusListerExpansion ¶
type ApplicationStatusListerExpansion interface{}
ApplicationStatusListerExpansion allows custom methods to be added to ApplicationStatusLister.
type ApplicationStatusNamespaceLister ¶
type ApplicationStatusNamespaceLister interface { // List lists all ApplicationStatuses in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ApplicationStatus, err error) // Get retrieves the ApplicationStatus from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ApplicationStatus, error) ApplicationStatusNamespaceListerExpansion }
ApplicationStatusNamespaceLister helps list and get ApplicationStatuses. All objects returned here must be treated as read-only.
type ApplicationStatusNamespaceListerExpansion ¶
type ApplicationStatusNamespaceListerExpansion interface{}
ApplicationStatusNamespaceListerExpansion allows custom methods to be added to ApplicationStatusNamespaceLister.