Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BalancerLister ¶
type BalancerLister interface { // List lists all Balancers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Balancer, err error) // Balancers returns an object that can list and get Balancers. Balancers(namespace string) BalancerNamespaceLister BalancerListerExpansion }
BalancerLister helps list Balancers. All objects returned here must be treated as read-only.
func NewBalancerLister ¶
func NewBalancerLister(indexer cache.Indexer) BalancerLister
NewBalancerLister returns a new BalancerLister.
type BalancerListerExpansion ¶
type BalancerListerExpansion interface{}
BalancerListerExpansion allows custom methods to be added to BalancerLister.
type BalancerNamespaceLister ¶
type BalancerNamespaceLister interface { // List lists all Balancers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Balancer, err error) // Get retrieves the Balancer from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Balancer, error) BalancerNamespaceListerExpansion }
BalancerNamespaceLister helps list and get Balancers. All objects returned here must be treated as read-only.
type BalancerNamespaceListerExpansion ¶
type BalancerNamespaceListerExpansion interface{}
BalancerNamespaceListerExpansion allows custom methods to be added to BalancerNamespaceLister.
Click to show internal directories.
Click to hide internal directories.