Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigMapLister ¶
type ConfigMapLister interface { // List lists all ConfigMaps in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*monitor.ConfigMap, err error) // Get retrieves the ConfigMap from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*monitor.ConfigMap, error) ConfigMapListerExpansion }
ConfigMapLister helps list ConfigMaps. All objects returned here must be treated as read-only.
func NewConfigMapLister ¶
func NewConfigMapLister(indexer cache.Indexer) ConfigMapLister
NewConfigMapLister returns a new ConfigMapLister.
type ConfigMapListerExpansion ¶
type ConfigMapListerExpansion interface{}
ConfigMapListerExpansion allows custom methods to be added to ConfigMapLister.
type PrometheusLister ¶ added in v1.3.1
type PrometheusLister interface { // List lists all Prometheuses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*monitor.Prometheus, err error) // Get retrieves the Prometheus from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*monitor.Prometheus, error) PrometheusListerExpansion }
PrometheusLister helps list Prometheuses. All objects returned here must be treated as read-only.
func NewPrometheusLister ¶ added in v1.3.1
func NewPrometheusLister(indexer cache.Indexer) PrometheusLister
NewPrometheusLister returns a new PrometheusLister.
type PrometheusListerExpansion ¶ added in v1.3.1
type PrometheusListerExpansion interface{}
PrometheusListerExpansion allows custom methods to be added to PrometheusLister.
Click to show internal directories.
Click to hide internal directories.