Documentation ¶
Index ¶
- type BaseLister
- type BaseListerExpansion
- type BaseNamespaceLister
- type BaseNamespaceListerExpansion
- type DescriptionLister
- type DescriptionListerExpansion
- type DescriptionNamespaceLister
- type DescriptionNamespaceListerExpansion
- type FeedInventoryLister
- type FeedInventoryListerExpansion
- type FeedInventoryNamespaceLister
- type FeedInventoryNamespaceListerExpansion
- type GlobalizationLister
- type GlobalizationListerExpansion
- type HelmChartLister
- type HelmChartListerExpansion
- type HelmChartNamespaceLister
- type HelmChartNamespaceListerExpansion
- type HelmReleaseLister
- type HelmReleaseListerExpansion
- type HelmReleaseNamespaceLister
- type HelmReleaseNamespaceListerExpansion
- type LocalizationLister
- type LocalizationListerExpansion
- type LocalizationNamespaceLister
- type LocalizationNamespaceListerExpansion
- type ManifestLister
- type ManifestListerExpansion
- type ManifestNamespaceLister
- type ManifestNamespaceListerExpansion
- type SubscriptionLister
- type SubscriptionListerExpansion
- type SubscriptionNamespaceLister
- type SubscriptionNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BaseLister ¶ added in v0.3.0
type BaseLister interface { // List lists all Bases in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Base, err error) // Bases returns an object that can list and get Bases. Bases(namespace string) BaseNamespaceLister BaseListerExpansion }
BaseLister helps list Bases. All objects returned here must be treated as read-only.
func NewBaseLister ¶ added in v0.3.0
func NewBaseLister(indexer cache.Indexer) BaseLister
NewBaseLister returns a new BaseLister.
type BaseListerExpansion ¶ added in v0.3.0
type BaseListerExpansion interface{}
BaseListerExpansion allows custom methods to be added to BaseLister.
type BaseNamespaceLister ¶ added in v0.3.0
type BaseNamespaceLister interface { // List lists all Bases in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Base, err error) // Get retrieves the Base from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Base, error) BaseNamespaceListerExpansion }
BaseNamespaceLister helps list and get Bases. All objects returned here must be treated as read-only.
type BaseNamespaceListerExpansion ¶ added in v0.3.0
type BaseNamespaceListerExpansion interface{}
BaseNamespaceListerExpansion allows custom methods to be added to BaseNamespaceLister.
type DescriptionLister ¶
type DescriptionLister interface { // List lists all Descriptions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Description, err error) // Descriptions returns an object that can list and get Descriptions. Descriptions(namespace string) DescriptionNamespaceLister DescriptionListerExpansion }
DescriptionLister helps list Descriptions. All objects returned here must be treated as read-only.
func NewDescriptionLister ¶
func NewDescriptionLister(indexer cache.Indexer) DescriptionLister
NewDescriptionLister returns a new DescriptionLister.
type DescriptionListerExpansion ¶
type DescriptionListerExpansion interface{}
DescriptionListerExpansion allows custom methods to be added to DescriptionLister.
type DescriptionNamespaceLister ¶
type DescriptionNamespaceLister interface { // List lists all Descriptions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Description, err error) // Get retrieves the Description from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Description, error) DescriptionNamespaceListerExpansion }
DescriptionNamespaceLister helps list and get Descriptions. All objects returned here must be treated as read-only.
type DescriptionNamespaceListerExpansion ¶
type DescriptionNamespaceListerExpansion interface{}
DescriptionNamespaceListerExpansion allows custom methods to be added to DescriptionNamespaceLister.
type FeedInventoryLister ¶ added in v0.9.0
type FeedInventoryLister interface { // List lists all FeedInventories in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.FeedInventory, err error) // FeedInventories returns an object that can list and get FeedInventories. FeedInventories(namespace string) FeedInventoryNamespaceLister FeedInventoryListerExpansion }
FeedInventoryLister helps list FeedInventories. All objects returned here must be treated as read-only.
func NewFeedInventoryLister ¶ added in v0.9.0
func NewFeedInventoryLister(indexer cache.Indexer) FeedInventoryLister
NewFeedInventoryLister returns a new FeedInventoryLister.
type FeedInventoryListerExpansion ¶ added in v0.9.0
type FeedInventoryListerExpansion interface{}
FeedInventoryListerExpansion allows custom methods to be added to FeedInventoryLister.
type FeedInventoryNamespaceLister ¶ added in v0.9.0
type FeedInventoryNamespaceLister interface { // List lists all FeedInventories in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.FeedInventory, err error) // Get retrieves the FeedInventory from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.FeedInventory, error) FeedInventoryNamespaceListerExpansion }
FeedInventoryNamespaceLister helps list and get FeedInventories. All objects returned here must be treated as read-only.
type FeedInventoryNamespaceListerExpansion ¶ added in v0.9.0
type FeedInventoryNamespaceListerExpansion interface{}
FeedInventoryNamespaceListerExpansion allows custom methods to be added to FeedInventoryNamespaceLister.
type GlobalizationLister ¶ added in v0.3.0
type GlobalizationLister interface { // List lists all Globalizations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Globalization, err error) // Get retrieves the Globalization from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Globalization, error) GlobalizationListerExpansion }
GlobalizationLister helps list Globalizations. All objects returned here must be treated as read-only.
func NewGlobalizationLister ¶ added in v0.3.0
func NewGlobalizationLister(indexer cache.Indexer) GlobalizationLister
NewGlobalizationLister returns a new GlobalizationLister.
type GlobalizationListerExpansion ¶ added in v0.3.0
type GlobalizationListerExpansion interface{}
GlobalizationListerExpansion allows custom methods to be added to GlobalizationLister.
type HelmChartLister ¶
type HelmChartLister interface { // List lists all HelmCharts in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.HelmChart, err error) // HelmCharts returns an object that can list and get HelmCharts. HelmCharts(namespace string) HelmChartNamespaceLister HelmChartListerExpansion }
HelmChartLister helps list HelmCharts. All objects returned here must be treated as read-only.
func NewHelmChartLister ¶
func NewHelmChartLister(indexer cache.Indexer) HelmChartLister
NewHelmChartLister returns a new HelmChartLister.
type HelmChartListerExpansion ¶
type HelmChartListerExpansion interface{}
HelmChartListerExpansion allows custom methods to be added to HelmChartLister.
type HelmChartNamespaceLister ¶
type HelmChartNamespaceLister interface { // List lists all HelmCharts in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.HelmChart, err error) // Get retrieves the HelmChart from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.HelmChart, error) HelmChartNamespaceListerExpansion }
HelmChartNamespaceLister helps list and get HelmCharts. All objects returned here must be treated as read-only.
type HelmChartNamespaceListerExpansion ¶
type HelmChartNamespaceListerExpansion interface{}
HelmChartNamespaceListerExpansion allows custom methods to be added to HelmChartNamespaceLister.
type HelmReleaseLister ¶
type HelmReleaseLister interface { // List lists all HelmReleases in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.HelmRelease, err error) // HelmReleases returns an object that can list and get HelmReleases. HelmReleases(namespace string) HelmReleaseNamespaceLister HelmReleaseListerExpansion }
HelmReleaseLister helps list HelmReleases. All objects returned here must be treated as read-only.
func NewHelmReleaseLister ¶
func NewHelmReleaseLister(indexer cache.Indexer) HelmReleaseLister
NewHelmReleaseLister returns a new HelmReleaseLister.
type HelmReleaseListerExpansion ¶
type HelmReleaseListerExpansion interface{}
HelmReleaseListerExpansion allows custom methods to be added to HelmReleaseLister.
type HelmReleaseNamespaceLister ¶
type HelmReleaseNamespaceLister interface { // List lists all HelmReleases in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.HelmRelease, err error) // Get retrieves the HelmRelease from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.HelmRelease, error) HelmReleaseNamespaceListerExpansion }
HelmReleaseNamespaceLister helps list and get HelmReleases. All objects returned here must be treated as read-only.
type HelmReleaseNamespaceListerExpansion ¶
type HelmReleaseNamespaceListerExpansion interface{}
HelmReleaseNamespaceListerExpansion allows custom methods to be added to HelmReleaseNamespaceLister.
type LocalizationLister ¶ added in v0.3.0
type LocalizationLister interface { // List lists all Localizations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Localization, err error) // Localizations returns an object that can list and get Localizations. Localizations(namespace string) LocalizationNamespaceLister LocalizationListerExpansion }
LocalizationLister helps list Localizations. All objects returned here must be treated as read-only.
func NewLocalizationLister ¶ added in v0.3.0
func NewLocalizationLister(indexer cache.Indexer) LocalizationLister
NewLocalizationLister returns a new LocalizationLister.
type LocalizationListerExpansion ¶ added in v0.3.0
type LocalizationListerExpansion interface{}
LocalizationListerExpansion allows custom methods to be added to LocalizationLister.
type LocalizationNamespaceLister ¶ added in v0.3.0
type LocalizationNamespaceLister interface { // List lists all Localizations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Localization, err error) // Get retrieves the Localization from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Localization, error) LocalizationNamespaceListerExpansion }
LocalizationNamespaceLister helps list and get Localizations. All objects returned here must be treated as read-only.
type LocalizationNamespaceListerExpansion ¶ added in v0.3.0
type LocalizationNamespaceListerExpansion interface{}
LocalizationNamespaceListerExpansion allows custom methods to be added to LocalizationNamespaceLister.
type ManifestLister ¶ added in v0.3.0
type ManifestLister interface { // List lists all Manifests in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Manifest, err error) // Manifests returns an object that can list and get Manifests. Manifests(namespace string) ManifestNamespaceLister ManifestListerExpansion }
ManifestLister helps list Manifests. All objects returned here must be treated as read-only.
func NewManifestLister ¶ added in v0.3.0
func NewManifestLister(indexer cache.Indexer) ManifestLister
NewManifestLister returns a new ManifestLister.
type ManifestListerExpansion ¶ added in v0.3.0
type ManifestListerExpansion interface{}
ManifestListerExpansion allows custom methods to be added to ManifestLister.
type ManifestNamespaceLister ¶ added in v0.3.0
type ManifestNamespaceLister interface { // List lists all Manifests in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Manifest, err error) // Get retrieves the Manifest from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Manifest, error) ManifestNamespaceListerExpansion }
ManifestNamespaceLister helps list and get Manifests. All objects returned here must be treated as read-only.
type ManifestNamespaceListerExpansion ¶ added in v0.3.0
type ManifestNamespaceListerExpansion interface{}
ManifestNamespaceListerExpansion allows custom methods to be added to ManifestNamespaceLister.
type SubscriptionLister ¶
type SubscriptionLister interface { // List lists all Subscriptions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Subscription, err error) // Subscriptions returns an object that can list and get Subscriptions. Subscriptions(namespace string) SubscriptionNamespaceLister SubscriptionListerExpansion }
SubscriptionLister helps list Subscriptions. All objects returned here must be treated as read-only.
func NewSubscriptionLister ¶
func NewSubscriptionLister(indexer cache.Indexer) SubscriptionLister
NewSubscriptionLister returns a new SubscriptionLister.
type SubscriptionListerExpansion ¶
type SubscriptionListerExpansion interface{}
SubscriptionListerExpansion allows custom methods to be added to SubscriptionLister.
type SubscriptionNamespaceLister ¶
type SubscriptionNamespaceLister interface { // List lists all Subscriptions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Subscription, err error) // Get retrieves the Subscription from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Subscription, error) SubscriptionNamespaceListerExpansion }
SubscriptionNamespaceLister helps list and get Subscriptions. All objects returned here must be treated as read-only.
type SubscriptionNamespaceListerExpansion ¶
type SubscriptionNamespaceListerExpansion interface{}
SubscriptionNamespaceListerExpansion allows custom methods to be added to SubscriptionNamespaceLister.