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