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 ProfileLister ¶
type ProfileLister interface { // List lists all Profiles in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Profile, err error) // Profiles returns an object that can list and get Profiles. Profiles(namespace string) ProfileNamespaceLister ProfileListerExpansion }
ProfileLister helps list Profiles. All objects returned here must be treated as read-only.
func NewProfileLister ¶
func NewProfileLister(indexer cache.Indexer) ProfileLister
NewProfileLister returns a new ProfileLister.
type ProfileListerExpansion ¶
type ProfileListerExpansion interface{}
ProfileListerExpansion allows custom methods to be added to ProfileLister.
type ProfileNamespaceLister ¶
type ProfileNamespaceLister interface { // List lists all Profiles in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Profile, err error) // Get retrieves the Profile from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Profile, error) ProfileNamespaceListerExpansion }
ProfileNamespaceLister helps list and get Profiles. All objects returned here must be treated as read-only.
type ProfileNamespaceListerExpansion ¶
type ProfileNamespaceListerExpansion interface{}
ProfileNamespaceListerExpansion allows custom methods to be added to ProfileNamespaceLister.