...

Package v2beta2

import "k8s.io/client-go/listers/autoscaling/v2beta2"
Overview
Index

Overview ▾

type HorizontalPodAutoscalerLister

HorizontalPodAutoscalerLister helps list HorizontalPodAutoscalers. All objects returned here must be treated as read-only.

type HorizontalPodAutoscalerLister interface {
    // List lists all HorizontalPodAutoscalers in the indexer.
    // Objects returned here must be treated as read-only.
    List(selector labels.Selector) (ret []*v2beta2.HorizontalPodAutoscaler, err error)
    // HorizontalPodAutoscalers returns an object that can list and get HorizontalPodAutoscalers.
    HorizontalPodAutoscalers(namespace string) HorizontalPodAutoscalerNamespaceLister
    HorizontalPodAutoscalerListerExpansion
}

func NewHorizontalPodAutoscalerLister

func NewHorizontalPodAutoscalerLister(indexer cache.Indexer) HorizontalPodAutoscalerLister

NewHorizontalPodAutoscalerLister returns a new HorizontalPodAutoscalerLister.

type HorizontalPodAutoscalerListerExpansion

HorizontalPodAutoscalerListerExpansion allows custom methods to be added to HorizontalPodAutoscalerLister.

type HorizontalPodAutoscalerListerExpansion interface{}

type HorizontalPodAutoscalerNamespaceLister

HorizontalPodAutoscalerNamespaceLister helps list and get HorizontalPodAutoscalers. All objects returned here must be treated as read-only.

type HorizontalPodAutoscalerNamespaceLister interface {
    // List lists all HorizontalPodAutoscalers in the indexer for a given namespace.
    // Objects returned here must be treated as read-only.
    List(selector labels.Selector) (ret []*v2beta2.HorizontalPodAutoscaler, err error)
    // Get retrieves the HorizontalPodAutoscaler from the indexer for a given namespace and name.
    // Objects returned here must be treated as read-only.
    Get(name string) (*v2beta2.HorizontalPodAutoscaler, error)
    HorizontalPodAutoscalerNamespaceListerExpansion
}

type HorizontalPodAutoscalerNamespaceListerExpansion

HorizontalPodAutoscalerNamespaceListerExpansion allows custom methods to be added to HorizontalPodAutoscalerNamespaceLister.

type HorizontalPodAutoscalerNamespaceListerExpansion interface{}