Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IntegrationLister ¶
type IntegrationLister interface { // List lists all Integrations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v2alpha1.Integration, err error) // Integrations returns an object that can list and get Integrations. Integrations(namespace string) IntegrationNamespaceLister IntegrationListerExpansion }
IntegrationLister helps list Integrations. All objects returned here must be treated as read-only.
func NewIntegrationLister ¶
func NewIntegrationLister(indexer cache.Indexer) IntegrationLister
NewIntegrationLister returns a new IntegrationLister.
type IntegrationListerExpansion ¶
type IntegrationListerExpansion interface{}
IntegrationListerExpansion allows custom methods to be added to IntegrationLister.
type IntegrationNamespaceLister ¶
type IntegrationNamespaceLister interface { // List lists all Integrations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v2alpha1.Integration, err error) // Get retrieves the Integration from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v2alpha1.Integration, error) IntegrationNamespaceListerExpansion }
IntegrationNamespaceLister helps list and get Integrations. All objects returned here must be treated as read-only.
type IntegrationNamespaceListerExpansion ¶
type IntegrationNamespaceListerExpansion interface{}
IntegrationNamespaceListerExpansion allows custom methods to be added to IntegrationNamespaceLister.
Click to show internal directories.
Click to hide internal directories.