Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EndpointLister ¶
type EndpointLister interface { // List lists all Endpoints in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Endpoint, err error) // Endpoints returns an object that can list and get Endpoints. Endpoints(namespace string) EndpointNamespaceLister EndpointListerExpansion }
EndpointLister helps list Endpoints. All objects returned here must be treated as read-only.
func NewEndpointLister ¶
func NewEndpointLister(indexer cache.Indexer) EndpointLister
NewEndpointLister returns a new EndpointLister.
type EndpointListerExpansion ¶
type EndpointListerExpansion interface{}
EndpointListerExpansion allows custom methods to be added to EndpointLister.
type EndpointNamespaceLister ¶
type EndpointNamespaceLister interface { // List lists all Endpoints in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Endpoint, err error) // Get retrieves the Endpoint from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Endpoint, error) EndpointNamespaceListerExpansion }
EndpointNamespaceLister helps list and get Endpoints. All objects returned here must be treated as read-only.
type EndpointNamespaceListerExpansion ¶
type EndpointNamespaceListerExpansion interface{}
EndpointNamespaceListerExpansion allows custom methods to be added to EndpointNamespaceLister.
type EndpointSubscriptionLister ¶
type EndpointSubscriptionLister interface { // List lists all EndpointSubscriptions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EndpointSubscription, err error) // EndpointSubscriptions returns an object that can list and get EndpointSubscriptions. EndpointSubscriptions(namespace string) EndpointSubscriptionNamespaceLister EndpointSubscriptionListerExpansion }
EndpointSubscriptionLister helps list EndpointSubscriptions. All objects returned here must be treated as read-only.
func NewEndpointSubscriptionLister ¶
func NewEndpointSubscriptionLister(indexer cache.Indexer) EndpointSubscriptionLister
NewEndpointSubscriptionLister returns a new EndpointSubscriptionLister.
type EndpointSubscriptionListerExpansion ¶
type EndpointSubscriptionListerExpansion interface{}
EndpointSubscriptionListerExpansion allows custom methods to be added to EndpointSubscriptionLister.
type EndpointSubscriptionNamespaceLister ¶
type EndpointSubscriptionNamespaceLister interface { // List lists all EndpointSubscriptions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EndpointSubscription, err error) // Get retrieves the EndpointSubscription from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.EndpointSubscription, error) EndpointSubscriptionNamespaceListerExpansion }
EndpointSubscriptionNamespaceLister helps list and get EndpointSubscriptions. All objects returned here must be treated as read-only.
type EndpointSubscriptionNamespaceListerExpansion ¶
type EndpointSubscriptionNamespaceListerExpansion interface{}
EndpointSubscriptionNamespaceListerExpansion allows custom methods to be added to EndpointSubscriptionNamespaceLister.