Documentation ¶
Index ¶
- type AnalyticsLister
- type AnalyticsListerExpansion
- type AnalyticsNamespaceLister
- type AnalyticsNamespaceListerExpansion
- type ConfigSetLister
- type ConfigSetListerExpansion
- type ConfigSetNamespaceLister
- type ConfigSetNamespaceListerExpansion
- type RecommendationLister
- type RecommendationListerExpansion
- type RecommendationNamespaceLister
- type RecommendationNamespaceListerExpansion
- type RecommendationRuleLister
- type RecommendationRuleListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AnalyticsLister ¶
type AnalyticsLister interface { // List lists all Analytics in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Analytics, err error) // Analytics returns an object that can list and get Analytics. Analytics(namespace string) AnalyticsNamespaceLister AnalyticsListerExpansion }
AnalyticsLister helps list Analytics. All objects returned here must be treated as read-only.
func NewAnalyticsLister ¶
func NewAnalyticsLister(indexer cache.Indexer) AnalyticsLister
NewAnalyticsLister returns a new AnalyticsLister.
type AnalyticsListerExpansion ¶
type AnalyticsListerExpansion interface{}
AnalyticsListerExpansion allows custom methods to be added to AnalyticsLister.
type AnalyticsNamespaceLister ¶
type AnalyticsNamespaceLister interface { // List lists all Analytics in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Analytics, err error) // Get retrieves the Analytics from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Analytics, error) AnalyticsNamespaceListerExpansion }
AnalyticsNamespaceLister helps list and get Analytics. All objects returned here must be treated as read-only.
type AnalyticsNamespaceListerExpansion ¶
type AnalyticsNamespaceListerExpansion interface{}
AnalyticsNamespaceListerExpansion allows custom methods to be added to AnalyticsNamespaceLister.
type ConfigSetLister ¶
type ConfigSetLister interface { // List lists all ConfigSets in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConfigSet, err error) // ConfigSets returns an object that can list and get ConfigSets. ConfigSets(namespace string) ConfigSetNamespaceLister ConfigSetListerExpansion }
ConfigSetLister helps list ConfigSets. All objects returned here must be treated as read-only.
func NewConfigSetLister ¶
func NewConfigSetLister(indexer cache.Indexer) ConfigSetLister
NewConfigSetLister returns a new ConfigSetLister.
type ConfigSetListerExpansion ¶
type ConfigSetListerExpansion interface{}
ConfigSetListerExpansion allows custom methods to be added to ConfigSetLister.
type ConfigSetNamespaceLister ¶
type ConfigSetNamespaceLister interface { // List lists all ConfigSets in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConfigSet, err error) // Get retrieves the ConfigSet from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ConfigSet, error) ConfigSetNamespaceListerExpansion }
ConfigSetNamespaceLister helps list and get ConfigSets. All objects returned here must be treated as read-only.
type ConfigSetNamespaceListerExpansion ¶
type ConfigSetNamespaceListerExpansion interface{}
ConfigSetNamespaceListerExpansion allows custom methods to be added to ConfigSetNamespaceLister.
type RecommendationLister ¶
type RecommendationLister interface { // List lists all Recommendations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Recommendation, err error) // Recommendations returns an object that can list and get Recommendations. Recommendations(namespace string) RecommendationNamespaceLister RecommendationListerExpansion }
RecommendationLister helps list Recommendations. All objects returned here must be treated as read-only.
func NewRecommendationLister ¶
func NewRecommendationLister(indexer cache.Indexer) RecommendationLister
NewRecommendationLister returns a new RecommendationLister.
type RecommendationListerExpansion ¶
type RecommendationListerExpansion interface{}
RecommendationListerExpansion allows custom methods to be added to RecommendationLister.
type RecommendationNamespaceLister ¶
type RecommendationNamespaceLister interface { // List lists all Recommendations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Recommendation, err error) // Get retrieves the Recommendation from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Recommendation, error) RecommendationNamespaceListerExpansion }
RecommendationNamespaceLister helps list and get Recommendations. All objects returned here must be treated as read-only.
type RecommendationNamespaceListerExpansion ¶
type RecommendationNamespaceListerExpansion interface{}
RecommendationNamespaceListerExpansion allows custom methods to be added to RecommendationNamespaceLister.
type RecommendationRuleLister ¶ added in v0.7.0
type RecommendationRuleLister interface { // List lists all RecommendationRules in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RecommendationRule, err error) // Get retrieves the RecommendationRule from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.RecommendationRule, error) RecommendationRuleListerExpansion }
RecommendationRuleLister helps list RecommendationRules. All objects returned here must be treated as read-only.
func NewRecommendationRuleLister ¶ added in v0.7.0
func NewRecommendationRuleLister(indexer cache.Indexer) RecommendationRuleLister
NewRecommendationRuleLister returns a new RecommendationRuleLister.
type RecommendationRuleListerExpansion ¶ added in v0.7.0
type RecommendationRuleListerExpansion interface{}
RecommendationRuleListerExpansion allows custom methods to be added to RecommendationRuleLister.