Documentation ¶
Index ¶
- type ApplicationDefinitionLister
- type ApplicationDefinitionListerExpansion
- type ApplicationDefinitionNamespaceLister
- type ApplicationDefinitionNamespaceListerExpansion
- type ApplicationInstallationLister
- type ApplicationInstallationListerExpansion
- type ApplicationInstallationNamespaceLister
- type ApplicationInstallationNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationDefinitionLister ¶
type ApplicationDefinitionLister interface { // List lists all ApplicationDefinitions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ApplicationDefinition, err error) // ApplicationDefinitions returns an object that can list and get ApplicationDefinitions. ApplicationDefinitions(namespace string) ApplicationDefinitionNamespaceLister ApplicationDefinitionListerExpansion }
ApplicationDefinitionLister helps list ApplicationDefinitions. All objects returned here must be treated as read-only.
func NewApplicationDefinitionLister ¶
func NewApplicationDefinitionLister(indexer cache.Indexer) ApplicationDefinitionLister
NewApplicationDefinitionLister returns a new ApplicationDefinitionLister.
type ApplicationDefinitionListerExpansion ¶
type ApplicationDefinitionListerExpansion interface{}
ApplicationDefinitionListerExpansion allows custom methods to be added to ApplicationDefinitionLister.
type ApplicationDefinitionNamespaceLister ¶
type ApplicationDefinitionNamespaceLister interface { // List lists all ApplicationDefinitions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ApplicationDefinition, err error) // Get retrieves the ApplicationDefinition from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ApplicationDefinition, error) ApplicationDefinitionNamespaceListerExpansion }
ApplicationDefinitionNamespaceLister helps list and get ApplicationDefinitions. All objects returned here must be treated as read-only.
type ApplicationDefinitionNamespaceListerExpansion ¶
type ApplicationDefinitionNamespaceListerExpansion interface{}
ApplicationDefinitionNamespaceListerExpansion allows custom methods to be added to ApplicationDefinitionNamespaceLister.
type ApplicationInstallationLister ¶
type ApplicationInstallationLister interface { // List lists all ApplicationInstallations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ApplicationInstallation, err error) // ApplicationInstallations returns an object that can list and get ApplicationInstallations. ApplicationInstallations(namespace string) ApplicationInstallationNamespaceLister ApplicationInstallationListerExpansion }
ApplicationInstallationLister helps list ApplicationInstallations. All objects returned here must be treated as read-only.
func NewApplicationInstallationLister ¶
func NewApplicationInstallationLister(indexer cache.Indexer) ApplicationInstallationLister
NewApplicationInstallationLister returns a new ApplicationInstallationLister.
type ApplicationInstallationListerExpansion ¶
type ApplicationInstallationListerExpansion interface{}
ApplicationInstallationListerExpansion allows custom methods to be added to ApplicationInstallationLister.
type ApplicationInstallationNamespaceLister ¶
type ApplicationInstallationNamespaceLister interface { // List lists all ApplicationInstallations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ApplicationInstallation, err error) // Get retrieves the ApplicationInstallation from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ApplicationInstallation, error) ApplicationInstallationNamespaceListerExpansion }
ApplicationInstallationNamespaceLister helps list and get ApplicationInstallations. All objects returned here must be treated as read-only.
type ApplicationInstallationNamespaceListerExpansion ¶
type ApplicationInstallationNamespaceListerExpansion interface{}
ApplicationInstallationNamespaceListerExpansion allows custom methods to be added to ApplicationInstallationNamespaceLister.