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