Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomMetricLister ¶
type CustomMetricLister interface {
// List lists all CustomMetrics in the indexer.
List(selector labels.Selector) (ret []*v1alpha2.CustomMetric, err error)
// CustomMetrics returns an object that can list and get CustomMetrics.
CustomMetrics(namespace string) CustomMetricNamespaceLister
CustomMetricListerExpansion
}
CustomMetricLister helps list CustomMetrics.
func NewCustomMetricLister ¶
func NewCustomMetricLister(indexer cache.Indexer) CustomMetricLister
NewCustomMetricLister returns a new CustomMetricLister.
type CustomMetricListerExpansion ¶
type CustomMetricListerExpansion interface{}
CustomMetricListerExpansion allows custom methods to be added to CustomMetricLister.
type CustomMetricNamespaceLister ¶
type CustomMetricNamespaceLister interface {
// List lists all CustomMetrics in the indexer for a given namespace.
List(selector labels.Selector) (ret []*v1alpha2.CustomMetric, err error)
// Get retrieves the CustomMetric from the indexer for a given namespace and name.
Get(name string) (*v1alpha2.CustomMetric, error)
CustomMetricNamespaceListerExpansion
}
CustomMetricNamespaceLister helps list and get CustomMetrics.
type CustomMetricNamespaceListerExpansion ¶
type CustomMetricNamespaceListerExpansion interface{}
CustomMetricNamespaceListerExpansion allows custom methods to be added to CustomMetricNamespaceLister.
type ExternalMetricLister ¶
type ExternalMetricLister interface {
// List lists all ExternalMetrics in the indexer.
List(selector labels.Selector) (ret []*v1alpha2.ExternalMetric, err error)
// ExternalMetrics returns an object that can list and get ExternalMetrics.
ExternalMetrics(namespace string) ExternalMetricNamespaceLister
ExternalMetricListerExpansion
}
ExternalMetricLister helps list ExternalMetrics.
func NewExternalMetricLister ¶
func NewExternalMetricLister(indexer cache.Indexer) ExternalMetricLister
NewExternalMetricLister returns a new ExternalMetricLister.
type ExternalMetricListerExpansion ¶
type ExternalMetricListerExpansion interface{}
ExternalMetricListerExpansion allows custom methods to be added to ExternalMetricLister.
type ExternalMetricNamespaceLister ¶
type ExternalMetricNamespaceLister interface {
// List lists all ExternalMetrics in the indexer for a given namespace.
List(selector labels.Selector) (ret []*v1alpha2.ExternalMetric, err error)
// Get retrieves the ExternalMetric from the indexer for a given namespace and name.
Get(name string) (*v1alpha2.ExternalMetric, error)
ExternalMetricNamespaceListerExpansion
}
ExternalMetricNamespaceLister helps list and get ExternalMetrics.
type ExternalMetricNamespaceListerExpansion ¶
type ExternalMetricNamespaceListerExpansion interface{}
ExternalMetricNamespaceListerExpansion allows custom methods to be added to ExternalMetricNamespaceLister.